[Libreoffice-bugs] [Bug 83301] Allow more than 3 conditional format codes

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

--- Comment #8 from Mike Kaganski  ---
(In reply to Eike Rathke from comment #7)

I perfectly understand the reasoning here. Still, I agree with comment 6; and I
feel that limiting ourselves for compatibility reasons is too ... limiting.
Except for the compatibility, there seems to exist nothing limiting the
possible number of subformats with conditions, so having arbitrary number of
conditional subformats, plus one subformat without condition (for all other
numerical values), plus one for text, seems like unambiguous superset of
existing syntax; and for export to foreign formats like XLS(X), it looks
reasonable to just drop the excessive subformats, so that only two first
conditional subformats plus unconditional plus textual are kept. In the end, we
don't limit ourselves to 256 columns just to keep compatibility with XLS?

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

[Libreoffice-bugs] [Bug 125288] wrong Bar color name in the Data bar dialog (#0000FF instead of Blue)

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

--- Comment #3 from V Stuart Foote  ---
(In reply to V Stuart Foote from comment #2)

And, the actual hard coded color set for maPositiveColor [1] is the color
constant COL_LIGHTBLUE -- ( 0x00, 0x00, 0xFF ) [2] 

Option #1 -- Could define a different constant to pick up the blue from
standard.soc

Option #2 -- shift UI use of conditional formatting from standard.soc to
tonal.soc, i.e. perform a palette change and pick up labeling from tonal.soc

Option #3 -- Could edit the COL_LIGHTBLUE to match the standard.soc (broader
potential impact across UI and in unit tests).

IMHO Option #2 seems a better way to correct this--not clear how many unit
tests would have to also be tweaked with Option #1, and Option #3 would be kind
of invasive.

=ref-=

[1]
https://opengrok.libreoffice.org/xref/core/sc/source/ui/condformat/condformatdlgentry.cxx?r=00ae441b#1107
[2]
https://opengrok.libreoffice.org/xref/core/include/tools/color.hxx?r=d14d1341#282

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

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

2019-05-14 Thread Mike Kaganski (via logerrit)
 shell/source/win32/spsupp/COMOpenDocuments.cxx |   13 ++---
 1 file changed, 10 insertions(+), 3 deletions(-)

New commits:
commit 51fb20cda19dfd0f26228d10ba1296ceca4e3601
Author: Mike Kaganski 
AuthorDate: Tue May 14 19:15:59 2019 +0200
Commit: Mike Kaganski 
CommitDate: Wed May 15 07:49:40 2019 +0200

Use proper VARIANT_BOOL values: VARIANT_TRUE is actually -1

Who was that idiot who initially used wrong values??? Hmm... oh damn,
that was me :-(

Change-Id: I3bfde7511bcf8adfa38ae68372f21511f21efca1
Reviewed-on: https://gerrit.libreoffice.org/72308
Reviewed-by: Mike Kaganski 
Tested-by: Mike Kaganski 
(cherry picked from commit 31cc28ca7c02f28b64e9d757c9fc17e2a81ba352)
Reviewed-on: https://gerrit.libreoffice.org/72332

diff --git a/shell/source/win32/spsupp/COMOpenDocuments.cxx 
b/shell/source/win32/spsupp/COMOpenDocuments.cxx
index e731ceccaadc..93f6a17aaa8b 100644
--- a/shell/source/win32/spsupp/COMOpenDocuments.cxx
+++ b/shell/source/win32/spsupp/COMOpenDocuments.cxx
@@ -16,6 +16,9 @@
 #include 
 #include 
 
+namespace
+{
+
 // Display confirmation dialog, return false on negative answer
 bool SecurityWarning(const wchar_t* sProgram, const wchar_t* sDocument)
 {
@@ -76,6 +79,10 @@ HRESULT LOStart(const wchar_t* sModeArg, const wchar_t* 
sFilePath, bool bDoSecur
 return S_OK;
 }
 
+VARIANT_BOOL toVBool(bool b) { return b ? VARIANT_TRUE : VARIANT_FALSE; }
+
+} // namespace
+
 // IObjectSafety methods
 
 void COMOpenDocuments::COMObjectSafety::SetMaskedOptions(DWORD iMask, DWORD 
iOptions)
@@ -309,7 +316,7 @@ STDMETHODIMP COMOpenDocuments::CreateNewDocument2(
 {
 // TODO: resolve the program from varProgID (nullptr -> default?)
 HRESULT hr = LOStart(L"-n", bstrTemplateLocation, 
m_aObjectSafety.GetSafe_forUntrustedCaller() || 
m_aObjectSafety.GetSafe_forUntrustedData());
-*pbResult = VARIANT_BOOL(SUCCEEDED(hr));
+*pbResult = toVBool(SUCCEEDED(hr));
 return hr;
 }
 
@@ -360,7 +367,7 @@ STDMETHODIMP COMOpenDocuments::ViewDocument3(
 {
 // TODO: resolve the program from varProgID (nullptr -> default?)
 HRESULT hr = LOStart(L"--view", bstrDocumentLocation, 
m_aObjectSafety.GetSafe_forUntrustedCaller() || 
m_aObjectSafety.GetSafe_forUntrustedData());
-*pbResult = VARIANT_BOOL(SUCCEEDED(hr));
+*pbResult = toVBool(SUCCEEDED(hr));
 return hr;
 }
 
@@ -422,7 +429,7 @@ STDMETHODIMP COMOpenDocuments::EditDocument3(
 {
 // TODO: resolve the program from varProgID (nullptr -> default?)
 HRESULT hr = LOStart(L"-o", bstrDocumentLocation, 
m_aObjectSafety.GetSafe_forUntrustedCaller() || 
m_aObjectSafety.GetSafe_forUntrustedData());
-*pbResult = VARIANT_BOOL(SUCCEEDED(hr));
+*pbResult = toVBool(SUCCEEDED(hr));
 return hr;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 90297] LibreOffice Math dark theme > dark text and background

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

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Keywords||accessibility

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

[Libreoffice-bugs] [Bug 39750] [META] General Math formula editor improvements

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

Bug 90297 Summary: LibreOffice Math dark theme > dark text and background
https://bugs.documentfoundation.org/show_bug.cgi?id=90297

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103184] [META] UI theming bugs and enhancements

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

Bug 90297 Summary: LibreOffice Math dark theme > dark text and background
https://bugs.documentfoundation.org/show_bug.cgi?id=90297

   What|Removed |Added

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

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

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

2019-05-14 Thread Libreoffice Gerrit user
 loleaflet/src/map/Map.js |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 50e5690d3044d5474ff0d96e69f0fae32a816c03
Author: Samuel Mehrbrodt 
AuthorDate: Tue May 14 08:40:08 2019 +0200
Commit: Samuel Mehrbrodt 
CommitDate: Wed May 15 07:25:39 2019 +0200

Simplify code

Change-Id: Ifc3a04c38b6449ef289f8092e8be6cee3b5865c3
Reviewed-on: https://gerrit.libreoffice.org/72275
Reviewed-by: Samuel Mehrbrodt 
Tested-by: Samuel Mehrbrodt 

diff --git a/loleaflet/src/map/Map.js b/loleaflet/src/map/Map.js
index 34aa358e2..d9476a857 100644
--- a/loleaflet/src/map/Map.js
+++ b/loleaflet/src/map/Map.js
@@ -1460,9 +1460,9 @@ L.Map = L.Evented.extend({
showMenubar: function() {
if (!this.isMenubarHidden())
return;
-   $('.main-nav').css({'display': ''});
+   $('.main-nav').show();
if (closebutton && !window.mode.isTablet()) {
-   $('#closebuttonwrapper').css({'display': ''});
+   $('#closebuttonwrapper').show();
}
 
var obj = $('.unfold');
@@ -1477,9 +1477,9 @@ L.Map = L.Evented.extend({
hideMenubar: function() {
if (this.isMenubarHidden())
return;
-   $('.main-nav').css({'display': 'none'});
+   $('.main-nav').hide();
if (closebutton) {
-   $('#closebuttonwrapper').css({'display': 'none'});
+   $('#closebuttonwrapper').hide();
}
 
var obj = $('.fold');
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125178] [NEWHELP] enlarge SVG icons in help pages

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

--- Comment #2 from Adolfo Jayme  ---
I’d accept a 25% increase, but please no silly hover effects which undermine
usability for mobility-impaired users.

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

[Libreoffice-bugs] [Bug 125288] wrong Bar color name in the Data bar dialog (#0000FF instead of Blue)

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

V Stuart Foote  changed:

   What|Removed |Added

  Component|UI  |Calc
 CC||er...@redhat.com,
   ||vstuart.fo...@utsa.edu
Summary|wrong color name in Data|wrong Bar color name in the
   |bar dialog (#FF instead |Data bar dialog (#FF
   |Blue)   |instead of Blue)
   Keywords|regression  |
Version|6.2.3.2 release |6.1.0.0.alpha0+

--- Comment #2 from V Stuart Foote  ---
Hmm, not really a regression. From the 6.1.0 release the color value for our
RYB scheme named Blue is #2a6099; color value assigned from the standard .SOC
(based on the Gossett & Chen ryb2rgb algorithm interpolating RGB vector values
corresponding to a RYB inscribed in a tensor--see bug 114719).

The hard coded #FF color used for the Data Bar colors is the fully
saturated RGB scheme Blue.

The Bar Colors for conditional formatting dialog/configs did not get adjusted
to the RYB based standard.soc at 6.1 release, names of which are now localized.

Red behaves, because it uses the #FF color assignment and its name is
picked up from the standard.soc -- the Blue does not as its #FF does not
match the RYB interpolated Hue for Blue of #2a6099--so it gets no name but its
hex value.

Probably could point the source used for the Data Bar colors [1] to Standard
SOC, but that is likely to also impact the QA unit tests that would need
tweaks.

An, alternative, might be for conditional formatting Data Bars to use the RGB
centric tonal.soc which assigns the fully saturated RGB.

Otherwise an easy workaround is for user to just use the "tonal" palette (see
bug 80196), color values there are meaningful--and visually consistent to
handling of conditional formatting.


=-ref-=
[1]
https://opengrok.libreoffice.org/xref/core/sc/source/ui/condformat/colorformat.cxx?r=e5c3d5f3#77

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

2019-05-14 Thread Andrea Gelmini (via logerrit)
 dbaccess/source/ui/browser/sbagrid.cxx |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 6611f45ac57d8be90a3cdfa1c37bbcb97be49dd5
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:32:10 2019 +
Commit: Julien Nabet 
CommitDate: Wed May 15 07:06:26 2019 +0200

Fix typo

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

diff --git a/dbaccess/source/ui/browser/sbagrid.cxx 
b/dbaccess/source/ui/browser/sbagrid.cxx
index ae5478f0b3bc..c41a4e395c67 100644
--- a/dbaccess/source/ui/browser/sbagrid.cxx
+++ b/dbaccess/source/ui/browser/sbagrid.cxx
@@ -841,7 +841,7 @@ void SbaGridControl::SetRowHeight()
 }
 catch(Exception&)
 {
-OSL_FAIL("setPropertyValue: PROPERTY_ROW_HEIGHT throws a 
exception");
+OSL_FAIL("setPropertyValue: PROPERTY_ROW_HEIGHT throws an 
exception");
 }
 }
 }
@@ -1045,7 +1045,7 @@ void SbaGridControl::StartDrag( sal_Int8 _nAction, const 
Point& _rPosPixel )
 
 long nCorrectRowCount = GetRowCount();
 if (GetOptions() & DbGridControlOptions::Insert)
---nCorrectRowCount; // there is a empty row for inserting records
+--nCorrectRowCount; // there is an empty row for inserting records
 if (bCurrentRowVirtual)
 --nCorrectRowCount;
 
@@ -1253,7 +1253,7 @@ sal_Int8 SbaGridControl::AcceptDrop( const 
BrowserAcceptDropEvent& rEvt )
 
 long nCorrectRowCount = GetRowCount();
 if (GetOptions() & DbGridControlOptions::Insert)
---nCorrectRowCount; // there is a empty row for inserting records
+--nCorrectRowCount; // there is an empty row for inserting records
 if (IsCurrentAppending())
 --nCorrectRowCount; // the current data record doesn't really 
exist, we are appending a new one
 
@@ -1273,7 +1273,7 @@ sal_Int8 SbaGridControl::AcceptDrop( const 
BrowserAcceptDropEvent& rEvt )
 CellControllerRef xCurrentController = Controller();
 if (xCurrentController.is() && xCurrentController->IsModified() && 
((nRow != GetCurRow()) || (nCol != GetCurColumnId(
 // the current controller is modified and the user wants to drop 
in another cell -> no chance
-// (when leaving the modified cell a error may occur - this is 
deadly while dragging)
+// (when leaving the modified cell an error may occur - this is 
deadly while dragging)
 break;
 
 Reference< XPropertySet >  xField = getField(GetModelColumnPos(nCol));
@@ -1346,7 +1346,7 @@ sal_Int8 SbaGridControl::ExecuteDrop( const 
BrowserExecuteDropEvent& rEvt )
 
 long nCorrectRowCount = GetRowCount();
 if (GetOptions() & DbGridControlOptions::Insert)
---nCorrectRowCount; // there is a empty row for inserting records
+--nCorrectRowCount; // there is an empty row for inserting records
 if (IsCurrentAppending())
 --nCorrectRowCount; // the current data record doesn't really 
exist, we are appending a new one
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: 2 commits - basic/source drawinglayer/source

2019-05-14 Thread Andrea Gelmini (via logerrit)
 basic/source/comp/dim.cxx  |2 +-
 drawinglayer/source/attribute/fillgraphicattribute.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 051f0dca87745bef19adee20393b3b45991f60a2
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:26:03 2019 +
Commit: Julien Nabet 
CommitDate: Wed May 15 07:07:43 2019 +0200

Fix typo

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

diff --git a/drawinglayer/source/attribute/fillgraphicattribute.cxx 
b/drawinglayer/source/attribute/fillgraphicattribute.cxx
index 72da948fc96c..11e40a3fd50c 100644
--- a/drawinglayer/source/attribute/fillgraphicattribute.cxx
+++ b/drawinglayer/source/attribute/fillgraphicattribute.cxx
@@ -56,7 +56,7 @@ namespace drawinglayer
 {
 // access once to ensure that the buffered bitmap exists, else
 // the SolarMutex may be needed to create it. This may not be
-// available when a renderer works with multi-treading.
+// available when a renderer works with multi-threading.
 // When changing this, please check if it is still possible to
 // use a metafile as texture for a 3D object
 maGraphic.GetBitmapEx();
commit 9e6ca513aca0d681d663f29cfa3a476d5c757657
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:26:20 2019 +
Commit: Julien Nabet 
CommitDate: Wed May 15 07:07:07 2019 +0200

Fix typo

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

diff --git a/basic/source/comp/dim.cxx b/basic/source/comp/dim.cxx
index 477acdcbefd5..9e3124697794 100644
--- a/basic/source/comp/dim.cxx
+++ b/basic/source/comp/dim.cxx
@@ -684,7 +684,7 @@ void SbiParser::Enum()
 
 void SbiParser::DefEnum( bool bPrivate )
 {
-// Read a the new Token. It had to be a symbol
+// Read the new Token. It had to be a symbol
 if (!TestSymbol())
 return;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-05-14 Thread Andrea Gelmini (via logerrit)
 chart2/source/view/main/ShapeFactory.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f3213bf3f421c0081b894e83750dbd672ae64025
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:26:19 2019 +
Commit: Julien Nabet 
CommitDate: Wed May 15 07:05:54 2019 +0200

Fix typo

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

diff --git a/chart2/source/view/main/ShapeFactory.cxx 
b/chart2/source/view/main/ShapeFactory.cxx
index a297f3c14295..e54788dad0a9 100644
--- a/chart2/source/view/main/ShapeFactory.cxx
+++ b/chart2/source/view/main/ShapeFactory.cxx
@@ -1804,7 +1804,7 @@ uno::Reference< drawing::XShapes >
 
 //it is necessary to set the transform matrix to initialize the scene 
properly
 //otherwise all objects which are placed into this Group will not be 
visible
-//the following should be unnecessary after a the bug is fixed
+//the following should be unnecessary after the bug is fixed
 {
 //set properties
 uno::Reference< beans::XPropertySet > xProp( xShape, 
uno::UNO_QUERY );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125217] Replace Mozilla themes with a proprietary tool reusing the existing

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

Adolfo Jayme  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||fit...@ubuntu.com,
   ||tietze.he...@gmail.com

--- Comment #2 from Adolfo Jayme  ---
Lovely mockup ❤

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

[Libreoffice-bugs] [Bug 124018] Custom color picker doesn't work correctly

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

Aron Budea  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||ba...@caesar.elte.hu
 Blocks||123136
Summary|Can't select chart custom   |Custom color picker doesn't
   |color   |work correctly

--- Comment #5 from Aron Budea  ---
Confirmed in Collabora Online 4.

In master there are some problems when working with charts, but can be checked
with the following steps:
- Open Format -> Character.
- Select tab Font Effects.
- Open Font Color color picker.
- Choose Custom Color...

In master the (original) color picker remains, after hiding it the custom color
picker appears in its place. So, still not correct.

LOOLWSD master.. (git hash: 65540da9)
LOKit   LibreOfficeDev 6.3.0.0.alpha1 (git hash: 4cac171)


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 123136] [META] Tunneled dialog bugs and enhancements in LOOL

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||124018


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124018
[Bug 124018] Custom color picker doesn't work correctly
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Bug 120121 Summary: Forced LTR when using bullets and starting with ltr lang
https://bugs.documentfoundation.org/show_bug.cgi?id=120121

   What|Removed |Added

 Status|NEEDINFO|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 120121] Forced LTR when using bullets and starting with ltr lang

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

Shay G  changed:

   What|Removed |Added

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

--- Comment #5 from Shay G  ---
Seem to be working as it should on v6.1.6. You can close.

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

[Libreoffice-bugs] [Bug 114926] Allow OS specific tooltips

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

Adolfo Jayme  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 108400] [META] Toolbar tooltip bugs and enhancements

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

Bug 100476 Summary: Tooltips too small to house captions in Mac
https://bugs.documentfoundation.org/show_bug.cgi?id=100476

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 100476] Tooltips too small to house captions in Mac

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

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=11 |
   |4926|
 Resolution|--- |FIXED

--- Comment #19 from Adolfo Jayme  ---
This should no longer be reproducible on 6.3.x and 6.2.4+ with [1] applied.
Please test a daily build [2].

[1]:
https://git.libreoffice.org/core/+/43f8ea2195015b2b204f61798daf8b41bd7809b5%5E%21
[2]: https://dev-builds.libreoffice.org/daily/

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

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

2019-05-14 Thread Mike Kaganski (via logerrit)
 shell/source/win32/spsupp/COMOpenDocuments.cxx |   17 -
 1 file changed, 12 insertions(+), 5 deletions(-)

New commits:
commit 31cc28ca7c02f28b64e9d757c9fc17e2a81ba352
Author: Mike Kaganski 
AuthorDate: Tue May 14 19:15:59 2019 +0200
Commit: Mike Kaganski 
CommitDate: Wed May 15 05:32:15 2019 +0200

Use proper VARIANT_BOOL values: VARIANT_TRUE is actually -1

Who was that idiot who initially used wrong values??? Hmm... oh damn,
that was me :-(

Change-Id: I3bfde7511bcf8adfa38ae68372f21511f21efca1
Reviewed-on: https://gerrit.libreoffice.org/72308
Reviewed-by: Mike Kaganski 
Tested-by: Mike Kaganski 

diff --git a/shell/source/win32/spsupp/COMOpenDocuments.cxx 
b/shell/source/win32/spsupp/COMOpenDocuments.cxx
index 319cd8c1751a..4d00b8de6c46 100644
--- a/shell/source/win32/spsupp/COMOpenDocuments.cxx
+++ b/shell/source/win32/spsupp/COMOpenDocuments.cxx
@@ -16,8 +16,11 @@
 #include 
 #include 
 
+namespace
+{
+
 // Display confirmation dialog, return false on negative answer
-static bool SecurityWarning(const wchar_t* sProgram, const wchar_t* sDocument)
+bool SecurityWarning(const wchar_t* sProgram, const wchar_t* sDocument)
 {
 // TODO: change wording (currently taken from MS Office), use LO 
localization
 wchar_t sBuf[65536];
@@ -30,7 +33,7 @@ static bool SecurityWarning(const wchar_t* sProgram, const 
wchar_t* sDocument)
 }
 
 // Returns S_OK if successful
-static HRESULT LOStart(const wchar_t* sModeArg, const wchar_t* sFilePath, bool 
bDoSecurityWarning)
+HRESULT LOStart(const wchar_t* sModeArg, const wchar_t* sFilePath, bool 
bDoSecurityWarning)
 {
 const wchar_t* sProgram = GetLOPath();
 if (bDoSecurityWarning && !SecurityWarning(sProgram, sFilePath))
@@ -76,6 +79,10 @@ static HRESULT LOStart(const wchar_t* sModeArg, const 
wchar_t* sFilePath, bool b
 return S_OK;
 }
 
+VARIANT_BOOL toVBool(bool b) { return b ? VARIANT_TRUE : VARIANT_FALSE; }
+
+} // namespace
+
 // IObjectSafety methods
 
 void COMOpenDocuments::COMObjectSafety::SetMaskedOptions(DWORD iMask, DWORD 
iOptions)
@@ -309,7 +316,7 @@ STDMETHODIMP COMOpenDocuments::CreateNewDocument2(
 {
 // TODO: resolve the program from varProgID (nullptr -> default?)
 HRESULT hr = LOStart(L"-n", bstrTemplateLocation, 
m_aObjectSafety.GetSafe_forUntrustedCaller() || 
m_aObjectSafety.GetSafe_forUntrustedData());
-*pbResult = VARIANT_BOOL(SUCCEEDED(hr));
+*pbResult = toVBool(SUCCEEDED(hr));
 return hr;
 }
 
@@ -360,7 +367,7 @@ STDMETHODIMP COMOpenDocuments::ViewDocument3(
 {
 // TODO: resolve the program from varProgID (nullptr -> default?)
 HRESULT hr = LOStart(L"--view", bstrDocumentLocation, 
m_aObjectSafety.GetSafe_forUntrustedCaller() || 
m_aObjectSafety.GetSafe_forUntrustedData());
-*pbResult = VARIANT_BOOL(SUCCEEDED(hr));
+*pbResult = toVBool(SUCCEEDED(hr));
 return hr;
 }
 
@@ -422,7 +429,7 @@ STDMETHODIMP COMOpenDocuments::EditDocument3(
 {
 // TODO: resolve the program from varProgID (nullptr -> default?)
 HRESULT hr = LOStart(L"-o", bstrDocumentLocation, 
m_aObjectSafety.GetSafe_forUntrustedCaller() || 
m_aObjectSafety.GetSafe_forUntrustedData());
-*pbResult = VARIANT_BOOL(SUCCEEDED(hr));
+*pbResult = toVBool(SUCCEEDED(hr));
 return hr;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 122329] When inputting Chinese in CODE, it would show double words instead of one with each input

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

Aron Budea  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125247] can not input 2byte characters on iOS devices

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

Aron Budea  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 120121] Forced LTR when using bullets and starting with ltr lang

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

--- Comment #4 from QA Administrators  ---
Dear Shay G,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 89990] Start Center: Recent document thumbnails tooltip doesn't show file path when extended tooltips active

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

--- Comment #10 from QA Administrators  ---
Dear V Stuart Foote,

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 94087] predictive text input does not work from Android browser

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

Aron Budea  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125247] can not input 2byte characters on iOS devices

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

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ba...@caesar.elte.hu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=94
   ||087
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
Confirmed. This is probably close to predictive input not working on mobile
devices in general, see bug 94087.

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

[Libreoffice-bugs] [Bug 125053] UI: Calc used to store an image from copied selection

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard||QA:needsComment

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

[Libreoffice-bugs] [Bug 125049] Request more standard (and useful) way to select anchor point for object align

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard||QA:needsComment

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

[Libreoffice-bugs] [Bug 125023] Impress videos start with sound, but with out picture. Starting Presentation again with that foil runs correctly.

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard||QA:needsComment

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

[Libreoffice-bugs] [Bug 123740] OpenPGP no key

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

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 123944] EDITING: LO stops working for several minutes when editing Forms

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

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 124187] Font display issues with BlackForestSans font

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

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

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

[Libreoffice-bugs] [Bug 124851] Wrong toolbar colors on Windows classic theme

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|QA:needsComment |

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

[Libreoffice-bugs] [Bug 120461] Changing font size on a slide is really slow

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

--- Comment #7 from QA Administrators  ---
Dear Arnaud Versini,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 124187] Font display issues with BlackForestSans font

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

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 125047] LibreOffice interferes with IBM Notes 10: the default font is changed, and execution becomes unpredictable

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard||QA:needsComment

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

[Libreoffice-bugs] [Bug 125025] Change system locale affect text break in the chart

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard||QA:needsComment

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

[Libreoffice-bugs] [Bug 123944] EDITING: LO stops working for several minutes when editing Forms

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

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

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

[Libreoffice-bugs] [Bug 123740] OpenPGP no key

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

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

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

[Libreoffice-bugs] [Bug 119183] Japanese fonts have huge space above and selecting such text scrolls the page up.

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

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 115066] Too large font size with Japanese language pack

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

--- Comment #10 from QA Administrators  ---
Dear Hideki Yamane,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 107508] XY Chart auto scaling on X axis with only 1 data point generates excessive number of major units

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

--- Comment #8 from QA Administrators  ---
Dear branestawm,

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 117252] Inconsistent behaviour of HTML to PNG conversion between filters and versions

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

--- Comment #3 from QA Administrators  ---
Dear Jack O'Sullivan,

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 77970] FILEOPEN: I get a macro warning on a spreadsheet with no macros

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

--- Comment #9 from QA Administrators  ---
Dear Mats Sibelius,

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 108323] Admin: display up-time ...

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

Aron Budea  changed:

   What|Removed |Added

   Assignee|ahmedtot...@gmail.com   |libreoffice-b...@lists.free
   ||desktop.org
 CC||ba...@caesar.elte.hu
 Status|ASSIGNED|NEW

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

[Libreoffice-bugs] [Bug 104156] [postMessage] "Save" state changes

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

Aron Budea  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|ahmedtot...@gmail.com   |libreoffice-b...@lists.free
   ||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: Branch 'libreoffice-6-2' - sd/uiconfig

2019-05-14 Thread andreas kainz (via logerrit)
 sd/uiconfig/sdraw/ui/notebookbar.ui   |   32 +++---
 sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui|   40 +++
 sd/uiconfig/simpress/ui/notebookbar.ui|   32 +++---
 sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui |   40 +++
 sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui|   74 +++---
 5 files changed, 109 insertions(+), 109 deletions(-)

New commits:
commit 54a5e8cb12b580a433ec7e8221b44af08dc7d6ad
Author: andreas kainz 
AuthorDate: Tue May 14 16:35:30 2019 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Wed May 15 04:45:33 2019 +0200

tdf#125285 Use Forward Backward instead of ObjectForwardOne/BackOne

Change-Id: I91186550387e682e23b9cf3feb7a61d1a6973ece
Reviewed-on: https://gerrit.libreoffice.org/72296
Tested-by: Jenkins
Reviewed-by: andreas_kainz 
(cherry picked from commit ac9a59cb77c8ed7d5e2a0bc22787c56b90511271)
Reviewed-on: https://gerrit.libreoffice.org/72329
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/sd/uiconfig/sdraw/ui/notebookbar.ui 
b/sd/uiconfig/sdraw/ui/notebookbar.ui
index f3d9aff2aaf1..239f67cda3b3 100644
--- a/sd/uiconfig/sdraw/ui/notebookbar.ui
+++ b/sd/uiconfig/sdraw/ui/notebookbar.ui
@@ -10466,10 +10466,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectForwardOne
+.uno:Forward
   
   
 False
@@ -10489,10 +10489,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectBackOne
+.uno:Backward
   
   
 False
@@ -11539,10 +11539,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectForwardOne
+.uno:Forward
   
   
 False
@@ -11562,10 +11562,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectBackOne
+.uno:Backward
   
   
 False
@@ -12835,10 +12835,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectForwardOne
+.uno:Forward
   
   
 False
@@ -12858,10 +12858,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectBackOne
+.uno:Backward
   
   
 False
@@ -13464,10 +13464,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectForwardOne
+.uno:Forward
   
   
 False
@@ -13487,10 +13487,10 @@

[Libreoffice-bugs] [Bug 125285] NB sd modules wrong usage of ObjectForwardOne, ObjectBackOne

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.3.0|target:6.3.0 target:6.2.5

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

[Libreoffice-bugs] [Bug 124619] Mobile Autocompletion does not work properly

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

Aron Budea  changed:

   What|Removed |Added

 Whiteboard|QA:needsComment |

--- Comment #1 from Aron Budea  ---
Is this what is called predictive input? In that case this would be a dupe of
bug 94087, but my experience is that nothing is entered (tested with Gboard and
Samsung Keyboard).

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

[Libreoffice-bugs] [Bug 125285] NB sd modules wrong usage of ObjectForwardOne, ObjectBackOne

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

--- Comment #4 from Commit Notification 
 ---
andreas kainz committed a patch related to this issue.
It has been pushed to "libreoffice-6-2":

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

tdf#125285 Use Forward Backward instead of ObjectForwardOne/BackOne

It will be available in 6.2.5.

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

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

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

[Libreoffice-bugs] [Bug 125291] EDITING: Chart is blank when chart has empty data set

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

Aron Budea  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

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

[Libreoffice-bugs] [Bug 70633] Writer EDITING: Unable to use AltGr to produce supplementary plane chars

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

--- Comment #18 from nrs  ---
Thank you for your quick response!  I can also get the desired char via the
Special Char dialog, but pls. kindly reread comment #1: This issue is about
*typing*, not about pointing & clicking.  And the various control experiments
with other apps, including Calc, clearly confirm that the keyboards are
working.

The only conclusion possible is that:
- either something in the Writer 6.x code base broke the fix that was in place
in 5.4, or
- the fix available in 5.4 is not incorporated into Writer 6.x at all.

Pls. kindly double-check.  Thanks!

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

[Libreoffice-bugs] [Bug 125292] New: error message appears

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

Bug ID: 125292
   Summary: error message appears
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: katmel...@googlemail.com

Description:
for the second time, out off nowhere I get an errormessage. can't note any
error or loose of functions or reason. 

Steps to Reproduce:
1.don't know
2.
3.

Actual Results:
Message: An error has occured in languageTool 4.5.1 (2019-03-28 10:47):
java.lang.IndexOutBoundsException: Index: 2399, Size: 2399
Stacktrace:
java.lang.IndexOutBoundsException: Index: 2399, Size: 2399
at java.util.ArrayList.rangeCheck(Unknown Source)
at java.util.ArrayList.get(Unknown Source)
at
org.languagetool.openoffice.singleDocument.getParaPos(SingeDocument.java:380)
at
org.languagetool.openoffice.singleDocument.getCheckresults(SingleDucument.java:123)
at
org.languagetool.openoffice.MultiDocumentHandler.getCheckresults(MultiDucumentHandler.java:129)
at org.languagetool.openoffice.main.doProofreading(Main.java:150)
OS:Windows 7 an amd64, java version 1.8.0_211 from Oracle Corporation

Expected Results:
not show messages like this. don't know what's all about.


Reproducible: Sometimes


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: de
Module: TextDocument
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: yes

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

[Libreoffice-bugs] [Bug 125290] Character spacing problem at projection.

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||7405
 Blocks||71732

--- Comment #1 from V Stuart Foote  ---
See the clipping (actually believe it is the stamp size) not sure that is issue
of "transparency" just the box assigned to the glyph when stamped.


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 107405] Setting fixed kerning (text spacing) is limited to -2pt

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

V Stuart Foote  changed:

   What|Removed |Added

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

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

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

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

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||125290


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125290
[Bug 125290] Character spacing problem at projection.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 70633] Writer EDITING: Unable to use AltGr to produce supplementary plane chars

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

--- Comment #17 from V Stuart Foote  ---
Created attachment 151415
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151415=edit
picking SMP glyphs via Special Character dialog

(In reply to nrs from comment #16)
On Windows 10 Ent 64-bit en-US (1807) with
Version: 6.2.4.1 (x64)
Build ID: 170a9c04e0ad25cd937fc7a913bb06bf8c75c11d
CPU threads: 8; OS: Windows 10.0; UI render: GL; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: CL

Can not confirm mishandling of SMP Unicode glyphs. The IME may be wrong, but
handling to document canvas with Special Character dialog, or +X toggle
correctly assigns the SMP Unicode glyphs.

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

[GSOC 2019] Community Bonding (Sumit Chauhan)

2019-05-14 Thread Sumit Chauhan
Hello,
I am Sumit Chauhan. I am working on the project "Improvement to
Notebookbar".The project aims to develop customization and extension
support for Notebookbar.
I am very thankful to the community and my mentors ( Andreas Kainz, Szymon
Klos, and Jan Holešovský ) for giving me the chance to contribute to
LibreOffice and accepting me as a mentee for GSOC.

Regards
Sumit Chauhan
IRC nick: sumitcn
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

Improvement to Notebookbar - Weekly report [7 May - 12 May]

2019-05-14 Thread Sumit Chauhan
Weekly report :
1. I have solved the issue tdf# 116629
, i.e adding
chevron image to Notebookbar hide button.
2. I have tried to understand  Notebookbar configurations rendering and XML
parser stuff
Next Step :
My next step will be to add code for loading notebookar*.ui files from user
directory.

Thanks
Sumit Chauhan
IRC nick : sumitcn
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-bugs] [Bug 70633] Writer EDITING: Unable to use AltGr to produce supplementary plane chars

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

nrs  changed:

   What|Removed |Added

   Keywords||regression

--- Comment #16 from nrs  ---
This issue was confirmed to be resolved in the following build & OS:
- Version 5.4.4.2 (x64) on 64-bit English Windows 7 Ultimate SP1

*HOWEVER*, it is still attested in the following NEWER builds & OS:
- Version 6.0.5.2 (x64) on 64-bit English Windows 7 Ultimate SP1
- Version 6.1.4.2 (x64) on 64-bit English Windows 10 Pro
- Version 6.2.3.2 (x64) on 64-bit English Windows 10 Pro

A minor difference is instead of squares, black diamonds with a white question
mark inside are produced.  On pressing Alt-X, the same surrogate values show up
as before.

This indicates other fixes in the code base for 6.x has broken the fix for this
issue in 5.4 => regression!

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

[Libreoffice-bugs] [Bug 124705] Crash when closing overlay video

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

Xisco Faulí  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125271] Inserting this .mp4 file in impress leads to a CRASH

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

Xisco Faulí  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||4705
 CC||todven...@suomi24.fi

--- Comment #6 from Xisco Faulí  ---
(In reply to Julien Nabet from comment #5)
> Created attachment 151412 [details]
> bt with debug symbols (kde5+wayland)
> 
> On pc Debian x86-64 with master updated today, here are some other results:
> 
> - gtk3: still crash only when trying to play the file
> - gtk: no crash
> - gen: no crash
> - kde5 only : no crash but blank video when playing
> - kde5 + wayland : crash (corresponds to this bt)

Hi Julien,
I'm wondering if your crash in master is related to bug 124705...
@Buovjaga, do you reproduce this crash? I can't here...

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

[Libreoffice-bugs] [Bug 125291] EDITING: Chart is blank when chart has empty data set

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

Xisco Faulí  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 81134] EDITING: Chart size not retained when chart has empty data set

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

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #17 from Xisco Faulí  ---
Reported in bug 125291

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

[Libreoffice-bugs] [Bug 125291] EDITING: Chart is blank when chart has empty data set

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

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, regression
   Severity|normal  |trivial
 CC||markus.mohrhard@googlemail.
   ||com,
   ||xiscofa...@libreoffice.org
   Priority|medium  |lowest

--- Comment #1 from Xisco Faulí  ---
Regression introduced in range
https://cgit.freedesktop.org/libreoffice/core/log/?qt=range=40e4b1a8ba993a68f820ceedec126e2365052240..f09352fa6db57b9c88c334053f5843f1a73fb448

Adding Cc: to Markus Mohrhard

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

[Libreoffice-bugs] [Bug 125291] New: EDITING: Chart is blank when chart has empty data set

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

Bug ID: 125291
   Summary: EDITING: Chart is blank when chart has empty data set
   Product: LibreOffice
   Version: 4.2 all versions
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Created attachment 151414
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151414=edit
how it looks in LibreOffice 3.3

Steps to reproduce it:

1. Create a blank spreadsheet
2. Click on the Chart icon
3. Click Finish
4. Click outside the chart to deselect it)

Expected behaviour: See the screenshot to check how it looked in the past (
libreOffice 3.3

Reproduced in

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

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

[Libreoffice-bugs] [Bug 125144] touchpad mouse issue

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

--- Comment #4 from Liz  ---
Seems the Touchpad is having issues.
Looks to be a common issue with Dell Laptops.

Could be the Logitech Driver - setpoint.
In the past Logitech did not get along well with Touchpads.

Then there's the fact I use a left-handed mouse.

I keep trying things and...

Best solution so far is to plug in the Logitech Device when using Libre Office.

Got to love computers - NOT!

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

[Libreoffice-bugs] [Bug 88922] Resizing a chart legend makes the chart's body rezise on top of it

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

--- Comment #13 from Xisco Faulí  ---
Still reproducible in

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

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

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

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

Bug 81134 Summary: EDITING: Chart size not retained when chart has empty data 
set
https://bugs.documentfoundation.org/show_bug.cgi?id=81134

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 81134] EDITING: Chart size not retained when chart has empty data set

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

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #16 from Xisco Faulí  ---
(In reply to Aron Budea from comment #15)
> The size is fixed, but it's still an empty rectangle.
> 
> Version: 6.3.0.0.alpha1+
> Build ID: 4cac171dd6c82f55624ba6e7185d69bcb5507cb1
> CPU threads: 16; OS: Linux 4.15; UI render: default; VCL: gtk3; 
> Locale: en-US (en_US.UTF-8); UI-Language: en-US
> Calc: threaded

That's another problem.
In

Version 4.1.0.0.alpha0+ (Build ID: efca6f15609322f62a35619619a6d5fe5c9bd5a)

I can reproduce this bug but not the one you're mentioning... I'll report it in
a different ticket

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

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

2019-05-14 Thread Ilhan Yesil (via logerrit)
 sc/inc/document.hxx   |2 +-
 sc/inc/drwlayer.hxx   |2 +-
 sc/source/core/data/documen9.cxx  |4 ++--
 sc/source/core/data/drwlayer.cxx  |   19 ++-
 sc/source/ui/docshell/docfunc.cxx |   17 +
 sc/source/ui/view/viewfunc.cxx|   11 +--
 6 files changed, 44 insertions(+), 11 deletions(-)

New commits:
commit d2fa9c0d657877c967e41fdd0091f81d1b7ca048
Author: Ilhan Yesil 
AuthorDate: Mon Mar 18 15:29:11 2019 +0100
Commit: Eike Rathke 
CommitDate: Wed May 15 00:07:11 2019 +0200

tdf#123762 Cell anchored object is deleted if cell is deleted

If an object is anchored to a cell, then it is expected that
this object belongs to this cell and it's survive after a
deletion of the cell makes no sense. So the anchored object
will be deleted together with the cell. Objects anchored to
the page are not affected.

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

diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index d36db2e6fef4..dd59a74c44e4 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -1512,7 +1512,7 @@ public:
 bool HasOLEObjectsInArea( const ScRange& rRange, 
const ScMarkData* pTabMark = nullptr );
 
 void DeleteObjectsInArea( SCCOL nCol1, SCROW 
nRow1, SCCOL nCol2, SCROW nRow2,
-  const ScMarkData& rMark 
);
+  const ScMarkData& rMark, 
bool bAnchored = false );
 void DeleteObjectsInSelection( const ScMarkData& 
rMark );
 
 void DeleteArea( SCCOL nCol1, SCROW nRow1, SCCOL 
nCol2, SCROW nRow2, const ScMarkData& rMark,
diff --git a/sc/inc/drwlayer.hxx b/sc/inc/drwlayer.hxx
index 143868c0e6ce..9f8268be03b8 100644
--- a/sc/inc/drwlayer.hxx
+++ b/sc/inc/drwlayer.hxx
@@ -143,7 +143,7 @@ public:
 boolHasObjectsInRows( SCTAB nTab, SCROW nStartRow, SCROW 
nEndRow );
 
 voidDeleteObjectsInArea( SCTAB nTab, SCCOL nCol1,SCROW nRow1,
-SCCOL nCol2,SCROW nRow2 );
+SCCOL nCol2,SCROW nRow2, bool 
bAnchored = false );
 voidDeleteObjectsInSelection( const ScMarkData& rMark );
 
 voidCopyToClip( ScDocument* pClipDoc, SCTAB nTab, const 
tools::Rectangle& rRange );
diff --git a/sc/source/core/data/documen9.cxx b/sc/source/core/data/documen9.cxx
index d5146ed509ad..d873b820c31f 100644
--- a/sc/source/core/data/documen9.cxx
+++ b/sc/source/core/data/documen9.cxx
@@ -248,7 +248,7 @@ bool ScDocument::DrawGetPrintArea( ScRange& rRange, bool 
bSetHor, bool bSetVer )
 }
 
 void ScDocument::DeleteObjectsInArea( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, 
SCROW nRow2,
-const ScMarkData& rMark )
+const ScMarkData& rMark, bool bAnchored)
 {
 if (!mpDrawLayer)
 return;
@@ -259,7 +259,7 @@ void ScDocument::DeleteObjectsInArea( SCCOL nCol1, SCROW 
nRow1, SCCOL nCol2, SCR
 if (rTab >= nTabCount)
 break;
 if (maTabs[rTab])
-mpDrawLayer->DeleteObjectsInArea( rTab, nCol1, nRow1, nCol2, nRow2 
);
+mpDrawLayer->DeleteObjectsInArea( rTab, nCol1, nRow1, nCol2, 
nRow2, bAnchored);
 }
 }
 
diff --git a/sc/source/core/data/drwlayer.cxx b/sc/source/core/data/drwlayer.cxx
index 90f92296534c..f27af11fc71a 100644
--- a/sc/source/core/data/drwlayer.cxx
+++ b/sc/source/core/data/drwlayer.cxx
@@ -1360,7 +1360,7 @@ bool ScDrawLayer::HasObjectsInRows( SCTAB nTab, SCROW 
nStartRow, SCROW nEndRow )
 }
 
 void ScDrawLayer::DeleteObjectsInArea( SCTAB nTab, SCCOL nCol1,SCROW nRow1,
-SCCOL nCol2,SCROW nRow2 )
+SCCOL nCol2,SCROW nRow2, bool 
bAnchored )
 {
 OSL_ENSURE( pDoc, "ScDrawLayer::DeleteObjectsInArea without document" );
 if ( !pDoc )
@@ -1390,8 +1390,17 @@ void ScDrawLayer::DeleteObjectsInArea( SCTAB nTab, SCCOL 
nCol1,SCROW nRow1,
 if (!IsNoteCaption( pObject ))
 {
 tools::Rectangle aObjRect = pObject->GetCurrentBoundRect();
-if ( aDelRect.IsInside( aObjRect ) )
-ppObj[nDelCount++] = pObject;
+if (aDelRect.IsInside(aObjRect))
+{
+if (bAnchored)
+{
+ScAnchorType aAnchorType = 
ScDrawLayer::GetAnchorType(*pObject);
+if(aAnchorType == SCA_CELL || aAnchorType == 
SCA_CELL_RESIZE)
+ppObj[nDelCount++] = pObject;
+}
+else
+ppObj[nDelCount++] = pObject;
+}
   

[Libreoffice-bugs] [Bug 125288] wrong color name in Data bar dialog (#0000FF instead Blue)

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

MM  changed:

   What|Removed |Added

Version|6.3.0.0.alpha0+ Master  |6.2.3.2 release
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Keywords||regression

--- Comment #1 from MM  ---
Confirmed on windows 7 x64 with Version: 6.2.3.2 (x64)
Build ID: aecc05fe267cc68dde00352a451aa867b3b546ac
CPU threads: 3; OS: Windows 6.1; UI render: default; VCL: win

Unconfirmed on ubuntu 16.04 x64 with Version: 6.2.0.0.alpha1+
Build ID: 726c18db3215ec74135f51365322a6b531f328af
CPU threads: 2; OS: Linux 4.4; UI render: default; VCL: gtk3; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2018-11-03_19:38:55
Locale: en-US (en_US.UTF-8); 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] online.git: test/test.cpp

2019-05-14 Thread Libreoffice Gerrit user
 test/test.cpp |   39 +--
 1 file changed, 21 insertions(+), 18 deletions(-)

New commits:
commit 65540da9dc7fdd533ae0a374ebe6c0b67ce25871
Author: Michael Meeks 
AuthorDate: Mon May 13 15:39:14 2019 +0100
Commit: Michael Meeks 
CommitDate: Tue May 14 21:29:12 2019 +0100

test: use process groups as well to allow concurrent make checks.

Change-Id: Ib1a55f53c51835a8f9fb1c17146f30e887103906

diff --git a/test/test.cpp b/test/test.cpp
index b76bbb02d..6fb933dde 100644
--- a/test/test.cpp
+++ b/test/test.cpp
@@ -168,11 +168,14 @@ bool runClientTests(bool standalone, bool verbose)
 // Versions assuming a single user, on a single machine
 #ifndef UNIT_CLIENT_TESTS
 
-std::vector getProcPids(const char* exec_filename, bool ignoreZombies = 
true)
+std::vector getProcPids(const char* exec_filename)
 {
 std::vector pids;
 
-// Crash all lokit processes.
+// Ensure we're in the same group.
+int grp = getpgrp();
+
+// Get all lokit processes.
 for (auto it = Poco::DirectoryIterator(std::string("/proc")); it != 
Poco::DirectoryIterator(); ++it)
 {
 try
@@ -196,24 +199,24 @@ std::vector getProcPids(const char* exec_filename, 
bool ignoreZombies = tru
 std::string statString;
 Poco::StreamCopier::copyToString(stat, statString);
 Poco::StringTokenizer tokens(statString, " ");
-if (tokens.count() > 3 && tokens[1] == exec_filename)
+if (tokens.count() > 6 && tokens[1] == exec_filename)
 {
-if (ignoreZombies)
+// We could have several make checks running at once.
+int kidGrp = std::atoi(tokens[4].c_str());
+if (kidGrp != grp)
+continue;
+
+switch (tokens[2].c_str()[0])
 {
-switch (tokens[2].c_str()[0])
-{
-// Dead & zombie markers for old and new kernels.
-case 'x':
-case 'X':
-case 'Z':
-break;
-default:
-pids.push_back(pid);
-break;
-}
-}
-else
+// Dead & zombie markers for old and new kernels.
+case 'x':
+case 'X':
+case 'Z':
+break;
+default:
 pids.push_back(pid);
+break;
+}
 }
 }
 }
@@ -235,7 +238,7 @@ std::vector getKitPids()
 
 int getLoolKitProcessCount()
 {
-return getProcPids("(loolkit)", true).size();
+return getProcPids("(loolkit)").size();
 }
 
 std::vector getForKitPids()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 116936] Firebird SDBC should implement XRowUpdate interface

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

--- Comment #1 from Julien Nabet  ---
Just to be sure to understand, it would mean:
copy paste template 
void OPreparedStatement::setValue(sal_Int32 nIndex, const T& nValue, ISC_SHORT
nType) from PreparedStatement.cxx into ResultSet.cxx

then retrieve all the setXXX methods (17 according to
https://opengrok.libreoffice.org/xref/core/offapi/com/sun/star/sdbc/XRowUpdate.idl)
and rename them like updateXXX and keep content of setXXX ones?

Finally, in ResultSet.hxx, add #include 
+ add css::sdbc::XRowUpdate in OResultSet_BASE.
?
Is it this or did I miss something?

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

[Libreoffice-bugs] [Bug 125290] New: Character spacing problem at projection.

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

Bug ID: 125290
   Summary: Character spacing problem at projection.
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: egon.huba...@citromail.hu

Created attachment 151413
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151413=edit
images

If "character spacing" takes a negative value, the letters will cover each
other and not be transparent at the projection. The preview is good. Microsoft
office power point also shows you well.
Images are attached.

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

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

2019-05-14 Thread Libreoffice Gerrit user
 bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h |2 ++
 loleaflet/src/control/Control.LokDialog.js   |4 
 2 files changed, 6 insertions(+)

New commits:
commit 07f924baf6e352fe2e4088def7e631d7cb127680
Author: Szymon Kłos 
AuthorDate: Mon Apr 29 17:51:41 2019 +0200
Commit: Szymon Kłos 
CommitDate: Tue May 14 22:17:19 2019 +0200

loleaflet: Allow to hide dialog

Change-Id: Ieb6ba7e51ad91916e550a529cd94151d062b33d3
Reviewed-on: https://gerrit.libreoffice.org/71549
Reviewed-by: Szymon Kłos 
Tested-by: Szymon Kłos 

diff --git a/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h 
b/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h
index 33d235af8..af4952566 100644
--- a/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h
+++ b/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h
@@ -575,6 +575,8 @@ typedef enum
  * - "cursor_visible" - cursor visible status is changed. Status is 
available
  *in "visible" field
  * - "close" - window is closed
+ * - "show" - show the window
+ * - "hide" - hide the window
  */
 LOK_CALLBACK_WINDOW = 36,
 
diff --git a/loleaflet/src/control/Control.LokDialog.js 
b/loleaflet/src/control/Control.LokDialog.js
index bc30c2e02..072ae72b5 100644
--- a/loleaflet/src/control/Control.LokDialog.js
+++ b/loleaflet/src/control/Control.LokDialog.js
@@ -270,6 +270,10 @@ L.Control.LokDialog = L.Control.extend({
this._onDialogChildClose(parent);
else
this._onDialogClose(e.id, false);
+   } else if (e.action === 'hide') {
+   $('#' + strId).parent().css({display: 'none'});
+   } else if (e.action === 'show') {
+   $('#' + strId).parent().css({display: 'block'});
}
},
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 102847] [META] Quick Find, Search and Replace

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

Bug 108347 Summary: Searching a large dataset is slower as it has been before
https://bugs.documentfoundation.org/show_bug.cgi?id=108347

   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 112383] [meta] Regressions introduced by using using multi_type_vector for cell storage

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

Bug 108347 Summary: Searching a large dataset is slower as it has been before
https://bugs.documentfoundation.org/show_bug.cgi?id=108347

   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 124531] PostgreSQL Native Driver: Unable to create view through Base-GUI

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

--- Comment #8 from Julien Nabet  ---
I wanted to give a try on Debian but there's no simple tuto for installing and
above all configuring Postgresql easily contrary to Windows (at least not like
http://www.postgresqltutorial.com/install-postgresql/).
It's a pity to see that often you're supposed to be a config expert if you're
on Linux. Sometimes you just want to be guided to test something quickly, and
you don't want to read everything on the subject just to install and setup a
quick test.

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

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

2019-05-14 Thread Caolán McNamara (via logerrit)
 sfx2/source/appl/appserv.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c9b31caf3a33618dd2c9272bb528f8567b428fe5
Author: Caolán McNamara 
AuthorDate: Tue May 14 16:03:07 2019 +0100
Commit: Caolán McNamara 
CommitDate: Tue May 14 22:13:04 2019 +0200

Related: tdf#125266 set default dialog parent for SfxHelp

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

diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx
index c533c345330e..8de0d32cbf21 100644
--- a/sfx2/source/appl/appserv.cxx
+++ b/sfx2/source/appl/appserv.cxx
@@ -604,7 +604,7 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq )
 Help* pHelp = Application::GetHelp();
 if ( pHelp )
 {
-pHelp->Start(".uno:HelpIndex", 
static_cast(nullptr)); // show start page
+pHelp->Start(".uno:HelpIndex", 
Application::GetDefDialogParent()); // show start page
 bDone = true;
 }
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 116222] [META] Edit conditional formatting dialog bugs and enhancements

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

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

   What|Removed |Added

 Depends on||125289


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125289
[Bug 125289] wrong color name in Conditional formatting dialog
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125289] New: wrong color name in Conditional formatting dialog

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

Bug ID: 125289
   Summary: wrong color name in Conditional formatting dialog
   Product: LibreOffice
   Version: 6.3.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru

Description:
wrong color name in Conditional formatting dialog for Color scale 2 and Color
scale 3

Steps to Reproduce:
1. Open Calc
2. Select Conditional icon on toolbar
3. Select Color scale in drop-down list of conditions
4. Look at Maximum color name (3 entries) -> #00CC00 instead Green
5. Change to Color scale (2 entries)
6. Look at Maximum color name (2 entries) -> #65C295 instead Green
7. Look at Minimum color name (2 entries) -> #FFF685 instead Yellow

Actual Results:
wrong color name in Conditional formatting dialog for Color scale 2 and Color
scale 3

Expected Results:
right color names in Conditional formatting dialog


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.3.0.0.alpha0+ (x64)
Build ID: ccf3a0600ee902390ad6112ecf28223078bdd2db
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-05-13_03:08:59
Locale: ru-RU (ru_RU); 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 125289] wrong color name in Conditional formatting dialog

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

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

   What|Removed |Added

 Blocks||116222


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116222
[Bug 116222] [META] Edit conditional formatting 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 115481] Letter paper size is not what it should be.

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

Shamoa Krasieski  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #5 from Shamoa Krasieski  ---
I tested printing again under LibreOffice Version: 6.2.3.2 And the same problem
still exists. But further research leads me to believe the problem lies within
the printer driver. And thus I will change the status to 'UNCONFIRMED' until I
find out for certainty what is going on.

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

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

2019-05-14 Thread Luboš Luňák (via logerrit)
 sc/inc/cellform.hxx   |4 ++--
 sc/inc/cellvalue.hxx  |4 ++--
 sc/inc/column.hxx |   16 ++--
 sc/inc/table.hxx  |2 +-
 sc/source/core/data/cellvalue.cxx |4 ++--
 sc/source/core/data/column2.cxx   |5 +
 sc/source/core/data/column3.cxx   |7 ++-
 sc/source/core/data/table6.cxx|   31 ---
 sc/source/core/tool/cellform.cxx  |4 ++--
 9 files changed, 50 insertions(+), 27 deletions(-)

New commits:
commit fce7c123203c91f62b45447f45e1d1f1b45d5b48
Author: Luboš Luňák 
AuthorDate: Tue May 14 15:59:29 2019 +0200
Commit: Luboš Luňák 
CommitDate: Tue May 14 22:06:44 2019 +0200

cache cell positions when searching in calc (tdf#108347)

The document has a large number of rows, and mdds normally always searches
from the first item when looking up the container position, which leads
to a quadratic cost when searching the entire sheet. GetCellValue()
already has a variant that caches the last position, so just use it
(and make sure to invalidate if it's search and something changes).

Change-Id: I26da60cebf641e10ed92e548fe5f9016900d3cf0
Reviewed-on: https://gerrit.libreoffice.org/72290
Tested-by: Jenkins
Reviewed-by: Luboš Luňák 

diff --git a/sc/inc/cellform.hxx b/sc/inc/cellform.hxx
index 618ad7146220..6a21b525defa 100644
--- a/sc/inc/cellform.hxx
+++ b/sc/inc/cellform.hxx
@@ -34,7 +34,7 @@ class SC_DLLPUBLIC ScCellFormat
 public:
 
 static void GetString(
-ScRefCellValue& rCell, sal_uInt32 nFormat, OUString& rString,
+const ScRefCellValue& rCell, sal_uInt32 nFormat, OUString& rString,
 Color** ppColor, SvNumberFormatter& rFormatter, const ScDocument* 
pDoc, bool bNullVals = true,
 bool bFormula  = false, bool bUseStarFormat = false );
 
@@ -44,7 +44,7 @@ public:
 bool bFormula  = false );
 
 static void GetInputString(
-ScRefCellValue& rCell, sal_uInt32 nFormat, OUString& rString, 
SvNumberFormatter& rFormatter,
+const ScRefCellValue& rCell, sal_uInt32 nFormat, OUString& rString, 
SvNumberFormatter& rFormatter,
 const ScDocument* pDoc );
 
 static OUString GetOutputString(
diff --git a/sc/inc/cellvalue.hxx b/sc/inc/cellvalue.hxx
index 153411c2b63e..7b6e3aad5794 100644
--- a/sc/inc/cellvalue.hxx
+++ b/sc/inc/cellvalue.hxx
@@ -78,7 +78,7 @@ struct SC_DLLPUBLIC ScCellValue
 
 void release( ScColumn& rColumn, SCROW nRow, sc::StartListeningType 
eListenType = sc::SingleCellListening );
 
-OUString getString( const ScDocument* pDoc );
+OUString getString( const ScDocument* pDoc ) const;
 
 bool isEmpty() const;
 
@@ -156,7 +156,7 @@ struct SC_DLLPUBLIC ScRefCellValue
  *  specific fields can not be resolved. See
  *  ScEditUtil::GetString().
  */
-OUString getString( const ScDocument* pDoc );
+OUString getString( const ScDocument* pDoc ) const;
 
 /**
  * Retrieve a string value without modifying the states of any objects in
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx
index bb218ea37c72..023e77427e01 100644
--- a/sc/inc/column.hxx
+++ b/sc/inc/column.hxx
@@ -22,6 +22,7 @@
 
 #include "global.hxx"
 #include "address.hxx"
+#include "cellvalue.hxx"
 #include "rangelst.hxx"
 #include "types.hxx"
 #include "mtvelements.hxx"
@@ -355,9 +356,16 @@ public:
 void SetValue( sc::ColumnBlockPosition& rBlockPos, SCROW nRow, double 
fVal, bool bBroadcast = true );
 voidSetError( SCROW nRow, const FormulaError nError);
 
-voidGetString( SCROW nRow, OUString& rString, const 
ScInterpreterContext* pContext = nullptr ) const;
+voidGetString( SCROW nRow, OUString& rString, const 
ScInterpreterContext* pContext = nullptr ) const
+{ return GetString( GetCellValue( nRow ), nRow, rString, pContext ); }
+voidGetString( sc::ColumnBlockConstPosition& rBlockPos, SCROW nRow,
+   OUString& rString, const ScInterpreterContext* 
pContext = nullptr ) const
+{ return GetString( GetCellValue( rBlockPos, nRow ), nRow, rString, 
pContext ); }
 double* GetValueCell( SCROW nRow );
-voidGetInputString( SCROW nRow, OUString& rString ) const;
+voidGetInputString( SCROW nRow, OUString& rString ) const
+{ return GetInputString( GetCellValue( nRow ), nRow, rString ); }
+voidGetInputString( sc::ColumnBlockConstPosition& rBlockPos, SCROW 
nRow, OUString& rString ) const
+{ return GetInputString( GetCellValue( rBlockPos, nRow ), nRow, 
rString ); }
 double  GetValue( SCROW nRow ) const;
 const EditTextObject* GetEditText( SCROW nRow ) const;
 void RemoveEditTextCharAttribs( SCROW nRow, const ScPatternAttr& rAttr );
@@ -599,6 +607,7 @@ public:
 // cell notes
 ScPostIt* GetCellNote( SCROW nRow );
 const ScPostIt* GetCellNote( SCROW nRow ) const;
+ScPostIt* GetCellNote( 

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

2019-05-14 Thread Tamás Zolnai (via logerrit)
 sdext/source/minimizer/graphiccollector.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit aa446591b7feb5bb667533ef7acdfc636105f9d9
Author: Tamás Zolnai 
AuthorDate: Mon May 13 15:56:52 2019 +0200
Commit: Tamás Zolnai 
CommitDate: Tue May 14 22:06:11 2019 +0200

Presentation minimizer: Handle also presentation.GraphicObjectShape URL

Change-Id: I326b2803bf2d98d440e14d7f3f75ca61c2c9e49a
Reviewed-on: https://gerrit.libreoffice.org/72303
Reviewed-by: Tamás Zolnai 
Tested-by: Tamás Zolnai 

diff --git a/sdext/source/minimizer/graphiccollector.cxx 
b/sdext/source/minimizer/graphiccollector.cxx
index 195dc244da4c..5882d0e5034c 100644
--- a/sdext/source/minimizer/graphiccollector.cxx
+++ b/sdext/source/minimizer/graphiccollector.cxx
@@ -220,7 +220,8 @@ static void ImpCollectGraphicObjects( const Reference< 
XComponentContext >& rxMS
 continue;
 }
 
-if ( sShapeType == "com.sun.star.drawing.GraphicObjectShape" )
+if ( sShapeType == "com.sun.star.drawing.GraphicObjectShape" ||
+ sShapeType == "com.sun.star.presentation.GraphicObjectShape" )
 ImpAddGraphicEntity( rxMSF, xShape, rGraphicSettings, 
rGraphicEntities );
 
 // now check for a fillstyle
@@ -337,7 +338,8 @@ static void ImpCountGraphicObjects( const Reference< 
XComponentContext >& rxMSF,
 continue;
 }
 
-if ( sShapeType == "com.sun.star.drawing.GraphicObjectShape" )
+if ( sShapeType == "com.sun.star.drawing.GraphicObjectShape" ||
+ sShapeType == "com.sun.star.presentation.GraphicObjectShape" )
 {
 rnGraphics++;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125288] wrong color name in Data bar dialog (#0000FF instead Blue)

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

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

   What|Removed |Added

 CC||tietze.he...@gmail.com
 Blocks||116222


Referenced Bugs:

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

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

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

   What|Removed |Added

 Depends on||125288


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125288
[Bug 125288] wrong color name in Data bar dialog (#FF instead Blue)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125288] New: wrong color name in Data bar dialog (#0000FF instead Blue)

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

Bug ID: 125288
   Summary: wrong color name in Data bar dialog (#FF instead
Blue)
   Product: LibreOffice
   Version: 6.3.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru

Description:
wrong color name in Data bar dialog (#FF instead Blue)

Steps to Reproduce:
1. Open Calc
2. Select Conditional icon on toolbar
3. Select Data bar in drop-down list of conditions
4. In dialog Conditional formatting press More options button
5. Look at Positive color name -> #FF instead Blue

Actual Results:
#FF instead Blue

Expected Results:
Blue


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.3.0.0.alpha0+ (x64)
Build ID: ccf3a0600ee902390ad6112ecf28223078bdd2db
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-05-13_03:08:59
Locale: ru-RU (ru_RU); 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

Suggestion

2019-05-14 Thread Ricardo Ruff
Dear Sirs,

I am a user of Libre Office since searching in the Web a software of open 
source that not depend of the big Companies that manage the world with their 
closed source softwares. I congratulate you in keeping Libre Office adding 
constant improvements.  

As I am a user of MAC computers for many years, I am writing you only to 
suggest if you can study the possibility of change something in your 
Spreadsheet. I would like use the Libre Office spreadsheet, but I use normally 
a spreadsheet of MAC whose name is Numbers. This spreadsheet has the advantage 
of other spreadsheets because you can open a file which have a lot of sheets 
with their own names, and each of them with many tables, each one with also its 
proper name. 

In the normal spreadsheets of Excel and all of others you can not have this 
advantage, that helps a lot to work. If you want I can send you a file and you 
can study this possibility.

Await your comments.

Regards,

Ricardo Ruff F.
Phone: 56 2 2243 2093
Cel: 9 4042 2153___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-commits] online.git: Changes to 'refs/tags/4.1-rc1'

2019-05-14 Thread Libreoffice Gerrit user
Tag '4.1-rc1' created by Andras Timar  at 
2019-05-14 19:53 +

4.1-rc1

Changes since 4.1-beta1-31:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125283] Subform within Form now giving SQL error

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #3 from Julien Nabet  ---
It's due to a side effect of a fix.
You can use macro described there for impacted files:
https://bugs.documentfoundation.org/show_bug.cgi?id=117053#c15

Waiting for your feedback about this.

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

[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-4' - debian/changelog debian/control loolwsd.spec.in

2019-05-14 Thread Libreoffice Gerrit user
 debian/changelog |6 ++
 debian/control   |2 +-
 loolwsd.spec.in  |4 ++--
 3 files changed, 9 insertions(+), 3 deletions(-)

New commits:
commit 16cc325bdfc33c0ffa59a99a84cb1434c8400f09
Author: Andras Timar 
AuthorDate: Tue May 14 21:51:05 2019 +0200
Commit: Andras Timar 
CommitDate: Tue May 14 21:51:19 2019 +0200

Bump package version to 4.1.0-2

Change-Id: I7f6ea22f13b19f793e50eca8811cefc741b5d20e

diff --git a/debian/changelog b/debian/changelog
index c18826127..7d0e224f1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+loolwsd (4.1.0-2) unstable; urgency=medium
+
+  * see the git log: http://col.la/cool4
+
+ -- Andras Timar   Tue, 14 May 2019 21:30:00 +0100
+
 loolwsd (4.1.0-1) unstable; urgency=medium
 
   * see the git log: http://col.la/cool4
diff --git a/debian/control b/debian/control
index b105fb301..f1d90367f 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Standards-Version: 3.9.7
 Package: loolwsd
 Section: web
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, libsm6, libxinerama1, 
libxrender1, libgl1-mesa-glx, libcups2, libxcb-render0, libxcb-shm0, 
locales-all, adduser, expat, fontconfig, cpio, libcap2-bin, 
collaboraofficebasis6.0-calc (>= 6.0.10.27), collaboraofficebasis6.0-core (>= 
6.0.10.27), collaboraofficebasis6.0-graphicfilter (>= 6.0.10.27), 
collaboraofficebasis6.0-images (>= 6.0.10.27), collaboraofficebasis6.0-impress 
(>= 6.0.10.27), collaboraofficebasis6.0-ooofonts (>= 6.0.10.27), 
collaboraofficebasis6.0-writer (>= 6.0.10.27), collaboraoffice6.0 (>= 
6.0.10.27), collaboraoffice6.0-ure (>= 6.0.10.27), 
collaboraofficebasis6.0-en-us (>= 6.0.10.27), collaboraofficebasis6.0-draw (>= 
6.0.10.27), collaboraofficebasis6.0-extension-pdf-import (>= 6.0.10.27), 
collaboraofficebasis6.0-ooolinguistic (>= 6.0.10.27)
+Depends: ${shlibs:Depends}, ${misc:Depends}, libsm6, libxinerama1, 
libxrender1, libgl1-mesa-glx, libcups2, libxcb-render0, libxcb-shm0, 
locales-all, adduser, expat, fontconfig, cpio, libcap2-bin, 
collaboraofficebasis6.0-calc (>= 6.0.10.31), collaboraofficebasis6.0-core (>= 
6.0.10.31), collaboraofficebasis6.0-graphicfilter (>= 6.0.10.31), 
collaboraofficebasis6.0-images (>= 6.0.10.31), collaboraofficebasis6.0-impress 
(>= 6.0.10.31), collaboraofficebasis6.0-ooofonts (>= 6.0.10.31), 
collaboraofficebasis6.0-writer (>= 6.0.10.31), collaboraoffice6.0 (>= 
6.0.10.31), collaboraoffice6.0-ure (>= 6.0.10.31), 
collaboraofficebasis6.0-en-us (>= 6.0.10.31), collaboraofficebasis6.0-draw (>= 
6.0.10.31), collaboraofficebasis6.0-extension-pdf-import (>= 6.0.10.31), 
collaboraofficebasis6.0-ooolinguistic (>= 6.0.10.31)
 Conflicts: collaboraofficebasis6.0-gnome-integration, 
collaboraofficebasis6.0-kde-integration
 Description: LibreOffice Online WebSocket Daemon
  LOOLWSD is a daemon that talks to web browser clients and provides LibreOffice
diff --git a/loolwsd.spec.in b/loolwsd.spec.in
index 2e142b093..4642458a4 100644
--- a/loolwsd.spec.in
+++ b/loolwsd.spec.in
@@ -12,7 +12,7 @@ Name:   loolwsd%{name_suffix}
 Name:   loolwsd
 %endif
 Version:@PACKAGE_VERSION@
-Release:1%{?dist}
+Release:2%{?dist}
 %if 0%{?suse_version} == 1110
 Group:  Productivity/Office/Suite
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -38,7 +38,7 @@ BuildRequires:  libcap-progs linux-glibc-devel 
systemd-rpm-macros python-polib
 BuildRequires:  libcap-progs
 %endif
 
-Requires:   collaboraoffice6.0 >= 6.0.10.27 collaboraoffice6.0-ure >= 
6.0.10.27 collaboraofficebasis6.0-core >= 6.0.10.27 
collaboraofficebasis6.0-writer >= 6.0.10.27 collaboraofficebasis6.0-impress >= 
6.0.10.27 collaboraofficebasis6.0-graphicfilter >= 6.0.10.27 
collaboraofficebasis6.0-en-US >= 6.0.10.27 collaboraofficebasis6.0-calc >= 
6.0.10.27 collaboraofficebasis6.0-ooofonts >= 6.0.10.27 
collaboraofficebasis6.0-images >= 6.0.10.27 collaboraofficebasis6.0-draw >= 
6.0.10.27 collaboraofficebasis6.0-extension-pdf-import >= 6.0.10.27 
collaboraofficebasis6.0-ooolinguistic >= 6.0.10.27
+Requires:   collaboraoffice6.0 >= 6.0.10.31 collaboraoffice6.0-ure >= 
6.0.10.31 collaboraofficebasis6.0-core >= 6.0.10.31 
collaboraofficebasis6.0-writer >= 6.0.10.31 collaboraofficebasis6.0-impress >= 
6.0.10.31 collaboraofficebasis6.0-graphicfilter >= 6.0.10.31 
collaboraofficebasis6.0-en-US >= 6.0.10.31 collaboraofficebasis6.0-calc >= 
6.0.10.31 collaboraofficebasis6.0-ooofonts >= 6.0.10.31 
collaboraofficebasis6.0-images >= 6.0.10.31 collaboraofficebasis6.0-draw >= 
6.0.10.31 collaboraofficebasis6.0-extension-pdf-import >= 6.0.10.31 
collaboraofficebasis6.0-ooolinguistic >= 6.0.10.31
 Conflicts:  collaboraofficebasis6.0-kde-integration 
collaboraofficebasis6.0-gnome-integration
 Requires(post): coreutils grep sed
 %if 0%{?rhel} == 6
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-4' - common/SigUtil.cpp common/SigUtil.hpp ios/Mobile wsd/DocumentBroker.hpp

2019-05-14 Thread Libreoffice Gerrit user
 common/SigUtil.cpp   |4 
 common/SigUtil.hpp   |4 
 ios/Mobile/DocumentViewController.mm |5 +
 wsd/DocumentBroker.hpp   |7 +++
 4 files changed, 20 insertions(+)

New commits:
commit 6087bd1fbbd8fb5df405ea3e5ee3beaed3ea4c0d
Author: Tor Lillqvist 
AuthorDate: Tue May 14 22:37:11 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Tue May 14 22:48:40 2019 +0300

Introduce new flag to speed up shutdown of the Online plumbing in the iOS 
app

Spent hours on trying to cleverly use the existing TerminationFlag
(with minor modifications to the code that checks it, and some
additional code to set and reset it), but could not get it to work.
This is simpler, but sure, using a global variable is ugly of course.
At least the new MobileTerminationFlag is very specific in semantics
and only used in the mobile apps.

Change-Id: I0775fdfa7880750ca12c6fd7ec41d3d3ceb2f0ad

diff --git a/common/SigUtil.cpp b/common/SigUtil.cpp
index 236fef176..428096858 100644
--- a/common/SigUtil.cpp
+++ b/common/SigUtil.cpp
@@ -39,6 +39,10 @@
 std::atomic TerminationFlag(false);
 std::atomic DumpGlobalState(false);
 
+#if MOBILEAPP
+std::atomic MobileTerminationFlag(false);
+#endif
+
 #if !MOBILEAPP
 std::atomic ShutdownRequestFlag(false);
 
diff --git a/common/SigUtil.hpp b/common/SigUtil.hpp
index 7c247ad0d..39706372d 100644
--- a/common/SigUtil.hpp
+++ b/common/SigUtil.hpp
@@ -26,6 +26,10 @@ extern std::atomic TerminationFlag;
 /// Flag to dump internal state
 extern std::atomic DumpGlobalState;
 
+#if MOBILEAPP
+extern std::atomic MobileTerminationFlag;
+#endif
+
 #if !MOBILEAPP
 
 /// Mutex to trap signal handler, if any,
diff --git a/ios/Mobile/DocumentViewController.mm 
b/ios/Mobile/DocumentViewController.mm
index 76e64d0d8..ff2d2f1ab 100644
--- a/ios/Mobile/DocumentViewController.mm
+++ b/ios/Mobile/DocumentViewController.mm
@@ -17,6 +17,7 @@
 #import "ios.h"
 #import "FakeSocket.hpp"
 #import "Log.hpp"
+#import "SigUtil.hpp"
 #import "Util.hpp"
 
 #import "DocumentViewController.h"
@@ -201,6 +202,10 @@
// is saved by closing it.

fakeSocketClose(self->closeNotificationPipeForForwardingThread[1]);
 
+   // Flag to make the inter-thread 
plumbing in the Online
+   // bits go away quicker.
+   MobileTerminationFlag = true;
+
// Close our end of the fake socket 
connection to the
// ClientSession thread, so that it 
terminates

fakeSocketClose(self.document->fakeClientFd);
diff --git a/wsd/DocumentBroker.hpp b/wsd/DocumentBroker.hpp
index e470d0c8c..dc2c19252 100644
--- a/wsd/DocumentBroker.hpp
+++ b/wsd/DocumentBroker.hpp
@@ -48,6 +48,13 @@ public:
 
 bool continuePolling() override
 {
+#if MOBILEAPP
+if (MobileTerminationFlag)
+{
+MobileTerminationFlag = false;
+return false;
+}
+#endif
 return SocketPoll::continuePolling() && !TerminationFlag;
 }
 };
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-05-14 Thread andreas kainz (via logerrit)
 sd/uiconfig/sdraw/ui/notebookbar.ui   |   32 +++---
 sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui|   40 +++
 sd/uiconfig/simpress/ui/notebookbar.ui|   32 +++---
 sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui |   40 +++
 sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui|   74 +++---
 5 files changed, 109 insertions(+), 109 deletions(-)

New commits:
commit ac9a59cb77c8ed7d5e2a0bc22787c56b90511271
Author: andreas kainz 
AuthorDate: Tue May 14 16:35:30 2019 +0200
Commit: andreas_kainz 
CommitDate: Tue May 14 21:44:05 2019 +0200

tdf#125285 Use Forward Backward instead of ObjectForwardOne/BackOne

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

diff --git a/sd/uiconfig/sdraw/ui/notebookbar.ui 
b/sd/uiconfig/sdraw/ui/notebookbar.ui
index c0a990a9f417..ec1713445cd9 100644
--- a/sd/uiconfig/sdraw/ui/notebookbar.ui
+++ b/sd/uiconfig/sdraw/ui/notebookbar.ui
@@ -10466,10 +10466,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectForwardOne
+.uno:Forward
   
   
 False
@@ -10489,10 +10489,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectBackOne
+.uno:Backward
   
   
 False
@@ -11539,10 +11539,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectForwardOne
+.uno:Forward
   
   
 False
@@ -11562,10 +11562,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectBackOne
+.uno:Backward
   
   
 False
@@ -12965,10 +12965,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectForwardOne
+.uno:Forward
   
   
 False
@@ -12988,10 +12988,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectBackOne
+.uno:Backward
   
   
 False
@@ -13594,10 +13594,10 @@
 both-horiz
 False
 
-  
+  
 True
 False
-.uno:ObjectForwardOne
+.uno:Forward
   
   
 False
@@ -13617,10 +13617,10 @@
 both-horiz
 False
 
-  
+  
  

[Libreoffice-bugs] [Bug 125285] NB sd modules wrong usage of ObjectForwardOne, ObjectBackOne

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

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

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125285] NB sd modules wrong usage of ObjectForwardOne, ObjectBackOne

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

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 125285] NB sd modules wrong usage of ObjectForwardOne, ObjectBackOne

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

--- Comment #3 from Commit Notification 
 ---
andreas kainz committed a patch related to this issue.
It has been pushed to "master":

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

tdf#125285 Use Forward Backward instead of ObjectForwardOne/BackOne

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-bugs] [Bug 87528] FORMATTING, EDITING cells, sign for comments too large

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

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

  1   2   3   4   5   >