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

2019-05-22 Thread Jan-Marek Glogowski (via logerrit)
 starmath/inc/ElementsDockingWindow.hxx|5 +
 starmath/source/ElementsDockingWindow.cxx |  111 +-
 2 files changed, 98 insertions(+), 18 deletions(-)

New commits:
commit 73f8222109c3091d5119ed47eac5cad4a55b2212
Author: Jan-Marek Glogowski 
AuthorDate: Fri May 17 02:38:43 2019 +0200
Commit: Jan-Marek Glogowski 
CommitDate: Thu May 23 07:02:45 2019 +0200

tdf#65587 SM handle page keys in the ElementControl

The page handling implementation is a little bit tricky, because
the elemnt list is not handled like a grid but a list. Normally
one would keep the horizontal cell and just scroll vertically.
Instead this implements a kind of circle.

Vertical offset is consistet, so you have the same amount of
steps for up and down, but up runs left and down runs right.

Change-Id: I296a46e98f7e00a59fd0a0ba358c981b49ac86cd
Reviewed-on: https://gerrit.libreoffice.org/72793
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 

diff --git a/starmath/inc/ElementsDockingWindow.hxx 
b/starmath/inc/ElementsDockingWindow.hxx
index e102250652c0..874735a8a44f 100644
--- a/starmath/inc/ElementsDockingWindow.hxx
+++ b/starmath/inc/ElementsDockingWindow.hxx
@@ -99,7 +99,12 @@ class SmElementsControl : public Control
 void addElements(const std::pair 
aElementsArray[], sal_uInt16 size);
 SmElement* current() const;
 bool hasRollover() const { return m_nCurrentRolloverElement != 
SAL_MAX_UINT16; }
+
 void stepFocus(const bool bBackward);
+void pageFocus(const bool bBackward);
+// common code of page and step focus
+inline void scrollToElement(const bool, const SmElement*);
+inline sal_uInt16 nextElement(const bool, const sal_uInt16, const 
sal_uInt16);
 
 void build();
 
diff --git a/starmath/source/ElementsDockingWindow.cxx 
b/starmath/source/ElementsDockingWindow.cxx
index cbf8c80865b0..385d33d795b5 100644
--- a/starmath/source/ElementsDockingWindow.cxx
+++ b/starmath/source/ElementsDockingWindow.cxx
@@ -601,27 +601,23 @@ void SmElementsControl::LoseFocus()
 Invalidate();
 }
 
-void SmElementsControl::stepFocus(const bool bBackward)
+sal_uInt16 SmElementsControl::nextElement(const bool bBackward, const 
sal_uInt16 nStartPos, const sal_uInt16 nLastElement)
 {
-const sal_uInt16 nStartPos = m_nCurrentElement;
-const sal_uInt16 nElementCount = maElementList.size();
 sal_uInt16 nPos = nStartPos;
-assert(nPos < nElementCount);
 
 while (true)
 {
 if (bBackward)
 {
 if (nPos == 0)
-nPos = nElementCount - 1;
-else
-nPos--;
+break;
+nPos--;
 }
 else
 {
+if (nPos == nLastElement)
+break;
 nPos++;
-if (nPos == nElementCount)
-nPos = 0;
 }
 
 if (nStartPos == nPos)
@@ -630,22 +626,94 @@ void SmElementsControl::stepFocus(const bool bBackward)
 break;
 }
 
+return nPos;
+}
+
+void SmElementsControl::scrollToElement(const bool bBackward, const SmElement 
*pCur)
+{
+long nScrollPos = mxScroll->GetThumbPos();
+if (mbVerticalMode)
+{
+nScrollPos += pCur->mBoxLocation.X();
+if (!bBackward)
+nScrollPos += pCur->mBoxSize.Width() - 
GetOutputSizePixel().Width();
+}
+else
+{
+nScrollPos += pCur->mBoxLocation.Y();
+if (!bBackward)
+nScrollPos += pCur->mBoxSize.Height() - 
GetOutputSizePixel().Height();
+}
+mxScroll->DoScroll(nScrollPos);
+}
+
+void SmElementsControl::stepFocus(const bool bBackward)
+{
+const sal_uInt16 nStartPos = m_nCurrentElement;
+const sal_uInt16 nLastElement = (maElementList.size() ? 
maElementList.size() - 1 : 0);
+assert(nStartPos <= nLastElement);
+
+sal_uInt16 nPos = nextElement(bBackward, nStartPos, nLastElement);
 if (nStartPos != nPos)
 {
 m_nCurrentElement = nPos;
-if (!hasRollover())
+m_nCurrentRolloverElement = SAL_MAX_UINT16;
+
+const tools::Rectangle outputRect(Point(0,0), GetOutputSizePixel());
+const SmElement *pCur = maElementList[nPos].get();
+tools::Rectangle elementRect(pCur->mBoxLocation, pCur->mBoxSize);
+if (!outputRect.IsInside(elementRect))
+scrollToElement(bBackward, pCur);
+Invalidate();
+}
+}
+
+void SmElementsControl::pageFocus(const bool bBackward)
+{
+const sal_uInt16 nStartPos = m_nCurrentElement;
+const sal_uInt16 nLastElement = (maElementList.size() ? 
maElementList.size() - 1 : 0);
+assert(nStartPos <= nLastElement);
+tools::Rectangle outputRect(Point(0,0), GetOutputSizePixel());
+sal_uInt16 nPrevPos = nStartPos;
+sal_uInt16 nPos = nPrevPos;
+
+bool bMoved = false;
+while (true)
+{
+nPrevPos = nPos;
+nPos = nextElement(bBackward, nPrevPos, nLastElement);
+if (nPrevPos == 

[Libreoffice-bugs] [Bug 65587] Elements pane: Items not reachable without mouse

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

--- Comment #16 from Commit Notification 
 ---
Jan-Marek Glogowski committed a patch related to this issue.
It has been pushed to "master":

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

tdf#65587 SM handle page keys in the ElementControl

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 65587] Elements pane: Items not reachable without mouse

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

--- Comment #15 from Commit Notification 
 ---
Jan-Marek Glogowski committed a patch related to this issue.
It has been pushed to "master":

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

tdf#65587 SM add key navigation to ElementControl

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 65587] Elements pane: Items not reachable without mouse

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

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-commits] core.git: starmath/inc starmath/source

2019-05-22 Thread Jan-Marek Glogowski (via logerrit)
 starmath/inc/ElementsDockingWindow.hxx|   12 +
 starmath/source/ElementsDockingWindow.cxx |  208 --
 starmath/source/uiobject.cxx  |2 
 3 files changed, 181 insertions(+), 41 deletions(-)

New commits:
commit 2fdcd86ac08c0ed033398bdb85ed04b64f50c633
Author: Jan-Marek Glogowski 
AuthorDate: Tue May 14 12:03:48 2019 +0200
Commit: Jan-Marek Glogowski 
CommitDate: Thu May 23 07:00:56 2019 +0200

tdf#65587 SM add key navigation to ElementControl

This adds arrows + home + end key navigation.

The grid is handled like a list. For convenience Left + Up
and Right + Down keys work in the same way.

Change-Id: I757184e5161f2c7ac9b241294a5edc304c882497
Reviewed-on: https://gerrit.libreoffice.org/72792
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 

diff --git a/starmath/inc/ElementsDockingWindow.hxx 
b/starmath/inc/ElementsDockingWindow.hxx
index c98072143bdc..e102250652c0 100644
--- a/starmath/inc/ElementsDockingWindow.hxx
+++ b/starmath/inc/ElementsDockingWindow.hxx
@@ -78,22 +78,28 @@ class SmElementsControl : public Control
 virtual void MouseMove(const MouseEvent& rMEvt) override;
 virtual void RequestHelp(const HelpEvent& rHEvt) override;
 virtual void Resize() override;
+virtual void GetFocus() override;
+virtual void LoseFocus() override;
+virtual void KeyInput(const KeyEvent& rKEvt) override;
 
 SmDocShell*   mpDocShell;
 SmFormat  maFormat;
 OString   msCurrentSetId;
-SmElement*mpCurrentElement;
+sal_uInt16m_nCurrentElement;
+sal_uInt16m_nCurrentRolloverElement;
 Link maSelectHdlLink;
 
 std::vector< std::unique_ptr > maElementList;
 Size  maMaxElementDimensions;
 bool  mbVerticalMode;
 VclPtr< ScrollBar > mxScroll;
-bool mbFirstPaintAfterLayout;
+bool m_bFirstPaintAfterLayout;
 
 void addElement(const OUString& aElementVisual, const OUString& 
aElementSource, const OUString& aHelpText);
-
 void addElements(const std::pair 
aElementsArray[], sal_uInt16 size);
+SmElement* current() const;
+bool hasRollover() const { return m_nCurrentRolloverElement != 
SAL_MAX_UINT16; }
+void stepFocus(const bool bBackward);
 
 void build();
 
diff --git a/starmath/source/ElementsDockingWindow.cxx 
b/starmath/source/ElementsDockingWindow.cxx
index bd86a1df4337..cbf8c80865b0 100644
--- a/starmath/source/ElementsDockingWindow.cxx
+++ b/starmath/source/ElementsDockingWindow.cxx
@@ -235,10 +235,11 @@ const std::pair 
SmElementsControl::aOthers[] =
 SmElementsControl::SmElementsControl(vcl::Window *pParent)
 : Control(pParent, WB_TABSTOP)
 , mpDocShell(new SmDocShell(SfxModelFlags::EMBEDDED_OBJECT))
-, mpCurrentElement(nullptr)
+, m_nCurrentElement(0)
+, m_nCurrentRolloverElement(SAL_MAX_UINT16)
 , mbVerticalMode(true)
 , mxScroll(VclPtr::Create(this, WB_VERT))
-, mbFirstPaintAfterLayout(false)
+, m_bFirstPaintAfterLayout(false)
 {
 set_id("element_selector");
 SetMapMode( MapMode(MapUnit::Map100thMM) );
@@ -276,11 +277,19 @@ void SmElementsControl::setVerticalMode(bool 
bVerticalMode)
 Invalidate();
 }
 
+SmElement* SmElementsControl::current() const
+{
+sal_uInt16 nCur = (m_nCurrentRolloverElement != SAL_MAX_UINT16)
+? m_nCurrentRolloverElement
+: (HasFocus() ? m_nCurrentElement : SAL_MAX_UINT16);
+return (nCur < maElementList.size()) ? maElementList[nCur].get() : nullptr;
+}
+
 /**
  * !pContext => layout only
  *
  * Layouting is always done without a scrollbar and will show or hide it.
- * The first paint (mbFirstPaintAfterLayout) therefore needs to update a
+ * The first paint (m_bFirstPaintAfterLayout) therefore needs to update a
  * visible scrollbar, because the layouting was wrong.
  **/
 void SmElementsControl::LayoutOrPaintContents(vcl::RenderContext *pContext)
@@ -311,6 +320,7 @@ void 
SmElementsControl::LayoutOrPaintContents(vcl::RenderContext *pContext)
 else
 boxX = nControlWidth / perLine;
 
+const SmElement* pCurrentElement = current();
 for (std::unique_ptr & i : maElementList)
 {
 SmElement* element = i.get();
@@ -365,7 +375,7 @@ void 
SmElementsControl::LayoutOrPaintContents(vcl::RenderContext *pContext)
 
 if (pContext)
 {
-if (mpCurrentElement == element)
+if (pCurrentElement == element)
 {
 pContext->Push(PushFlags::FILLCOLOR | 
PushFlags::LINECOLOR);
 pContext->SetFillColor(Color(230, 230, 230));
@@ -391,12 +401,12 @@ void 
SmElementsControl::LayoutOrPaintContents(vcl::RenderContext *pContext)
 
 if (pContext)
 {
-if (!mbFirstPaintAfterLayout || !mxScroll->IsVisible())
+if (!m_bFirstPaintAfterLayout || !mxScroll->IsVisible())
 return;
-mbFirstPaintAfterLayout = false;
+m_bFirstPaintAfterLayout = 

[Libreoffice-bugs] [Bug 125452] New: I installed L.O 6.1.5.2 and its help.in Debian 9. Help Calls mail application.

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

Bug ID: 125452
   Summary: I installed L.O 6.1.5.2 and its help.in Debian 9. Help
Calls mail application.
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: iusa...@gmail.com

Description:
After install, in L. O. writer, when a go to the menu Help, and then
LibreOffice Help (F1), help page does not open, instead, Thunderbird mail
applications opens with in the write message window, and it includes an
attachment entitled NewHelp1.html; if I do click F1 again, a new write message
Thunderbird window opens, bur now the attachment title is NewHelp2.html. I can
not open the attachments. Wird.

BESIDES:
I also got a crash that I have submitted
Details for crash report: f5def80f-ffc2-4ad3-9413-631948a8f9bd


Steps to Reproduce:
1. Launch L.O.
2. go to menu→help→LibreOfficeHelp
3. either click F1


Actual Results:
Default mail application will be called as when send mail is called
It will include an attachment entitled NewHelp1.html

Expected Results:
Help page should open instead of send mail


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: TextDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes
___
Version: 6.1.5.2
Build ID: 90f8dcf33c87b3705e78202e3df5142b201bd805
CPU threads: 2; OS: Linux 3.16; UI render: default; VCL: gtk2; 
Locale: es-MX (es_MX.utf8); Calc: group threaded
__

Note: I still have installed 
Version: 5.4.7.2
Build ID: c838ef25c16710f8838b1faec480ebba495259d0
CPU threads: 2; OS: Linux 3.16; UI render: default; VCL: gtk2; 
Locale: es-MX (es_MX.utf8); Calc: group

and help on it works fine.

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

[Libreoffice-commits] core.git: include/vcl vcl/source

2019-05-22 Thread Jan-Marek Glogowski (via logerrit)
 include/vcl/scrbar.hxx|1 +
 vcl/source/control/scrbar.cxx |   27 +++
 2 files changed, 16 insertions(+), 12 deletions(-)

New commits:
commit a71c960754152fb7e8094cdf6190783e609c2b58
Author: Jan-Marek Glogowski 
AuthorDate: Wed May 22 15:57:48 2019 +0200
Commit: Jan-Marek Glogowski 
CommitDate: Thu May 23 06:47:43 2019 +0200

Fix moving / orientation-changing ScrollBar

Just implements Move the same way then Resize. More importantly
the patch correctly resets the Thumb and Page rectangles to
position (0,0) instead of just Empty, which ImplCalc is based on.

Otherwise this results in broken scroll bars, when the StarMath
elements window is docked in in the bottom or top area and
switches the scrolling orientation on undock.

Change-Id: I32b0507cdd6551cc7f42655a730faf8ef25b747b
Reviewed-on: https://gerrit.libreoffice.org/72794
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 

diff --git a/include/vcl/scrbar.hxx b/include/vcl/scrbar.hxx
index 8a2fffac0321..fb08f37405b6 100644
--- a/include/vcl/scrbar.hxx
+++ b/include/vcl/scrbar.hxx
@@ -94,6 +94,7 @@ public:
 virtual void KeyInput(const KeyEvent& rKEvt) override;
 virtual void Paint(vcl::RenderContext& rRenderContext, const 
tools::Rectangle& rRect) override;
 virtual void Draw(OutputDevice* pDev, const Point& rPos, const Size& 
rSize, DrawFlags nFlags) override;
+virtual void Move() override;
 virtual void Resize() override;
 virtual void StateChanged(StateChangedType nType) override;
 virtual void DataChanged(const DataChangedEvent& rDCEvt) override;
diff --git a/vcl/source/control/scrbar.cxx b/vcl/source/control/scrbar.cxx
index 8c12b9f5ec2d..19db246006b7 100644
--- a/vcl/source/control/scrbar.cxx
+++ b/vcl/source/control/scrbar.cxx
@@ -243,6 +243,11 @@ void ScrollBar::ImplCalc( bool bUpdate )
 const tools::Rectangle aControlRegion( Point(0,0), aSize );
 tools::Rectangle aBtn1Region, aBtn2Region, aTrackRegion, 
aBoundingRegion;
 
+// reset rectangles to empty *and* (0,0) position
+maThumbRect = tools::Rectangle();
+maPage1Rect = tools::Rectangle();
+maPage2Rect = tools::Rectangle();
+
 if ( GetStyle() & WB_HORZ )
 {
 if ( GetNativeControlRegion( ControlType::Scrollbar, 
IsRTLEnabled()? ControlPart::ButtonRight: ControlPart::ButtonLeft,
@@ -278,13 +283,9 @@ void ScrollBar::ImplCalc( bool bUpdate )
 maThumbRect.SetBottom( maTrackRect.Bottom() );
 }
 else
-{
 mnThumbPixRange = 0;
-maPage1Rect.SetEmpty();
-maPage2Rect.SetEmpty();
-}
 }
-else
+else // WB_VERT
 {
 if ( GetNativeControlRegion( ControlType::Scrollbar, 
ControlPart::ButtonUp,
 aControlRegion, ControlState::NONE, 
ImplControlValue(), aBoundingRegion, aBtn1Region ) &&
@@ -319,16 +320,9 @@ void ScrollBar::ImplCalc( bool bUpdate )
 maThumbRect.SetRight( maTrackRect.Right() );
 }
 else
-{
 mnThumbPixRange = 0;
-maPage1Rect.SetEmpty();
-maPage2Rect.SetEmpty();
-}
 }
 
-if ( !mnThumbPixRange )
-maThumbRect.SetEmpty();
-
 mbCalcSize = false;
 
 Size aNewSize = getCurrentCalcSize();
@@ -1092,6 +1086,15 @@ void ScrollBar::Paint(vcl::RenderContext& 
rRenderContext, const tools::Rectangle
 ImplDraw(rRenderContext);
 }
 
+void ScrollBar::Move()
+{
+Control::Move();
+mbCalcSize = true;
+if (IsReallyVisible())
+ImplCalc(false);
+Invalidate();
+}
+
 void ScrollBar::Resize()
 {
 Control::Resize();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 107934] cannot select text with mouse on a computer with touch screen

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

--- Comment #6 from Aron Budea  ---
The following are likely workarounds, I can't test them myself.

In Firefox:
- open about:config
- set 'dom.w3c_touch_events.enabled' to 0

In Chrome:
- open chrome://flags
- find "Touch Events API", and disable it.

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

[Libreoffice-bugs] [Bug 122806] Collabora Online uses tap drag interface on laptop with touchscreen

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

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Whiteboard|QA:needsComment |
 CC||ba...@caesar.elte.hu
 Resolution|--- |DUPLICATE

--- Comment #1 from Aron Budea  ---
This is a duplicate of bug 107934.

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

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

[Libreoffice-bugs] [Bug 107934] cannot select text with mouse on a computer with touch screen

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

Aron Budea  changed:

   What|Removed |Added

 CC||hagen.echz...@gmail.com

--- Comment #5 from Aron Budea  ---
*** Bug 122806 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 115839] fileopen docx unable to change font size

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

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 125169] DRAW. Page number doesn't show in margin if page number was inserted in master view mode

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

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 125176] Long comment should be collapsed

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

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 122699] Select a style and show cells formatted with that style

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

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 122530] FILESAVE: Auto save timing logic problem: can save too frequently

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

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 120046] GPG keys are not available to LO after kernel update

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

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 122588] calc in win10 can't get data from "ORACLE RDB" database by ODBC and its Driver and VBA CODE

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

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 121797] No IPv6 to IPv4 fallback

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

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 121529] Drag-and-drop text overwrites the internal clipboard

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

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 119776] LibreOffice Viewer SD card access issue using Xiaomi Mi A1 (MDG2) running Android 8.1.0, kernel version: 3.18.71-perf-gb3363e5

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

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 125365] XIRR function doesn't work with concatenated ranges (using ~)

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

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 119538] Administrative priviliges required to run LibreOffice SDK (cli) functionality in IIS

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

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 122422] Add regular expression filter to Text Import window

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

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 120120] No macro security for smb

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

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 125431] An unwanted image is corrupting .pdf conversion

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

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 125365] XIRR function doesn't work with concatenated ranges (using ~)

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

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

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

[Libreoffice-bugs] [Bug 119776] LibreOffice Viewer SD card access issue using Xiaomi Mi A1 (MDG2) running Android 8.1.0, kernel version: 3.18.71-perf-gb3363e5

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

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

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

[Libreoffice-bugs] [Bug 125426] Very slow loading of 12kB ODT, loads fast when contents is pasted into new ODT

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

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 125431] An unwanted image is corrupting .pdf conversion

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

--- Comment #6 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 120120] No macro security for smb

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

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 119776] LibreOffice Viewer SD card access issue using Xiaomi Mi A1 (MDG2) running Android 8.1.0, kernel version: 3.18.71-perf-gb3363e5

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

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 121797] No IPv6 to IPv4 fallback

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

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 120120] No macro security for smb

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

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

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

[Libreoffice-bugs] [Bug 121651] Crash in: SwAccessibleMap::GetContext(SwFrame const *, bool)

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

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

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 98634] Cutting or copying text from comments to document body brings comment formatting

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

--- Comment #6 from QA Administrators  ---
Dear Nick Bugs,

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 125426] Very slow loading of 12kB ODT, loads fast when contents is pasted into new ODT

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

--- Comment #6 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 121109] FILESAVE: Page break is added after removed paragraph

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

--- Comment #5 from QA Administrators  ---
Dear Xisco Faulí,

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 121797] No IPv6 to IPv4 fallback

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

--- 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 117734] Columns and formatting lost when saved and reopened as RTF

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

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

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 121655] Doesn't display contents in Print Preview in Calc

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

--- Comment #4 from QA Administrators  ---
Dear Me,

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 97129] No feedback while saving a document

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

--- Comment #7 from QA Administrators  ---
Dear Urmas,

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 106975] Download Link is not Localised

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

--- Comment #6 from QA Administrators  ---
Dear Harald Koester,

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 54912] BASIC: Array function forces the lower boundary for arrays as 0 in spite of option base 1

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

--- Comment #10 from QA Administrators  ---
Dear pierre-yves samyn,

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 94856] createStatusIndicator() not functioning correctly (Python)

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

--- Comment #9 from QA Administrators  ---
Dear kiloran.public+bugzilla,

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 76772] FORMATTING lost when "record changes" is active

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

--- Comment #9 from QA Administrators  ---
Dear slkleo,

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 125451] The updater has never worked for me and manual updating is extremely cumbersome

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

--- Comment #1 from signupem...@posteo.uk ---
I should say I am on Linux Mint 19.1 Cinnamon (but the updater has failed to
work on all version of that OS that I have tried, starting with, I think, Mint
version 17).

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

[Libreoffice-bugs] [Bug 125451] New: The updater has never worked for me and manual updating is extremely cumbersome

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

Bug ID: 125451
   Summary: The updater has never worked for me and manual
updating is extremely cumbersome
   Product: LibreOffice
   Version: 6.2.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: signupem...@posteo.uk

The update built into LibreOffice has never worked for me in all the years I
have had Libre Office. In lieu of that, in order to update (unless I use
appImage or similar), I must:

download from your website an archive of the main files
download from your website an archive of the appropriate language pack
download from your website an archive of the help materials
extract all three of those archives
located within each archive the .deb files
install all of those .deb files from a terminal

Surely this is too much. Please, either get the updater to work or else
streamline the process somewhat. A PPA would not go amiss (though of course it
would serve only some Linux users). Were you to make upgrading/installation
eaiser, then you would be increase the number of your users, surely.

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

[Libreoffice-bugs] [Bug 125450] New: Column shading not at all right

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

Bug ID: 125450
   Summary: Column shading not at all right
   Product: LibreOffice
   Version: 6.2.3.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: signupem...@posteo.uk

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

See, especially, the vertical shading on the leftmost column in the attached
screenshot. What one sees there can't be what is intended, surely.

I am not aware of having applied any special theme within LibreOffice.

Linux Mint 19.1 x64 Cinnamon, using a system-wide dark theme.

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

[Libreoffice-bugs] [Bug 125365] XIRR function doesn't work with concatenated ranges (using ~)

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

--- Comment #3 from a...@ualberta.net ---
Tried in Excel 2010, also doesn't support it.

What other info is needed? Let's change to an enhancement request then if it
isn't considered a bug?

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

[Libreoffice-bugs] [Bug 125449] New: Changing percent gradient or color changes chart wall gradient color to black and white

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

Bug ID: 125449
   Summary: Changing percent gradient or color changes chart wall
gradient color to black and white
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: catbil...@gmail.com

Created attachment 151609
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151609=edit
data for testing chart wall gradient

To reproduce:

1. Select data range (test data attached)
2. Click Chart Wizard in Standard toolbar
3. Choose any chart type that has a chart wall
4. Click Finish
5. Select the chart wall
6. Right-click and select Format Wall
7. On the Area tab, click Gradient
8. Select one of the preview images
9. Change the percent in either the From color or To Color spin box OR
select different colors for either From color or To Color

Expect to see: the selected gradient and color scheme appear in the chart wall
What happens:  the gradient is black and white, not color

This is similar to 114273, but that report was about changing the color itself,
not the percent color and the result was not clear.  In this report, changing
either the color or the percent causes the result to be black and white.

Version: 6.3.0.0.alpha1 (x64)
Build ID: 547edd20e527fb02900f6174973770d26306e2e7
CPU threads: 2; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: CL

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

[Libreoffice-commits] core.git: Branch 'aoo/trunk' - vcl/source

2019-05-22 Thread Matthias Seidel (via logerrit)
 vcl/source/app/svdata.cxx |   19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)

New commits:
commit e77524cb2eb6e1a6ecdcfc914bbf77a8b084cb53
Author: Matthias Seidel 
AuthorDate: Wed May 22 23:41:32 2019 +
Commit: Matthias Seidel 
CommitDate: Wed May 22 23:41:32 2019 +

Cleaned up whitespace, fixed typos

diff --git a/vcl/source/app/svdata.cxx b/vcl/source/app/svdata.cxx
index 139c5e689ded..1c3b641a572d 100644
--- a/vcl/source/app/svdata.cxx
+++ b/vcl/source/app/svdata.cxx
@@ -56,7 +56,7 @@
 #include "vcl/msgbox.hxx"
 #include "vcl/unohelp.hxx"
 #include "vcl/button.hxx" // for Button::GetStandardText
-#include "vcl/dockwin.hxx"  // for DockingManager
+#include "vcl/dockwin.hxx" // for DockingManager
 
 #include "salinst.hxx"
 #include "salframe.hxx"
@@ -146,11 +146,11 @@ void ImplInitSVData()
 }
 }
 #ifdef WNT
-//Default enable the acc bridge interface
+// Default enable the acc bridge interface
 pImplSVData->maAppData.m_bEnableAccessInterface =true;
 #endif
 
-// mark default layout border as unitialized
+// mark default layout border as uninitialized
 pImplSVData->maAppData.mnDefaultLayoutBorder = -1;
 }
 
@@ -212,7 +212,7 @@ Window* ImplGetDefaultWindow()
 return pSVData->maWinData.mpAppWin;
 
 // First test if we already have a default window.
-// Don't only place a single if..else inside solar mutex lockframe
+// Don't only place a single if...else inside solar mutex lockframe
 // because then we might have to wait for the solar mutex what is not 
necessary
 // if we already have a default window.
 
@@ -346,7 +346,7 @@ com::sun::star::uno::Any 
AccessBridgeCurrentContext::getValueByName( const rtl::
 com::sun::star::uno::Any ret;
 if( Name.equalsAscii( "java-vm.interaction-handler" ) )
 {
-// Currently, for accessbility no interaction handler shall be offered.
+// Currently, for accessibility no interaction handler shall be 
offered.
 // There may be introduced later on a handler using native toolkits
 // jbu->obr: Instantiate here your interaction handler
 }
@@ -448,13 +448,13 @@ bool ImplInitAccessBridge(sal_Bool bAllowCancel, sal_Bool 
)
 // if bAllowCancel is sal_True we were called from application startup
 //  where we will disable any Java errorboxes and show our own 
accessibility dialog if Java throws an exception
 // if bAllowCancel is sal_False we were called from Tools->Options
-//  where we will see Java errorboxes, se we do not show our dialogs in 
addition to Java's
+//  where we will see Java errorboxes, so we do not show our dialogs in 
addition to Java's
 
 try
 {
 sal_Bool bSuccess = sal_True;
 
-// No error messages when env var is set ..
+// No error messages when env var is set...
 static const char* pEnv = getenv("SAL_ACCESSIBILITY_ENABLED" );
 if( pEnv && *pEnv )
 {
@@ -490,7 +490,7 @@ bool ImplInitAccessBridge(sal_Bool bAllowCancel, sal_Bool 
)
 
 // Disable default java error messages on startup, because 
they were probably unreadable
 // for a disabled user. Use native message boxes which are 
accessible without java support.
-// No need to do this when activated by Tools-Options dialog ..
+// No need to do this when activated by Tools-Options dialog...
 if( bAllowCancel )
 {
 // customize the java-not-available-interaction-handler 
entry within the
@@ -684,7 +684,7 @@ bool ImplInitAccessBridge(sal_Bool bAllowCancel, sal_Bool 
)
 Window* ImplFindWindow( const SalFrame* pFrame, ::Point& rSalFramePos )
 {
 ImplSVData* pSVData = ImplGetSVData();
-Window* pFrameWindow = pSVData->maWinData.mpFirstFrame;
+Window*  pFrameWindow = pSVData->maWinData.mpFirstFrame;
 while ( pFrameWindow )
 {
 if ( pFrameWindow->ImplGetFrame() == pFrame )
@@ -705,4 +705,3 @@ void LocaleConfigurationListener::ConfigurationChanged( 
utl::ConfigurationBroadc
 {
 AllSettings::LocaleSettingsChanged( nHint );
 }
-
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Re: [ABANDONED] Re: Build fail on Libgpg-error on Windows with gawk 5.0

2019-05-22 Thread Luke Benes

Thorsten fixed it. It's working now for me. Thanks!
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-6-1+backports' - download.lst external/curl

2019-05-22 Thread Michael Stahl (via logerrit)
 download.lst   |4 ++--
 external/curl/zlib.patch.0 |   10 --
 2 files changed, 2 insertions(+), 12 deletions(-)

New commits:
commit 949a26c7642c27f1cc46772fdd58143a6744160d
Author: Michael Stahl 
AuthorDate: Wed May 22 11:40:54 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 23 01:44:11 2019 +0200

curl: upgrade to release 7.65.0

Fixes CVE-2019-5435. It looks like this is not a problem on 32-bit
Windows because fortunately we don't use /LARGEADDRESSAWARE flag
to set IMAGE_FILE_LARGE_ADDRESS_AWARE... but on 32-bit Linux
the user-space VM is 3GB so an exploit might be possible.

Apparently there's no code in LO that uses the CURLU_URLENCODE flag.

The other one, CVE-2019-5436, doesn't matter because we disable tftp.

Change-Id: I0d4f087befa5a3c4fb21ec36761dad68932425d9
Reviewed-on: https://gerrit.libreoffice.org/72732
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit edb01616ac176401650c35d938c75c6c5558a47e)
Reviewed-on: https://gerrit.libreoffice.org/72776
Tested-by: Michael Stahl 
Reviewed-by: Thorsten Behrens 

diff --git a/download.lst b/download.lst
index e84baea4995e..b0f60e13e5bd 100644
--- a/download.lst
+++ b/download.lst
@@ -29,8 +29,8 @@ export CPPUNIT_SHA256SUM := 
3d569869d27b48860210c758c4f313082103a5e58219a7669b52
 export CPPUNIT_TARBALL := cppunit-1.14.0.tar.gz
 export CT2N_SHA256SUM := 
71b238efd2734be9800af07566daea8d6685aeed28db5eb5fa0e6453f4d85de3
 export CT2N_TARBALL := 
1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt
-export CURL_SHA256SUM := 
cb90d2eb74d4e358c1ed1489f8e3af96b50ea4374ad71f143fa4595e998d81b5
-export CURL_TARBALL := curl-7.64.0.tar.gz
+export CURL_SHA256SUM := 
7766d263929404f693905b5e5222aa0f2bdf8c66ab4b8758f0c0820a42b966cd
+export CURL_TARBALL := curl-7.65.0.tar.xz
 export EBOOK_SHA256SUM := 
7e8d8ff34f27831aca3bc6f9cc532c2f90d2057c778963b884ff3d1e34dfe1f9
 export EBOOK_TARBALL := libe-book-0.1.3.tar.xz
 export EPOXY_SHA256SUM := 
1d8668b0a259c709899e1c4bab62d756d9002d546ce4f59c9665e2fc5f001a64
diff --git a/external/curl/zlib.patch.0 b/external/curl/zlib.patch.0
index b3e821039740..189e820d1afa 100644
--- a/external/curl/zlib.patch.0
+++ b/external/curl/zlib.patch.0
@@ -1,15 +1,5 @@
 --- configure
 +++ configure
-@@ -937,8 +937,8 @@
- ZLIB_LIBS
- HAVE_LIBZ_FALSE
- HAVE_LIBZ_TRUE
--HAVE_LIBZ
- PKGCONFIG
-+HAVE_LIBZ
- CURL_DISABLE_GOPHER
- CURL_DISABLE_SMTP
- CURL_DISABLE_SMB
 @@ -20709,7 +20709,6 @@
  clean_CPPFLAGS=$CPPFLAGS
  clean_LDFLAGS=$LDFLAGS
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - download.lst external/curl

2019-05-22 Thread Michael Stahl (via logerrit)
 download.lst   |4 ++--
 external/curl/zlib.patch.0 |   10 --
 2 files changed, 2 insertions(+), 12 deletions(-)

New commits:
commit 9fbc8648c23398a7f70890162178ad833c735934
Author: Michael Stahl 
AuthorDate: Wed May 22 11:40:54 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 23 01:44:02 2019 +0200

curl: upgrade to release 7.65.0

Fixes CVE-2019-5435. It looks like this is not a problem on 32-bit
Windows because fortunately we don't use /LARGEADDRESSAWARE flag
to set IMAGE_FILE_LARGE_ADDRESS_AWARE... but on 32-bit Linux
the user-space VM is 3GB so an exploit might be possible.

Apparently there's no code in LO that uses the CURLU_URLENCODE flag.

The other one, CVE-2019-5436, doesn't matter because we disable tftp.

Change-Id: I0d4f087befa5a3c4fb21ec36761dad68932425d9
Reviewed-on: https://gerrit.libreoffice.org/72732
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit edb01616ac176401650c35d938c75c6c5558a47e)
Reviewed-on: https://gerrit.libreoffice.org/72775
Reviewed-by: Thorsten Behrens 

diff --git a/download.lst b/download.lst
index dc805c997e0f..8d0c9638d5f9 100644
--- a/download.lst
+++ b/download.lst
@@ -29,8 +29,8 @@ export CPPUNIT_SHA256SUM := 
3d569869d27b48860210c758c4f313082103a5e58219a7669b52
 export CPPUNIT_TARBALL := cppunit-1.14.0.tar.gz
 export CT2N_SHA256SUM := 
71b238efd2734be9800af07566daea8d6685aeed28db5eb5fa0e6453f4d85de3
 export CT2N_TARBALL := 
1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt
-export CURL_SHA256SUM := 
cb90d2eb74d4e358c1ed1489f8e3af96b50ea4374ad71f143fa4595e998d81b5
-export CURL_TARBALL := curl-7.64.0.tar.gz
+export CURL_SHA256SUM := 
7766d263929404f693905b5e5222aa0f2bdf8c66ab4b8758f0c0820a42b966cd
+export CURL_TARBALL := curl-7.65.0.tar.xz
 export EBOOK_SHA256SUM := 
7e8d8ff34f27831aca3bc6f9cc532c2f90d2057c778963b884ff3d1e34dfe1f9
 export EBOOK_TARBALL := libe-book-0.1.3.tar.xz
 export EPOXY_SHA256SUM := 
002958c5528321edd53440235d3c44e71b5b1e09b9177e8daf677450b6c4433d
diff --git a/external/curl/zlib.patch.0 b/external/curl/zlib.patch.0
index b3e821039740..189e820d1afa 100644
--- a/external/curl/zlib.patch.0
+++ b/external/curl/zlib.patch.0
@@ -1,15 +1,5 @@
 --- configure
 +++ configure
-@@ -937,8 +937,8 @@
- ZLIB_LIBS
- HAVE_LIBZ_FALSE
- HAVE_LIBZ_TRUE
--HAVE_LIBZ
- PKGCONFIG
-+HAVE_LIBZ
- CURL_DISABLE_GOPHER
- CURL_DISABLE_SMTP
- CURL_DISABLE_SMB
 @@ -20709,7 +20709,6 @@
  clean_CPPFLAGS=$CPPFLAGS
  clean_LDFLAGS=$LDFLAGS
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125431] An unwanted image is corrupting .pdf conversion

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

--- Comment #5 from 510jrb2...@gmail.com ---
Comment on attachment 151608
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151608
This is the pdf file which my

Sorry about that cutoff.  The source is the .odt file sent earlier.  You will
notice the unwanted image in the pdf file.
It's good to know that you are not reproducing it.  Such was my experience as
well, but suddenly this but appeared and nothing I have been able to do
corrects it.

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

[Libreoffice-bugs] [Bug 125431] An unwanted image is corrupting .pdf conversion

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

--- Comment #4 from 510jrb2...@gmail.com ---
Created attachment 151608
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151608=edit
This is the pdf file which my

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

MacUpdate - your app listing has been updated

2019-05-22 Thread MacUpdate
Title: Untitled Document








  




  




  




  

  
  

  
  

  

  

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

  
View your updated app listing 
  

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

  

  
  

  

		
		
  

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

  

  
  

  

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

  
  



  
Learn more

  



  

  
  

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

  
  

  
  

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

  




  




  




  








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

Re: Aspect ratio of

2019-05-22 Thread Stephan Bergmann
You can likely disregard the below at least for now.  Only after sending 
it I realized that the Flathub build failure was presumably caused by 
another, spurious infrastructure issue, and that those AppData 
verification failures would only have caused a warning, not a hard 
failure (at least for now).


On 22/05/2019 15:24, Stephan Bergmann wrote:
I'm not sure this is the best mailing list to discuss this issue.  Feel 
free to cc further mailing lists or relevant people.


We have a set of screenshots accessible via URLs like 
 that are 
referenced from our AppData files (see the various 
sysui/desktop/appstream-appdata/libreoffice-*.appdata.xml sources, and 
solenv/bin/assemble-flatpak.sh generating a single such file for the 
Flatpak build).


Now, building LO 6.2.4 Flatpak on Flathub failed because Flathub started 
to sport a new check that verifies that such AppData screenshots have a 
16:9 aspect ratio.  I'm totally clueless as to how much sense such a 
check makes and whether it will continue to prevent us from providing an 
updated LO on Flathub, see the mail thread I started at 
 
"Run strict validation on AppData file" for details.


But in case we'll be forced to indeed provide 16:9 screenshots, I'd like 
to already clarify who'll be able to do that.  And whether those files 
would replace the existing 
 or would get fresh URLs.


The set of such .png files referenced from (current master) 
sysui/desktop/appstream-appdata/libreoffice-*.appdata.xml sources is













of which the Flatpak AppData file references only the five *-01.png.  So 
it would be great if at a minimum those five could be provided as 16:9 
if it turns out there's indeed need for that.


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

[Libreoffice-bugs] [Bug 125210] KDE5: Can't to dock Formula editor by Ctrl+double click in Math

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

Jan-Marek Glogowski  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #8 from Jan-Marek Glogowski  ---
(In reply to Katarina Behrens (CIB) from comment #7)
> I can reproduce this 100% but only with clean user profile i.e. `soffice
> --safe-mode --math`. 

I don't think Roman has a clean user profile

> Also it is not Math formula editor, any docking window (such as Math
> elements panel, sidebar, Basic variable watch,...) misbehaves like this

So I'm setting this to NEW again.

What I just did was:
1. so -env:UserInstallation=file:///tmp/test-math --math (new profile)
2. Close the tip of the day
3. Hold Ctrl + double-click "Commands" border => undocks as floating window
4. Hold Ctrl + double-click "Commands" floating window corner => re-docks

with: alias so='./inst*/program/soffice'

But I also tested this many times with a rather old profile.

So somebody else has to look into this.

Since you were doing multi-monitor stuff recently, maybe a 2nd screen is
involved? Blind guess...

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

[Libreoffice-bugs] [Bug 50699] Template Changer: Allow ability to change a document's associated template

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

--- Comment #71 from Gerhard Weydt  ---
(In reply to Pierre C from comment #70)
> I've an error with the extension, when linking a template to a doc. (see
> attached)

Hi Pierre,

I could not contact you by direct mail in order to get a test file due to -
probably - technical problems of the mail provider(s), hence I do not know
which special constellation caused the error (I vainly tried to create a file
which produced an error).
So I added a test to the code which simply avoids evaluating the attribute
which caused the error, if it's not present, which does no harm, as the
statements executed apply only to this attribute.
This is contained in the new version 1.0.2 on the extensions website. Please
test your file with this new version.

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

[Libreoffice-bugs] [Bug 125448] LibreOffice Theme dialog

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

andreas_k  changed:

   What|Removed |Added

   Keywords||needsUXEval

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

[Libreoffice-bugs] [Bug 125448] LibreOffice Theme dialog

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

andreas_k  changed:

   What|Removed |Added

 CC||kain...@gmail.com

--- Comment #1 from andreas_k  ---
Created attachment 151607
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151607=edit
LibreOffice Theme dialog

main view very simple with previews and option for theme per active app or all
apps.

configure for each theme is possible for different items.
Toolbar, Statusbar, Menubar and Sidebar

You can configure the Area (like area drop down menu) and Font.

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

[Libreoffice-bugs] [Bug 125448] New: LibreOffice Theme dialog

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

Bug ID: 125448
   Summary: LibreOffice Theme dialog
   Product: LibreOffice
   Version: 6.3.0.0.alpha1+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kain...@gmail.com

Description:
-

Steps to Reproduce:
1. Menubar -> Tools -> Options
2. Appearance

Actual Results:
Firefox themes will be updated from mozilla.

Expected Results:
Preinstalled Themes with configuration dialog and theme per app or for all
apps.


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-bugs] [Bug 121797] No IPv6 to IPv4 fallback

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

--- Comment #2 from Pierre Rudloff  ---
Sorry, I switched jobs since then so I don't use LOO anymore.

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

[Libreoffice-bugs] [Bug 125435] LibreOffice PDF export regression -- edit file properties before saving/exporting doesn't work correctly and the PDF isn't opened automatically after export

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

--- Comment #1 from João Paulo  ---
Sorry the first post was somewhat convoluted. The lines starting with "*" are
redundant and incomplete compared to the Steps to reproduce (the numbered
lines).

-- 
You are receiving this mail because:
You 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' - ios/Mobile

2019-05-22 Thread Libreoffice Gerrit user
 ios/Mobile/Info.plist.in |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 35d5efe8708e3392008dc0d7ac9569a0416f3dea
Author: Tor Lillqvist 
AuthorDate: Thu May 23 00:06:13 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Thu May 23 00:06:13 2019 +0300

Use 4.1 as version number here, too, like in configure.ac

Change-Id: Id39031e5efa65fd604374a35a637029b7725bb3f

diff --git a/ios/Mobile/Info.plist.in b/ios/Mobile/Info.plist.in
index 7ffb8d88d..e48c6f730 100644
--- a/ios/Mobile/Info.plist.in
+++ b/ios/Mobile/Info.plist.in
@@ -363,7 +363,7 @@
 CFBundlePackageType
 APPL
 CFBundleShortVersionString
-0.1
+4.1
 CFBundleVersion
 @IOSAPP_BUNDLE_VERSION@
 LSRequiresIPhoneOS
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-05-22 Thread Jan-Marek Glogowski (via logerrit)
 starmath/source/ElementsDockingWindow.cxx |   78 +-
 1 file changed, 55 insertions(+), 23 deletions(-)

New commits:
commit 3af6091f45d93508ab746c13e208d9516c009222
Author: Jan-Marek Glogowski 
AuthorDate: Wed May 22 16:59:59 2019 +0200
Commit: Jan-Marek Glogowski 
CommitDate: Wed May 22 23:02:52 2019 +0200

SM fix vertical ElementsControl mode

Switches the ScrollBar to horizontal in vertical mode and
adapts the scrolling.

Change-Id: I35370d74175ccd1f117b17f7d7ffa25119f2e612
Reviewed-on: https://gerrit.libreoffice.org/72791
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 

diff --git a/starmath/source/ElementsDockingWindow.cxx 
b/starmath/source/ElementsDockingWindow.cxx
index 36af328f1ced..bd86a1df4337 100644
--- a/starmath/source/ElementsDockingWindow.cxx
+++ b/starmath/source/ElementsDockingWindow.cxx
@@ -265,7 +265,15 @@ void SmElementsControl::dispose()
 
 void SmElementsControl::setVerticalMode(bool bVerticalMode)
 {
+if (mbVerticalMode == bVerticalMode)
+return;
 mbVerticalMode = bVerticalMode;
+if (bVerticalMode)
+mxScroll->SetStyle((mxScroll->GetStyle() & ~WB_VERT) | WB_HORZ);
+else
+mxScroll->SetStyle((mxScroll->GetStyle() & ~WB_HORZ) | WB_VERT);
+LayoutOrPaintContents(nullptr);
+Invalidate();
 }
 
 /**
@@ -277,16 +285,17 @@ void SmElementsControl::setVerticalMode(bool 
bVerticalMode)
  **/
 void SmElementsControl::LayoutOrPaintContents(vcl::RenderContext *pContext)
 {
-const sal_Int32 nScrollbarWidth = 
GetSettings().GetStyleSettings().GetScrollBarSize();
+const sal_Int32 nScrollbarSize = 
GetSettings().GetStyleSettings().GetScrollBarSize();
+const sal_Int32 nControlHeight = GetOutputSizePixel().Height()
+- (pContext && mbVerticalMode && 
mxScroll->IsVisible() ? nScrollbarSize : 0);
 const sal_Int32 nControlWidth = GetOutputSizePixel().Width()
-- (pContext && mxScroll->IsVisible() ? 
nScrollbarWidth : 0);
-const sal_Int32 nControlHeight = GetOutputSizePixel().Height();
+- (pContext && !mbVerticalMode && 
mxScroll->IsVisible() ? nScrollbarSize : 0);
 
 sal_Int32 boxX = maMaxElementDimensions.Width()  + 10;
 sal_Int32 boxY = maMaxElementDimensions.Height() + 10;
 
-sal_Int32 x = 0;
-sal_Int32 y = -mxScroll->GetThumbPos();
+sal_Int32 x = mbVerticalMode ? -mxScroll->GetThumbPos() : 0;
+sal_Int32 y = !mbVerticalMode ? -mxScroll->GetThumbPos() : 0;
 
 sal_Int32 perLine = 0;
 
@@ -294,11 +303,8 @@ void 
SmElementsControl::LayoutOrPaintContents(vcl::RenderContext *pContext)
 perLine = nControlHeight / boxY;
 else
 perLine = nControlWidth / boxX;
-
 if (perLine <= 0)
-{
 perLine = 1;
-}
 
 if (mbVerticalMode)
 boxY = nControlHeight / perLine;
@@ -392,26 +398,46 @@ void 
SmElementsControl::LayoutOrPaintContents(vcl::RenderContext *pContext)
 else
 mbFirstPaintAfterLayout = true;
 
-sal_Int32 nTotalControlHeight = y + boxY + mxScroll->GetThumbPos();
-if (nTotalControlHeight > GetOutputSizePixel().Height())
+if (mbVerticalMode)
 {
-mxScroll->SetRangeMax(nTotalControlHeight);
-mxScroll->SetPosSizePixel(Point(nControlWidth, 0), 
Size(nScrollbarWidth, nControlHeight));
-mxScroll->SetVisibleSize(nControlHeight);
-mxScroll->SetPageSize(nControlHeight);
-mxScroll->Show();
+sal_Int32 nTotalControlWidth = x + boxX + mxScroll->GetThumbPos();
+if (nTotalControlWidth > GetOutputSizePixel().Width())
+{
+mxScroll->SetRangeMax(nTotalControlWidth);
+mxScroll->SetPosSizePixel(Point(0, nControlHeight), 
Size(nControlWidth, nScrollbarSize));
+mxScroll->SetVisibleSize(nControlWidth);
+mxScroll->SetPageSize(nControlWidth);
+mxScroll->Show();
+}
+else
+{
+mxScroll->SetThumbPos(0);
+mxScroll->Hide();
+}
 }
 else
 {
-mxScroll->SetThumbPos(0);
-mxScroll->Hide();
+sal_Int32 nTotalControlHeight = y + boxY + mxScroll->GetThumbPos();
+if (nTotalControlHeight > GetOutputSizePixel().Height())
+{
+mxScroll->SetRangeMax(nTotalControlHeight);
+mxScroll->SetPosSizePixel(Point(nControlWidth, 0), 
Size(nScrollbarSize, nControlHeight));
+mxScroll->SetVisibleSize(nControlHeight);
+mxScroll->SetPageSize(nControlHeight);
+mxScroll->Show();
+}
+else
+{
+mxScroll->SetThumbPos(0);
+mxScroll->Hide();
+}
 }
 }
 
 void SmElementsControl::Resize()
 {
- Window::Resize();
- LayoutOrPaintContents(nullptr);
+Window::Resize();
+LayoutOrPaintContents(nullptr);
 }
 
 void SmElementsControl::ApplySettings(vcl::RenderContext& rRenderContext)
@@ 

[Libreoffice-commits] core.git: 2 commits - include/vcl vcl/source

2019-05-22 Thread Jan-Marek Glogowski (via logerrit)
 include/vcl/toolbox.hxx|6 ++
 vcl/source/control/edit.cxx|   21 
 vcl/source/control/imp_listbox.cxx |   28 ++-
 vcl/source/control/prgsbar.cxx |8 ---
 vcl/source/window/status.cxx   |7 --
 vcl/source/window/toolbox.cxx  |   87 -
 6 files changed, 37 insertions(+), 120 deletions(-)

New commits:
commit 6f1c83b3a84705b8efb4745d8c6c62025ea48f37
Author: Jan-Marek Glogowski 
AuthorDate: Wed May 22 17:18:06 2019 +0200
Commit: Jan-Marek Glogowski 
CommitDate: Wed May 22 23:01:32 2019 +0200

VCL refactor duplicate code in Toolbox

Moves duplicate code from ImplInitSettings and ApplySettings into
their own functions.

Change-Id: I65b5a052b171a661ee22762e373745c28779a9e9
Reviewed-on: https://gerrit.libreoffice.org/72790
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 

diff --git a/include/vcl/toolbox.hxx b/include/vcl/toolbox.hxx
index 115b9e32261d..19e02a0d85e7 100644
--- a/include/vcl/toolbox.hxx
+++ b/include/vcl/toolbox.hxx
@@ -40,6 +40,7 @@ struct ImplToolItem;
 struct ImplToolBoxPrivateData;
 class  PopupMenu;
 class VclMenuEvent;
+class StyleSettings;
 
 #define TOOLBOX_STYLE_FLAT  (sal_uInt16(0x0004))
 
@@ -251,12 +252,15 @@ public:
 SAL_DLLPRIVATE ImplToolItems::size_type ImplCalcLines( long nToolSize ) 
const;
 SAL_DLLPRIVATE sal_uInt16 ImplTestLineSize( const Point& rPos ) const;
 SAL_DLLPRIVATE void ImplLineSizing( const Point& rPos, tools::Rectangle& 
rRect, sal_uInt16 nLineMode );
-static SAL_DLLPRIVATE ImplToolItems::size_type ImplFindItemPos( const 
ImplToolItem* pItem, const ImplToolItems& rList );
+SAL_DLLPRIVATE static ImplToolItems::size_type ImplFindItemPos( const 
ImplToolItem* pItem, const ImplToolItems& rList );
 SAL_DLLPRIVATE void ImplDrawMenuButton(vcl::RenderContext& rRenderContext, 
bool bHighlight);
 SAL_DLLPRIVATE void ImplDrawButton(vcl::RenderContext& rRenderContext, 
const tools::Rectangle , sal_uInt16 highlight, bool bChecked, bool 
bEnabled, bool bIsWindow);
 SAL_DLLPRIVATE ImplToolItems::size_type ImplCountLineBreaks() const;
 SAL_DLLPRIVATE ImplToolBoxPrivateData* ImplGetToolBoxPrivateData() const { 
return mpData.get(); }
 
+SAL_DLLPRIVATE void ApplyBackgroundSettings(vcl::RenderContext&, const 
StyleSettings&);
+SAL_DLLPRIVATE void ApplyForegroundSettings(vcl::RenderContext&, const 
StyleSettings&);
+
 protected:
 virtual void ApplySettings(vcl::RenderContext& rRenderContext) override;
 void SetCurItemId(sal_uInt16 nSet)
diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx
index 6ff26a004ad5..c2dfb8567296 100644
--- a/vcl/source/window/toolbox.cxx
+++ b/vcl/source/window/toolbox.cxx
@@ -1176,19 +1176,8 @@ void ToolBox::ImplInit( vcl::Window* pParent, WinBits 
nStyle )
 ImplInitSettings(true, true, true);
 }
 
-void ToolBox::ApplySettings(vcl::RenderContext& rRenderContext)
+void ToolBox::ApplyForegroundSettings(vcl::RenderContext& rRenderContext, 
const StyleSettings& rStyleSettings)
 {
-mpData->mbNativeButtons = 
rRenderContext.IsNativeControlSupported(ControlType::Toolbar, 
ControlPart::Button);
-
-const StyleSettings& rStyleSettings = 
rRenderContext.GetSettings().GetStyleSettings();
-
-// Font
-vcl::Font aFont = rStyleSettings.GetToolFont();
-if (IsControlFont())
-aFont.Merge(GetControlFont());
-SetZoomedPointFont(rRenderContext, aFont);
-
-// ControlForeground
 Color aColor;
 if (IsControlForeground())
 aColor = GetControlForeground();
@@ -1198,11 +1187,13 @@ void ToolBox::ApplySettings(vcl::RenderContext& 
rRenderContext)
 aColor = rStyleSettings.GetWindowTextColor();
 rRenderContext.SetTextColor(aColor);
 rRenderContext.SetTextFillColor();
+}
 
+void ToolBox::ApplyBackgroundSettings(vcl::RenderContext& rRenderContext, 
const StyleSettings& rStyleSettings)
+{
 if (IsControlBackground())
 {
-aColor = GetControlBackground();
-SetBackground( aColor );
+rRenderContext.SetBackground(GetControlBackground());
 SetPaintTransparent(false);
 SetParentClipMode();
 }
@@ -1220,11 +1211,11 @@ void ToolBox::ApplySettings(vcl::RenderContext& 
rRenderContext)
 }
 else
 {
+Color aColor;
 if (Window::GetStyle() & WB_3DLOOK)
 aColor = rStyleSettings.GetFaceColor();
 else
 aColor = rStyleSettings.GetWindowColor();
-
 rRenderContext.SetBackground(aColor);
 SetPaintTransparent(false);
 SetParentClipMode();
@@ -1232,6 +1223,17 @@ void ToolBox::ApplySettings(vcl::RenderContext& 
rRenderContext)
 }
 }
 
+void ToolBox::ApplySettings(vcl::RenderContext& rRenderContext)
+{
+mpData->mbNativeButtons = 
rRenderContext.IsNativeControlSupported(ControlType::Toolbar, 
ControlPart::Button);
+
+const StyleSettings& 

[Libreoffice-commits] core.git: include/vcl vcl/source

2019-05-22 Thread Jan-Marek Glogowski (via logerrit)
 include/vcl/texteng.hxx  |3 +
 include/vcl/vclmedit.hxx |5 ++
 vcl/source/edit/texteng.cxx  |7 ++--
 vcl/source/edit/vclmedit.cxx |   74 ---
 4 files changed, 31 insertions(+), 58 deletions(-)

New commits:
commit cc223fa12a61ba0e580b884386a7f5d7efd0541f
Author: Jan-Marek Glogowski 
AuthorDate: Thu May 16 01:25:19 2019 +
Commit: Jan-Marek Glogowski 
CommitDate: Wed May 22 23:00:45 2019 +0200

VCL keep / return the original set TextEngine font

TextEngine::SetFont copies the font parameter and then modifies
its color, transparency, fill color and alignment, so passing the
same font again will not be detected as the same font.

Therefore this patch stores the original font in addition to the
modified one and also returns that one on the GetFont call.

This allows us to merge the font setup in VclMultiLineEdit's
ImplInitSettings and ApplySettings into a common function.

Change-Id: I618d283ecd0ae14faf9b87a3aceec6ca1c37b526
Reviewed-on: https://gerrit.libreoffice.org/72788
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 

diff --git a/include/vcl/texteng.hxx b/include/vcl/texteng.hxx
index 7e6c9d452590..95da903bc1d4 100644
--- a/include/vcl/texteng.hxx
+++ b/include/vcl/texteng.hxx
@@ -106,6 +106,7 @@ class VCL_DLLPUBLIC TextEngine : public SfxBroadcaster
 std::unique_ptr mpLocaleDataWrapper;
 
 vcl::Font   maFont;
+vcl::Font   maOrigFont;  // original font from SetFont
 Color   maTextColor;
 
 sal_Int32   mnMaxTextLen;
@@ -220,7 +221,7 @@ public:
 sal_Int32   GetTextLen( const TextSelection& rSel ) const;
 
 voidSetFont( const vcl::Font& rFont );
-const vcl::Font&GetFont() const { return maFont; }
+const vcl::Font&GetFont() const { return maOrigFont; }
 
 voidSetLeftMargin( sal_uInt16 n );
 
diff --git a/include/vcl/vclmedit.hxx b/include/vcl/vclmedit.hxx
index d52d040d028e..23381f5f8443 100644
--- a/include/vcl/vclmedit.hxx
+++ b/include/vcl/vclmedit.hxx
@@ -98,7 +98,10 @@ protected:
 TextView*   GetTextView() const;
 ExtTextEngine*  GetTextEngine() const;
 
-virtual void ApplySettings(vcl::RenderContext& rRenderContext) override;
+void ApplySettings(vcl::RenderContext&) override;
+void ApplyBackgroundSettings(vcl::RenderContext&, const StyleSettings&);
+void ApplyFontSettings(vcl::RenderContext&, const StyleSettings&);
+
 public:
 VclMultiLineEdit( vcl::Window* pParent,
   WinBits nWinStyle );
diff --git a/vcl/source/edit/texteng.cxx b/vcl/source/edit/texteng.cxx
index 097305df51c7..b6835dbc07a2 100644
--- a/vcl/source/edit/texteng.cxx
+++ b/vcl/source/edit/texteng.cxx
@@ -170,8 +170,9 @@ void TextEngine::SetActiveView( TextView* pTextView )
 
 void TextEngine::SetFont( const vcl::Font& rFont )
 {
-if ( rFont == maFont )
+if (rFont == maOrigFont)
 return;
+maOrigFont = rFont;
 
 maFont = rFont;
 // #i40221# As the font's color now defaults to transparent (since i35764)
@@ -206,9 +207,9 @@ void TextEngine::SetFont( const vcl::Font& rFont )
 for ( auto nView = mpViews->size(); nView; )
 {
 TextView* pView = (*mpViews)[ --nView ];
-pView->GetWindow()->SetInputContext( InputContext( GetFont(), 
!pView->IsReadOnly() ? InputContextFlags::Text|InputContextFlags::ExtText : 
InputContextFlags::NONE ) );
+pView->GetWindow()->SetInputContext(InputContext(maFont, 
!pView->IsReadOnly()
+? InputContextFlags::Text|InputContextFlags::ExtText : 
InputContextFlags::NONE));
 }
-
 }
 
 void TextEngine::SetMaxTextLen( sal_Int32 nLen )
diff --git a/vcl/source/edit/vclmedit.cxx b/vcl/source/edit/vclmedit.cxx
index 9a6d6d018ea9..1419602fa34b 100644
--- a/vcl/source/edit/vclmedit.cxx
+++ b/vcl/source/edit/vclmedit.cxx
@@ -913,36 +913,8 @@ WinBits VclMultiLineEdit::ImplInitStyle( WinBits nStyle )
 return nStyle;
 }
 
-void VclMultiLineEdit::ApplySettings(vcl::RenderContext& rRenderContext)
+void VclMultiLineEdit::ApplyBackgroundSettings(vcl::RenderContext& 
rRenderContext, const StyleSettings& rStyleSettings)
 {
-const StyleSettings& rStyleSettings = 
rRenderContext.GetSettings().GetStyleSettings();
-
-// The Font has to be adjusted, as the TextEngine does not take care of
-// TextColor/Background
-
-Color aTextColor = rStyleSettings.GetFieldTextColor();
-if (IsControlForeground())
-aTextColor = GetControlForeground();
-
-if (!IsEnabled())
-aTextColor = rStyleSettings.GetDisableColor();
-
-vcl::Font aFont = rStyleSettings.GetFieldFont();
-aFont.SetTransparent(IsPaintTransparent());
-ApplyControlFont(rRenderContext, aFont);
-
-vcl::Font theFont = rRenderContext.GetFont();
-theFont.SetColor(aTextColor);
-if (IsPaintTransparent())
-

[Libreoffice-bugs] [Bug 125310] DOCX Change tracking: deleting paragraph end mark inserts a page break

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

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-commits] core.git: dbaccess/source

2019-05-22 Thread Xisco Fauli (via logerrit)
 dbaccess/source/ui/dlg/generalpage.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit 9b6a9a1f50a6d7326e97b02618e9bd5e44fb5832
Author: Xisco Fauli 
AuthorDate: Wed May 22 16:17:45 2019 +0200
Commit: Xisco Faulí 
CommitDate: Wed May 22 22:29:16 2019 +0200

tdf#124951: Enable children depending on parent

Change-Id: I221b7ae202d6dbd08d0496561652b2471b093b46
Reviewed-on: https://gerrit.libreoffice.org/72783
Reviewed-by: Noel Grandin 
Tested-by: Jenkins
Reviewed-by: Xisco Faulí 

diff --git a/dbaccess/source/ui/dlg/generalpage.cxx 
b/dbaccess/source/ui/dlg/generalpage.cxx
index a0284ea885f6..5da530c6b201 100644
--- a/dbaccess/source/ui/dlg/generalpage.cxx
+++ b/dbaccess/source/ui/dlg/generalpage.cxx
@@ -675,6 +675,10 @@ namespace dbaui
 {
 m_pEmbeddedDBType->Enable(m_pRB_CreateDatabase->IsChecked());
 m_pFT_EmbeddedDBLabel->Enable(m_pRB_CreateDatabase->IsChecked());
+m_pDatasourceType->Enable(m_pRB_ConnectDatabase->IsChecked());
+
m_pPB_OpenDatabase->Enable(m_pRB_OpenExistingDatabase->IsChecked());
+
m_pFT_DocListLabel->Enable(m_pRB_OpenExistingDatabase->IsChecked());
+
m_pLB_DocumentList->Enable(m_pRB_OpenExistingDatabase->IsChecked());
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125310] DOCX Change tracking: deleting paragraph end mark inserts a page break

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

--- Comment #12 from Commit Notification 
 ---
László Németh committed a patch related to this issue.
It has been pushed to "libreoffice-6-2":

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

tdf#125310 change tracking: don't copy page break

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-commits] core.git: Branch 'libreoffice-6-2' - sw/qa sw/source

2019-05-22 Thread László Németh (via logerrit)
 sw/qa/extras/uiwriter/data2/tdf125310.fodt|   23 ++
 sw/qa/extras/uiwriter/uiwriter2.cxx   |   40 ++
 sw/source/core/doc/DocumentRedlineManager.cxx |2 -
 3 files changed, 64 insertions(+), 1 deletion(-)

New commits:
commit 0bc56f3081a1c95efd9c5e40ae6a957bf4095aa9
Author: László Németh 
AuthorDate: Fri May 17 12:40:19 2019 +0200
Commit: Xisco Faulí 
CommitDate: Wed May 22 22:29:38 2019 +0200

tdf#125310 change tracking: don't copy page break

at paragraph join, because file saving or changing
to Hide Changes mode don't affect this. Also
adding page breaks to every paragraph of a deletion
is much more annoying, than helpful.

See also commit 1bbbe57dfc0b43d6b5444798d77dcdf5e4e76e49
"change tracking: show layout changes at paragraph join"

Reviewed-on: https://gerrit.libreoffice.org/72469
Tested-by: Jenkins
Reviewed-by: László Németh 

 Conflicts:
sw/qa/extras/uiwriter/uiwriter2.cxx

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

diff --git a/sw/qa/extras/uiwriter/data2/tdf125310.fodt 
b/sw/qa/extras/uiwriter/data2/tdf125310.fodt
new file mode 100644
index ..cf204e698223
--- /dev/null
+++ b/sw/qa/extras/uiwriter/data2/tdf125310.fodt
@@ -0,0 +1,23 @@
+
+http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
+  
+
+  
+  
+
+  
+  
+
+  
+
+  
+  
+
+  
+  
+
+  This paragraph has 
got a page break.
+  This hasn’t.
+
+  
+
diff --git a/sw/qa/extras/uiwriter/uiwriter2.cxx 
b/sw/qa/extras/uiwriter/uiwriter2.cxx
index cafe416f23a6..ebcdbafa1c80 100644
--- a/sw/qa/extras/uiwriter/uiwriter2.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter2.cxx
@@ -25,6 +25,7 @@
 #include 
 #include 
 #include 
+#include 
 
 namespace
 {
@@ -678,4 +679,43 @@ void SwUiWriterTest2::testDocxAttributeTableExport()
 
 CPPUNIT_TEST_SUITE_REGISTRATION(SwUiWriterTest2);
 
+CPPUNIT_TEST_FIXTURE(SwUiWriterTest2, testTdf125310)
+{
+load(DATA_DIRECTORY, "tdf125310.fodt");
+
+SwXTextDocument* pTextDoc = 
dynamic_cast(mxComponent.get());
+CPPUNIT_ASSERT(pTextDoc);
+
+CPPUNIT_ASSERT_EQUAL(OUString("Heading 1"),
+ getProperty(getParagraph(1), 
"ParaStyleName"));
+CPPUNIT_ASSERT_EQUAL(OUString("Standard"),
+ getProperty(getParagraph(2), 
"ParaStyleName"));
+CPPUNIT_ASSERT_EQUAL(1, getPages());
+
+// turn on red-lining and show changes
+SwDoc* pDoc = pTextDoc->GetDocShell()->GetDoc();
+pDoc->getIDocumentRedlineAccess().SetRedlineFlags(RedlineFlags::On | 
RedlineFlags::ShowDelete
+  | 
RedlineFlags::ShowInsert);
+CPPUNIT_ASSERT_MESSAGE("redlining should be on",
+   pDoc->getIDocumentRedlineAccess().IsRedlineOn());
+CPPUNIT_ASSERT_MESSAGE(
+"redlines should be visible",
+
IDocumentRedlineAccess::IsShowChanges(pDoc->getIDocumentRedlineAccess().GetRedlineFlags()));
+
+// paragraph join
+SwWrtShell* pWrtShell = pTextDoc->GetDocShell()->GetWrtShell();
+

[Libreoffice-bugs] [Bug 124951] 'Open' button on Database Wizard dialog is enabled when it should be disabled

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

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

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

tdf#124951: Enable children depending on parent

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 124951] 'Open' button on Database Wizard dialog is enabled when it should be disabled

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

Xisco Faulí  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REOPENED|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 125210] KDE5: Can't to dock Formula editor by Ctrl+double click in Math

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

--- Comment #7 from Katarina Behrens (CIB)  ---
I can reproduce this 100% but only with clean user profile i.e. `soffice
--safe-mode --math`. 

Also it is not Math formula editor, any docking window (such as Math elements
panel, sidebar, Basic variable watch,...) misbehaves like this

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

[Libreoffice-bugs] [Bug 125128] Option's AutoCaption preference should show Above as default position of table captions (again)

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

Dieter Praas  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=40
   ||457,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||5032
 CC||dgp-m...@gmx.de
 Whiteboard| QA:needsComment|
   Keywords||possibleRegression
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

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

Version: 6.3.0.0.alpha1+ (x64)
Build ID: e92dcfdc7bd7b237e0bee26ff226a102d9e8e766
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-05-14_00:00:57
Locale: en-US (de_DE); 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 125271] Inserting this .mp4 file in impress leads to a CRASH

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

--- Comment #24 from Caolán McNamara  ---
didn't really help. I imagine the crash is incidental on forced-exit after the
BadWindow

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

[Libreoffice-bugs] [Bug 91724] libreoffice documentation is not completely accessible for blind people

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

--- Comment #9 from Julien Nabet  ---
Re reading this bugtracker some years after, I don't understand this part:
"Use text selection cursor in read-only text documents is only for reading and
does not work for editing and writing"
We're talking about documentation so it's not about editing and writing since
documentation is read-only.
If Sophie's suggestion works for documentation which is read-only, the pb
should be solved.
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 72604] Fax-Wizard - Personal Data are only partial adopted

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

Julien Nabet  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=75
   ||218
 CC||tima...@gmail.com,
   ||ti...@fsf.hu

--- Comment #16 from Julien Nabet  ---
I wonder if it could be same root cause as tdf#75218 put in See Also.

See
https://cgit.freedesktop.org/libreoffice/core/commit/?id=1b7c88ab4d6aaa79c484bcb179e5b2f296654462

Andras: any thoughts here? (didn't know what email to choose, I put both).

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

[Libreoffice-bugs] [Bug 75218] Letter Wizard does not respect locale anymore

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

Julien Nabet  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 93840] flickering drop-down list in the sidebar

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

Telesto  changed:

   What|Removed |Added

 CC||vmik...@collabora.com

--- Comment #18 from Telesto  ---
@Miklos 
You're commits one avoiding flickering are really appreciated. This is probably
another case. Especially comment 1 is quite annoying

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

[Libreoffice-bugs] [Bug 125436] Dialog box disabled to choose between Firebird or hsqldb embedded when creating DB

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

Julien Nabet  changed:

   What|Removed |Added

 Status|VERIFIED|CLOSED

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

[Libreoffice-bugs] [Bug 125436] Dialog box disabled to choose between Firebird or hsqldb embedded when creating DB

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

Julien Nabet  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #5 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today (which includes the
patch), I don't reproduce this.
Thank you Noel and Xisco! :-)

-- 
You are receiving this mail because:
You are the 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-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125271

Julien Nabet  changed:

   What|Removed |Added

 Attachment #151581|0   |1
is obsolete||

-- 
You are receiving this mail because:
You are the 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-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125271

--- Comment #23 from Julien Nabet  ---
Created attachment 151606
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151606=edit
bt with debug symbols (gtk3)

Here's the bt on pc Debian x86-64 with master sources updated today +
enable-dbgutil + gtk3 + export SAL_SYNCHRONIZE=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

[Libreoffice-bugs] [Bug 93840] flickering drop-down list in the sidebar

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

--- Comment #17 from Telesto  ---
Repro commont 0
Version: 6.3.0.0.alpha1+
Build ID: 959e8ae7ea33ce94dd80ee8ea172b6db64593873
CPU threads: 4; OS: Windows 6.3; UI render: default; VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-05-21_23:35:12
Locale: nl-NL (nl_NL); UI-Language: en-US
Calc: CL

Expanding the fill color picker and hoovering the different items is also
flickering

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

2019-05-22 Thread Tor Lillqvist (via logerrit)
 oovbaapi/ooo/vba/word/XDocument.idl |3 ++-
 sw/source/ui/vba/vbadocument.cxx|   16 
 sw/source/ui/vba/vbadocument.hxx|1 +
 3 files changed, 19 insertions(+), 1 deletion(-)

New commits:
commit 41f996044ad752faa19ed6cde4b659d38e74ea07
Author: Tor Lillqvist 
AuthorDate: Wed May 22 19:30:37 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Wed May 22 19:36:45 2019 +0300

Add ooo.vba.word.XDocument.SavePreviewPngAs() and implement

This is for COLEAT's internal use.

Change-Id: If1ac2a5b251129e4431d3c0bde82529d6bdc7ccc

diff --git a/oovbaapi/ooo/vba/word/XDocument.idl 
b/oovbaapi/ooo/vba/word/XDocument.idl
index 888287b34e1b..63e4535e9075 100644
--- a/oovbaapi/ooo/vba/word/XDocument.idl
+++ b/oovbaapi/ooo/vba/word/XDocument.idl
@@ -63,7 +63,8 @@ interface XDocument
 any Frames( [in] any index );
 void SaveAs2000( [in] any FileName, [in] any FileFormat, [in] any 
LockComments, [in] any Password, [in] any AddToRecentFiles, [in] any 
WritePassword, [in] any ReadOnlyRecommended, [in] any EmbedTrueTypeFonts, [in] 
any SaveNativePictureFormat, [in] any SaveFormsData, [in] any SaveAsAOCELetter 
);
 void SaveAs( [in] any FileName, [in] any FileFormat, [in] any 
LockComments, [in] any Password, [in] any AddToRecentFiles, [in] any 
WritePassword, [in] any ReadOnlyRecommended, [in] any EmbedTrueTypeFonts, [in] 
any SaveNativePictureFormat, [in] any SaveFormsData, [in] any SaveAsAOCELetter, 
[in] any Encoding, [in] any InsertLineBreaks, [in] any AllowSubstitutions, [in] 
any LineEnding, [in] any AddBiDiMarks );
-
+// This is a COLEAT-specific addition
+void SavePreviewPngAs( [in] any FileName );
 };
 
 }; }; };
diff --git a/sw/source/ui/vba/vbadocument.cxx b/sw/source/ui/vba/vbadocument.cxx
index f6a77a1ddaf3..d9aec575b6c4 100644
--- a/sw/source/ui/vba/vbadocument.cxx
+++ b/sw/source/ui/vba/vbadocument.cxx
@@ -517,6 +517,22 @@ SwVbaDocument::SaveAs( const uno::Any& FileName, const 
uno::Any& FileFormat, con
 return SaveAs2000( FileName, FileFormat, LockComments, Password, 
AddToRecentFiles, WritePassword, ReadOnlyRecommended, EmbedTrueTypeFonts, 
SaveNativePictureFormat, SaveFormsData, SaveAsAOCELetter );
 }
 
+void SAL_CALL
+SwVbaDocument::SavePreviewPngAs( const uno::Any& FileName )
+{
+OUString sFileName;
+FileName >>= sFileName;
+OUString sURL;
+osl::FileBase::getFileURLFromSystemPath( sFileName, sURL );
+
+uno::Sequence<  beans::PropertyValue > storeProps(1);
+storeProps[0].Name = "FilterName" ;
+storeProps[0].Value <<= OUString("writer_png_Export");
+
+uno::Reference< frame::XStorable > xStor( getModel(), uno::UNO_QUERY_THROW 
);
+xStor->storeToURL( sURL, storeProps );
+}
+
 uno::Any
 SwVbaDocument::getControlShape( const OUString& sName )
 {
diff --git a/sw/source/ui/vba/vbadocument.hxx b/sw/source/ui/vba/vbadocument.hxx
index c5a4e0d9d8b0..02d411cf65bf 100644
--- a/sw/source/ui/vba/vbadocument.hxx
+++ b/sw/source/ui/vba/vbadocument.hxx
@@ -90,6 +90,7 @@ public:
 virtual css::uno::Any SAL_CALL Frames( const css::uno::Any& aIndex ) 
override;
 virtual void SAL_CALL SaveAs2000( const css::uno::Any& FileName, const 
css::uno::Any& FileFormat, const css::uno::Any& LockComments, const 
css::uno::Any& Password, const css::uno::Any& AddToRecentFiles, const 
css::uno::Any& WritePassword, const css::uno::Any& ReadOnlyRecommended, const 
css::uno::Any& EmbedTrueTypeFonts, const css::uno::Any& 
SaveNativePictureFormat, const css::uno::Any& SaveFormsData, const 
css::uno::Any& SaveAsAOCELetter ) override;
 virtual void SAL_CALL SaveAs( const css::uno::Any& FileName, const 
css::uno::Any& FileFormat, const css::uno::Any& LockComments, const 
css::uno::Any& Password, const css::uno::Any& AddToRecentFiles, const 
css::uno::Any& WritePassword, const css::uno::Any& ReadOnlyRecommended, const 
css::uno::Any& EmbedTrueTypeFonts, const css::uno::Any& 
SaveNativePictureFormat, const css::uno::Any& SaveFormsData, const 
css::uno::Any& SaveAsAOCELetter, const css::uno::Any& Encoding, const 
css::uno::Any& InsertLineBreaks, const css::uno::Any& AllowSubstitutions, const 
css::uno::Any& LineEnding, const css::uno::Any& AddBiDiMarks ) override;
+virtual void SAL_CALL SavePreviewPngAs( const css::uno::Any& FileName ) 
override;
 
 // XInvocation
 virtual css::uno::Reference< css::beans::XIntrospectionAccess > SAL_CALL 
getIntrospection(  ) override;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Re: [ABANDONED] Re: Build fail on Libgpg-error on Windows with gawk 5.0

2019-05-22 Thread Julien Nabet

On 22/05/2019 17:45, Luke Benes wrote:

https://dev-www.libreoffice.org/src/libgpg-error-1.36.tar.bz2

I'm getting:403 Forbidden Error
...


No pb here to download it. Perhaps it was just a temporary pb, do you 
still reproduce this?


Julien

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

[Libreoffice-bugs] [Bug 107642] [META] Paragraph dialog bugs and enhancements

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

Dieter Praas  changed:

   What|Removed |Added

 Depends on||124888


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124888
[Bug 124888] Writer – Aspect Ratio Incorrect When Making Image Fit Paragraph
Width
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124888] Writer – Aspect Ratio Incorrect When Making Image Fit Paragraph Width

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

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval
 Whiteboard|QA:needsComment |
 Blocks||107642
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #9 from Dieter Praas  ---
I confirm the behaviour with

Version: 6.3.0.0.alpha1+ (x64)
Build ID: e92dcfdc7bd7b237e0bee26ff226a102d9e8e766
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-05-14_00:00:57
Locale: en-US (de_DE); UI-Language: en-US
Calc: threaded

I assume the reason for this behaviour is, that LO doesn't offer percentages
with decimal point.

=> Adding design team for input


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107642
[Bug 107642] [META] Paragraph 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-ux-advise] [Bug 124888] Writer – Aspect Ratio Incorrect When Making Image Fit Paragraph Width

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

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval
 Whiteboard|QA:needsComment |
 Blocks||107642
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #9 from Dieter Praas  ---
I confirm the behaviour with

Version: 6.3.0.0.alpha1+ (x64)
Build ID: e92dcfdc7bd7b237e0bee26ff226a102d9e8e766
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-05-14_00:00:57
Locale: en-US (de_DE); UI-Language: en-US
Calc: threaded

I assume the reason for this behaviour is, that LO doesn't offer percentages
with decimal point.

=> Adding design team for input


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107642
[Bug 107642] [META] Paragraph dialog bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise

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

2019-05-22 Thread Miklos Vajna (via logerrit)
 vcl/source/window/menubarwindow.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bdac08d52f7f264a5d67723cae63533493b3f580
Author: Miklos Vajna 
AuthorDate: Wed May 22 14:51:07 2019 +0200
Commit: Miklos Vajna 
CommitDate: Wed May 22 20:34:21 2019 +0200

tdf#108909 vcl menu bar window: fix missing highlight on mouse over

Regression from commit 458a827e96523ac52d021f1fd3653b5a734940c0 (further
refactor Menu to use RenderContext, 2015-05-15), the problem was that
this highlight on the menu bar on mouse move was only part of the
incremental paint, never the full paint.

So when that commit removed incremental paint, we lost highlight on
mouse move (move only, click is there).

Later commit 843b9d5dba5098c2676491dda66bed31e57f4329 (VCL add support
for rollover menubars, 2016-09-22) added this code back, conditionally
for the case when there is not enough space for the menu bar
horizontally.

So fix the lack of highlight on plain mouse move by unconditionally
highlighting the rolled over item, even if there is enough horizontal
space.

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

diff --git a/vcl/source/window/menubarwindow.cxx 
b/vcl/source/window/menubarwindow.cxx
index 725de0794043..b32e38790cd4 100644
--- a/vcl/source/window/menubarwindow.cxx
+++ b/vcl/source/window/menubarwindow.cxx
@@ -946,7 +946,7 @@ void MenuBarWindow::Paint(vcl::RenderContext& 
rRenderContext, const tools::Recta
 
 if (nHighlightedItem != ITEMPOS_INVALID && pMenu && 
!pMenu->GetItemList()->GetDataFromPos(nHighlightedItem)->bHiddenOnGUI)
 HighlightItem(*pBuffer, nHighlightedItem);
-else if (ImplGetSVData()->maNWFData.mbRolloverMenubar && nRolloveredItem 
!= ITEMPOS_INVALID)
+else if (nRolloveredItem != ITEMPOS_INVALID)
 HighlightItem(*pBuffer, nRolloveredItem);
 
 // in high contrast mode draw a separating line on the lower edge
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 123375] Multi-line Calc cell split into one cell per original cell line when deleted and copied using Ctrl-X and Ctrl-V

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

--- Comment #10 from Buovjaga  ---
(In reply to johlson from comment #9)
> I am not clear as to the status of this report. I would like to reiterate
> that there is a bug. 
> 
> I don't understand what the *while in editing mode* comment is about. What I
> am try to do is edit the sheet, a logical impossibility in read-only mode.
> further don't understand what the two behaviours might be.

Edit mode is when you either double-click a cell or press F2, so you see the
text cursor blinking.

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

[Libreoffice-bugs] [Bug 125447] Tooltip displayed by Redo button changes from 'Redo' to 'Re~do' when the button is sensitive in Draw, Calc and Impress

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

Amr Ibrahim  changed:

   What|Removed |Added

Summary|Tooltip displayed by Redo   |Tooltip displayed by Redo
   |button changes from 'Redo'  |button changes from 'Redo'
   |to 'Re~do' when the button  |to 'Re~do' when the button
   |is sensitive|is sensitive in Draw, Calc
   ||and Impress

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

[Libreoffice-bugs] [Bug 125447] Tooltip displayed by Redo button changes from 'Redo' to 'Re~do' when the button is sensitive

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

Amr Ibrahim  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125447] New: Tooltip displayed by Redo button changes from 'Redo' to 'Re~do' when the button is sensitive

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

Bug ID: 125447
   Summary: Tooltip displayed by Redo button changes from 'Redo'
to 'Re~do' when the button is sensitive
   Product: LibreOffice
   Version: 6.2.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: amribrahim1...@hotmail.com

Steps:

1. Open Calc or Draw (Writer is fixed)
2. Write something
3. Press Undo
4. Hover on Redo button and look at the tooltip
5. Tooltip changes to 'Re~do'

Version: 6.2.3.2
Build ID: 1:6.2.3-0ubuntu0.18.04.1~lo1
CPU threads: 8; OS: Linux 4.18; UI render: default; VCL: gtk3; 
Locale: en-GB (en_GB.UTF-8); UI-Language: en-GB
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 125210] KDE5: Can't to dock Formula editor by Ctrl+double click in Math

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

--- Comment #6 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to Jan-Marek Glogowski from comment #5)
> (In reply to Roman Kuznetsov from comment #0)
> > but doesn't repro in 6.3 in windows, and in vanille with gtk3 and with kde5.
> > 
> > Ubuntu build problem?=(
> 
> Missed that. An Ubuntu build problem is unlikely, but if the TDF build
> works... But Vera also reproduced this bug with master, so hmmm ... are you
> both using Wayland?

I don't use wayland, I have Kubuntu 19.04 now

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

[Libreoffice-bugs] [Bug 125210] KDE5: Can't to dock Formula editor by Ctrl+double click in Math

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

--- Comment #5 from Jan-Marek Glogowski  ---
(In reply to Roman Kuznetsov from comment #0)
> but doesn't repro in 6.3 in windows, and in vanille with gtk3 and with kde5.
> 
> Ubuntu build problem?=(

Missed that. An Ubuntu build problem is unlikely, but if the TDF build works...
But Vera also reproduced this bug with master, so hmmm ... are you both using
Wayland?

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

[Libreoffice-bugs] [Bug 122538] EDITING Table - Index Design: Index isn't sortable any more

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

Julien Nabet  changed:

   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

  1   2   3   4   >