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

2019-07-14 Thread Samuel Mehrbrodt (via logerrit)
 sw/source/uibase/shells/drwtxtex.cxx |  352 ++-
 1 file changed, 183 insertions(+), 169 deletions(-)

New commits:
commit 349c525fd30121ad2148f6061d155815b8c83303
Author: Samuel Mehrbrodt 
AuthorDate: Fri Jul 12 09:32:56 2019 +0200
Commit: Samuel Mehrbrodt 
CommitDate: Mon Jul 15 07:51:03 2019 +0200

Fix formatting

This method had inconsistent indentation.
Fix this by formatting the method with clang-format rules.

Change-Id: I8ca33cac23563903606bc39e45019038618222e6
Reviewed-on: https://gerrit.libreoffice.org/75478
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git a/sw/source/uibase/shells/drwtxtex.cxx 
b/sw/source/uibase/shells/drwtxtex.cxx
index 14586437c680..16f5ca169daf 100644
--- a/sw/source/uibase/shells/drwtxtex.cxx
+++ b/sw/source/uibase/shells/drwtxtex.cxx
@@ -589,62 +589,71 @@ void SwDrawTextShell::Execute( SfxRequest  )
 
 void SwDrawTextShell::GetState(SfxItemSet& rSet)
 {
-if (!IsTextEdit())  // Otherwise sometimes crash!
+if (!IsTextEdit()) // Otherwise sometimes crash!
 return;
 
 OutlinerView* pOLV = pSdrView->GetTextEditOutlinerView();
 SfxWhichIter aIter(rSet);
 sal_uInt16 nWhich = aIter.FirstWhich();
 
-SfxItemSet aEditAttr( pOLV->GetAttribs() );
+SfxItemSet aEditAttr(pOLV->GetAttribs());
 const SfxPoolItem *pAdjust = nullptr, *pLSpace = nullptr, *pEscItem = 
nullptr;
 SvxAdjust eAdjust;
 int nLSpace;
 SvxEscapement nEsc;
 
-while(nWhich)
+while (nWhich)
 {
-sal_uInt16 nSlotId = GetPool().GetSlotId( nWhich );
+sal_uInt16 nSlotId = GetPool().GetSlotId(nWhich);
 bool bFlag = false;
-switch( nSlotId )
+switch (nSlotId)
 {
-case SID_LANGUAGE_STATUS://20412:
+case SID_LANGUAGE_STATUS: //20412:
 {
-SwLangHelper::GetLanguageStatus(pOLV,rSet);
+SwLangHelper::GetLanguageStatus(pOLV, rSet);
 nSlotId = 0;
 break;
 }
 
 case SID_THES:
 {
-OUStringaStatusVal;
-LanguageTypenLang = LANGUAGE_NONE;
-bool bIsLookUpWord = GetStatusValueForThesaurusFromContext( 
aStatusVal, nLang, pOLV->GetEditView() );
-rSet.Put( SfxStringItem( SID_THES, aStatusVal ) );
+OUString aStatusVal;
+LanguageType nLang = LANGUAGE_NONE;
+bool bIsLookUpWord
+= GetStatusValueForThesaurusFromContext(aStatusVal, nLang, 
pOLV->GetEditView());
+rSet.Put(SfxStringItem(SID_THES, aStatusVal));
 
 // disable "Thesaurus" context menu entry if there is nothing 
to look up
-uno::Reference< linguistic2::XThesaurus >  xThes( 
::GetThesaurus() );
-if (!bIsLookUpWord ||
-!xThes.is() || nLang == LANGUAGE_NONE || 
!xThes->hasLocale( LanguageTag::convertToLocale( nLang ) ))
-rSet.DisableItem( SID_THES );
+uno::Reference 
xThes(::GetThesaurus());
+if (!bIsLookUpWord || !xThes.is() || nLang == LANGUAGE_NONE
+|| !xThes->hasLocale(LanguageTag::convertToLocale(nLang)))
+rSet.DisableItem(SID_THES);
 
 //! avoid putting the same item as SfxBoolItem at the end of 
this function
 nSlotId = 0;
 break;
 }
 
-case SID_ATTR_PARA_ADJUST_LEFT: eAdjust = SvxAdjust::Left; goto 
ASK_ADJUST;
-case SID_ATTR_PARA_ADJUST_RIGHT:eAdjust = SvxAdjust::Right; goto 
ASK_ADJUST;
-case SID_ATTR_PARA_ADJUST_CENTER:   eAdjust = SvxAdjust::Center; goto 
ASK_ADJUST;
-case SID_ATTR_PARA_ADJUST_BLOCK:eAdjust = SvxAdjust::Block; goto 
ASK_ADJUST;
-ASK_ADJUST:
+case SID_ATTR_PARA_ADJUST_LEFT:
+eAdjust = SvxAdjust::Left;
+goto ASK_ADJUST;
+case SID_ATTR_PARA_ADJUST_RIGHT:
+eAdjust = SvxAdjust::Right;
+goto ASK_ADJUST;
+case SID_ATTR_PARA_ADJUST_CENTER:
+eAdjust = SvxAdjust::Center;
+goto ASK_ADJUST;
+case SID_ATTR_PARA_ADJUST_BLOCK:
+eAdjust = SvxAdjust::Block;
+goto ASK_ADJUST;
+ASK_ADJUST:
 {
-if( !pAdjust )
-aEditAttr.GetItemState( EE_PARA_JUST, false, );
+if (!pAdjust)
+aEditAttr.GetItemState(EE_PARA_JUST, false, );
 
-if( !pAdjust || IsInvalidItem( pAdjust ))
+if (!pAdjust || IsInvalidItem(pAdjust))
 {
-rSet.InvalidateItem( nSlotId );
+rSet.InvalidateItem(nSlotId);
 nSlotId = 0;
 }
 else
@@ -652,15 +661,15 @@ ASK_ADJUST:
   

[Libreoffice-bugs] [Bug 126310] FILEOPEN DOCX Two pages document containing WMF images appears as one page

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

--- Comment #10 from Gabor Kelemen  ---
Proposed patch: https://gerrit.libreoffice.org/#/c/75599/

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

[Libreoffice-bugs] [Bug 126226] CRASH: Adding comment to Track Change

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

--- Comment #8 from Gabor Kelemen  ---
(In reply to Xisco Faulí from comment #7)
> Introduced at some point in LibreOffice 4.2. The bisection points me to
> https://cgit.freedesktop.org/libreoffice/core/commit/
> ?id=b8002169336b6b7597d32755e41fa3dc2688539e, which is incorrect, see
> https://bugs.documentfoundation.org/show_bug.cgi?id=119241#c8, so the
> problem was introduced around that point...
> 
> Lowering severity...

I could crash even 4.0 but not 3.6 :)

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

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

2019-07-14 Thread Stephan Bergmann (via logerrit)
 sw/source/uibase/shells/basesh.cxx   |2 +-
 sw/source/uibase/shells/drawdlg.cxx  |6 --
 sw/source/uibase/shells/drwbassh.cxx |4 +++-
 sw/source/uibase/shells/frmsh.cxx|2 +-
 4 files changed, 9 insertions(+), 5 deletions(-)

New commits:
commit f4566911ea1e8877371b1f63a69d19014bda2bcb
Author: Stephan Bergmann 
AuthorDate: Sun Jul 14 15:14:09 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Mon Jul 15 07:30:22 2019 +0200

-Werror=deprecated

("implicit capture of ‘this’ via ‘[=]’ is deprecated in C++20"; but the
recommended replacement with [=,this] leads to "'this' cannot be explicitly
captured when the capture default is '='" failures in older C++ versions)

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

diff --git a/sw/source/uibase/shells/basesh.cxx 
b/sw/source/uibase/shells/basesh.cxx
index 156c969797d1..631c70f7a0bf 100644
--- a/sw/source/uibase/shells/basesh.cxx
+++ b/sw/source/uibase/shells/basesh.cxx
@@ -392,7 +392,7 @@ void SwBaseShell::ExecClpbrd(SfxRequest )
 pDlg->PreGetFormat(*aDataHelper);
 
 
-pDlg->StartExecuteAsync([=, ](sal_Int32 nResult){
+pDlg->StartExecuteAsync([aDataHelper, pDlg, , 
this](sal_Int32 nResult){
 if (nResult == RET_OK)
 {
 // Temporary variables, because the shell could 
already be
diff --git a/sw/source/uibase/shells/drawdlg.cxx 
b/sw/source/uibase/shells/drawdlg.cxx
index b7e6fbd5ee11..6229cbd173d3 100644
--- a/sw/source/uibase/shells/drawdlg.cxx
+++ b/sw/source/uibase/shells/drawdlg.cxx
@@ -98,7 +98,8 @@ void SwDrawShell::ExecDrawDlg(SfxRequest& rReq)
 
pDoc,
 
true));
 
-pDlg->StartExecuteAsync([=](sal_Int32 nResult){
+pDlg->StartExecuteAsync([bChanged, bHasMarked, pDoc, pDlg, pSh, 
pView, this](
+sal_Int32 nResult){
 if (nResult == RET_OK)
 {
 pSh->StartAction();
@@ -150,7 +151,8 @@ void SwDrawShell::ExecDrawDlg(SfxRequest& rReq)
 pObj,
 bHasMarked));
 
-pDlg->StartExecuteAsync([=](sal_Int32 nResult){
+pDlg->StartExecuteAsync([bChanged, bHasMarked, pDoc, pDlg, pSh, 
pView, this](
+sal_Int32 nResult){
 if (nResult == RET_OK)
 {
 pSh->StartAction();
diff --git a/sw/source/uibase/shells/drwbassh.cxx 
b/sw/source/uibase/shells/drwbassh.cxx
index 4cc10c9be1d1..409bcd94ac26 100644
--- a/sw/source/uibase/shells/drwbassh.cxx
+++ b/sw/source/uibase/shells/drwbassh.cxx
@@ -239,7 +239,9 @@ void SwDrawBaseShell::Execute(SfxRequest const )
 
 pDlg->SetInputSet(  );
 
-pDlg->StartExecuteAsync([=, ](sal_Int32 
nResult){
+pDlg->StartExecuteAsync([bCaption, bChanged, pDlg, 
pFrameFormat, pSdrView,
+ pSh, , this](
+sal_Int32 nResult){
 if (nResult == RET_OK)
 {
 SwFormatVertOrient 
aVOrientFinal(pFrameFormat->GetFormatAttr(RES_VERT_ORIENT));
diff --git a/sw/source/uibase/shells/frmsh.cxx 
b/sw/source/uibase/shells/frmsh.cxx
index 31f1cc9ff4d4..38e085f2442b 100644
--- a/sw/source/uibase/shells/frmsh.cxx
+++ b/sw/source/uibase/shells/frmsh.cxx
@@ -1356,7 +1356,7 @@ void SwFrameShell::ExecDrawDlgTextFrame(SfxRequest const 
& rReq)
 pDoc,
 false));
 
-pDlg->StartExecuteAsync([=](sal_Int32 nResult){
+pDlg->StartExecuteAsync([pDlg, this](sal_Int32 nResult){
 if(nResult == RET_OK)
 {
 // set attributes at FlyFrame
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Re: sw_uiwriter hangs in testDateFormFieldCurrentDateInvalidation

2019-07-14 Thread Kaganski Mike
On 14.07.2019 22:23, Jan-Marek Glogowski wrote:
> 
> If you want to debug Windows AnyInput handling, feel free
> to contact me on IRC (or even mail), if you have questions.

I have tried putting some tracing breakpoints to 
WinSalInstance::AnyInput, and I can say that at least when the process 
is already hung (emitting all those "ProcessEventsToIdle: 100500" 
warnings), the function isn't called at all.

-- 
Best regards,
Mike Kaganski
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

Infra call on Tue, Jul 16 at 16:30 UTC

2019-07-14 Thread Guilhem Moulin
Hi there,

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

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

See you there!
Cheers,
-- 
Guilhem.


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

[Libreoffice-bugs] [Bug 126161] SLIDESHOW: Greek letters in rotated formulas are not rendered correctly

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

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 126149] EDITING: Chart Wizard XY Scatter is plot not populating X-Values field

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

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 126370] calc: vslookup 0 is not false

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

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 126167] No safe mode launch icon on Linux

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

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 126370] calc: vslookup 0 is not false

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

--- Comment #5 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 121738] LibreOffice Report Writer module - I am getting incorrect values using the Accumulation function. When I delete field and replace with new one it increments the error h

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

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

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 116863] Drag and drop text doesnt retain its formatting

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

--- Comment #10 from QA Administrators  ---
Dear Yousuf Philips (jay) (retired),

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 126146] Pasting to text box keeps pasting old contents in certain scenarios

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

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 117948] After hiding a column, saving and reopening, line is moved to a different column

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

--- Comment #8 from QA Administrators  ---
Dear Hidenori Ozaki,

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 122740] No way to change the text language - it's stuck on US English

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

--- Comment #2 from QA Administrators  ---
Dear Szasz-Fabian Jozsef,

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 98292] Automatically create a equation if libreoffice encounters MathML on Drag-and-Drop

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

--- Comment #9 from QA Administrators  ---
Dear Gunter Königsmann,

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 117889] UI: Selecting an item in a list box scrolls the content

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

--- Comment #2 from QA Administrators  ---
Dear Balint Fodor,

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 116849] JPEG export as selection crops too much (or compression makes it seem off)

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

--- Comment #5 from QA Administrators  ---
Dear Buovjaga,

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 66613] EDITING: sheet copied to another document does not retain a defined print range

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

--- Comment #14 from QA Administrators  ---
Dear rpr,

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 104058] REPORTBUILDER - Current setting not reflected in conditional formatting color widgets after close/reopen dialog

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

--- Comment #4 from QA Administrators  ---
Dear Mario Bianchi,

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 118445] attempt to link documents circularly freezes writer

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

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

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 77651] Highlight, cut & paste from a bullet list to same list changes indent of pasted line (moving line)

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

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

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 79026] Content of memo fields in MS Access tables get truncated in LibreOffice Base

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

--- Comment #15 from QA Administrators  ---
Dear Albrecht Müller,

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 104057] REPORTBUILDER - Mouse over on scrolled down rules in conditional formatting dialog always brings back top rules in view

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

--- Comment #11 from QA Administrators  ---
Dear Mario Bianchi,

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 66279] MathML export: use the operator dictionary

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

--- Comment #12 from QA Administrators  ---
Dear Frédéric Wang,

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 75930] IMPORT MathML: some characters are missing

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

--- Comment #9 from QA Administrators  ---
Dear Mike Kaganski,

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

2019-07-14 Thread Tamas Bunth (via logerrit)
 connectivity/source/drivers/firebird/PreparedStatement.cxx |   34 -
 connectivity/source/drivers/firebird/Util.hxx  |   16 +-
 2 files changed, 36 insertions(+), 14 deletions(-)

New commits:
commit cc09dc2480cae51233538f7eede78906f9a5a2c9
Author: Tamas Bunth 
AuthorDate: Sat Jul 13 14:19:15 2019 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Jul 15 03:50:34 2019 +0200

tdf#123591: Firebird: Fix setting double values

Handle numerical and decimal values separately. In order to do that
we have to indentify the exact type first. That can be achieved using
sqltype and sqlsubtype in Firebird API.

Change-Id: Ie664dead51bae5522ee53009cda1cddbe0d64b16
Reviewed-on: https://gerrit.libreoffice.org/75525
Reviewed-by: Tamás Bunth 
Tested-by: Tamás Bunth 
(cherry picked from commit a0d85d526c7a4407ac555a35730afd5003243bcb)
Reviewed-on: https://gerrit.libreoffice.org/75566
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/connectivity/source/drivers/firebird/PreparedStatement.cxx 
b/connectivity/source/drivers/firebird/PreparedStatement.cxx
index 737875e96b5a..69ce91f42da1 100644
--- a/connectivity/source/drivers/firebird/PreparedStatement.cxx
+++ b/connectivity/source/drivers/firebird/PreparedStatement.cxx
@@ -420,34 +420,44 @@ void SAL_CALL OPreparedStatement::setDouble(sal_Int32 
nIndex, double nValue)
 ensurePrepared();
 
 XSQLVAR* pVar = m_pInSqlda->sqlvar + (nIndex - 1);
-int dType = (pVar->sqltype & ~1); // drop flag bit for now
-
-// take decimal places into account, later on they are removed in 
makeNumericString
-// minus because firebird stores scale as a negative number
-int nDecimalCount = -pVar->sqlscale;
-sal_Int64 nDecimalCountExp = pow10Integer(nDecimalCount);
-
-nValue = static_cast(nValue * nDecimalCountExp);
+short dType = (pVar->sqltype & ~1); // drop flag bit for now
+short dSubType = pVar->sqlsubtype;
+// Assume it is a sub type of a number.
+if(dSubType < 0 || dSubType > 2)
+{
+::dbtools::throwSQLException(
+"Incorrect number sub type",
+::dbtools::StandardSQLState::INVALID_SQL_DATA_TYPE,
+*this);
+}
+// firebird stores scale as a negative number
+ColumnTypeInfo columnType{ dType, dSubType,
+static_cast(-pVar->sqlscale) };
 
 // Caller might try to set an integer type here. It makes sense to convert
 // it instead of throwing an error.
-switch(dType)
+switch(columnType.getSdbcType())
 {
-case SQL_SHORT:
+case DataType::SMALLINT:
 setValue< sal_Int16 >(nIndex,
 static_cast(nValue),
 dType);
 break;
-case SQL_LONG:
+case DataType::INTEGER:
 setValue< sal_Int32 >(nIndex,
 static_cast(nValue),
 dType);
 break;
-case SQL_INT64:
+case DataType::BIGINT:
 setValue< sal_Int64 >(nIndex,
 static_cast(nValue),
 dType);
 break;
+case DataType::NUMERIC:
+case DataType::DECIMAL:
+// take decimal places into account, later on they are removed in 
makeNumericString
+setObjectWithInfo(nIndex,Any{nValue}, columnType.getSdbcType(), 
columnType.getScale());
+break;
 default:
 setValue< double >(nIndex, nValue, SQL_DOUBLE); // TODO: 
SQL_D_FLOAT?
 }
diff --git a/connectivity/source/drivers/firebird/Util.hxx 
b/connectivity/source/drivers/firebird/Util.hxx
index 26929a9de162..f380ab6caab5 100644
--- a/connectivity/source/drivers/firebird/Util.hxx
+++ b/connectivity/source/drivers/firebird/Util.hxx
@@ -34,8 +34,10 @@ namespace connectivity
 Image = -9546
 };
 
-// Numeric and decimal types can be identified by their subtype
-// 1 for NUMERIC, 2 for DECIMAL
+/**
+ * Numeric and decimal types can be identified by their subtype in
+ * Firebird API. 1 for NUMERIC, 2 for DECIMAL.
+ */
 enum class NumberSubType {
 Other = 0,
 Numeric = 1,
@@ -49,6 +51,16 @@ private:
 short m_nScale;
 OUString m_sCharsetName;
 public:
+/**
+ * @param tType SQL type of column defined by Firebird (e.g.
+ * SQL_DOUBLE)
+ * @param aSubType SQL sub type as in firebird API. See
+ * NumberSubType.
+ * @param scale: Scale of the number. It is ignored in case it's 
not
+ * a number. Scale obtained from the Firebird API is negative, so
+ * that should be negated before passing to this constructor.
+ *
+ */
 explicit ColumnTypeInfo( short aType, short aSubType = 0,
 short nScale = 0, const OUString& sCharset = 

[Libreoffice-bugs] [Bug 126370] calc: vslookup 0 is not false

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

--- Comment #4 from Todd  ---
The document is full of private and proprietary information.  Give me a little
bit to recreate the document with Larry, Curry, and Moe as the principles.

In the mean time, this is the offending formula:

=VLOOKUP($A$7,$Pilots.$A$2:$Pilots.$B$21,MATCH($Pilots.B1,$Pilots.$A1:$Pilots.$B$1,0),FALSE())

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

[Libreoffice-bugs] [Bug 125767] Unable to drag and drop fields when creating a pivot table

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

--- Comment #9 from zeem...@gmail.com ---
Version: 6.3.0.1
Build ID: 41ac97386aba908b6db860cfb4cfe2da871886ae

Confirming that the non-functional drag & drop problem in CALC still exists in
the 6.3.0.1 AppImage package "LibreOffice-6.3.0.1-x86-64.AppImage" running on
Chrome OS 75 within the Crostini container.  

 Pivot Tables still cannot be created, which is rather crippling to a
spreadsheet program.  Seems that this issue crept into CALC between ver 6.1.3
and 6.1.6.  
(The bug exists in the stable ver 6.1.6 AppImage for LibreOffice)  

Per question posed in Comment 6 - I can confirm that drag and drop does not
appear to be working at all within CALC.  

I can drag a list of numbers and it expands, but I can't move or copy anything
within CALC using drag and drop.  


See my Comment #8 above for how to reproduce 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-commits] core.git: 2 commits - helpcontent2

2019-07-14 Thread LibreOfficiant (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3600ec48823cda1c408b2f21a906d1df273be5da
Author: LibreOfficiant 
AuthorDate: Wed Jul 3 19:43:26 2019 +0200
Commit: Gerrit Code Review 
CommitDate: Mon Jul 15 02:23:47 2019 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  - Python to Basic Help page

- Python x Basic inter-language calls
- Dialog handlers with Basic or Python

Amend 1
- place page at right path
- inter-page link calls
- entry in Contents
- Some changes in passive voice, articles in text

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

diff --git a/helpcontent2 b/helpcontent2
index 15790ee596f2..3d1c81107309 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 15790ee596f22dcea3ddcdacdc56113ec54b63f3
+Subproject commit 3d1c81107309511f00a024a2e1a706a8bf96af47
commit bf1c45189d1fad2007287fde9b9c50b5dd276977
Author: Olivier Hallot 
AuthorDate: Fri Jul 12 16:34:34 2019 +0200
Commit: Gerrit Code Review 
CommitDate: Mon Jul 15 02:23:33 2019 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  - Clarify example for SWITCH


...But the function need a date in A3 instead of a number.
So in my opinion the string should be:

=SWITCH(MONTH(A3),1,"January",2,"February",3,"March","No 
match") returns "January" when A3 contains a date in January, 
"February" when A3 contains a date in February , etc...

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

diff --git a/helpcontent2 b/helpcontent2
index 821b9724fe32..15790ee596f2 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 821b9724fe32e7e890c1ebe1d36f792bc3839fb0
+Subproject commit 15790ee596f22dcea3ddcdacdc56113ec54b63f3
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] help.git: 2 commits - AllLangHelp_sbasic.mk source/auxiliary source/text

2019-07-14 Thread LibreOfficiant (via logerrit)
 AllLangHelp_sbasic.mk|1 
 source/auxiliary/sbasic.tree |1 
 source/text/sbasic/python/python_2_basic.xhp |  151 +++
 source/text/sbasic/python/python_document_events.xhp |3 
 source/text/sbasic/python/python_examples.xhp|1 
 source/text/sbasic/python/python_screen.xhp  |1 
 source/text/scalc/01/func_switch.xhp |2 
 7 files changed, 158 insertions(+), 2 deletions(-)

New commits:
commit 3d1c81107309511f00a024a2e1a706a8bf96af47
Author: LibreOfficiant 
AuthorDate: Wed Jul 3 19:43:26 2019 +0200
Commit: Olivier Hallot 
CommitDate: Mon Jul 15 02:23:47 2019 +0200

Python to Basic Help page

- Python x Basic inter-language calls
- Dialog handlers with Basic or Python

Amend 1
- place page at right path
- inter-page link calls
- entry in Contents
- Some changes in passive voice, articles in text

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

diff --git a/AllLangHelp_sbasic.mk b/AllLangHelp_sbasic.mk
index a1f3fed2c..1cac18fe4 100644
--- a/AllLangHelp_sbasic.mk
+++ b/AllLangHelp_sbasic.mk
@@ -372,6 +372,7 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,sbasic,\
 helpcontent2/source/text/sbasic/shared/special_vba_func \
 helpcontent2/source/text/sbasic/shared/vbasupport \
 helpcontent2/source/text/sbasic/python/main \
+helpcontent2/source/text/sbasic/python/python_2_basic \
 helpcontent2/source/text/sbasic/python/python_dialogs \
 helpcontent2/source/text/sbasic/python/python_document_events \
 helpcontent2/source/text/sbasic/python/python_examples \
diff --git a/source/auxiliary/sbasic.tree b/source/auxiliary/sbasic.tree
index 8ecb215a0..308f10f99 100644
--- a/source/auxiliary/sbasic.tree
+++ b/source/auxiliary/sbasic.tree
@@ -338,6 +338,7 @@
 
 Programming with Python 
Scripts
 Python Programming 
Examples
+Calling Basic Macros from 
Python
 
 
 
diff --git a/source/text/sbasic/python/python_2_basic.xhp 
b/source/text/sbasic/python/python_2_basic.xhp
new file mode 100644
index 0..7be490b75
--- /dev/null
+++ b/source/text/sbasic/python/python_2_basic.xhp
@@ -0,0 +1,151 @@
+
+
+
+   
+ 
+Python to Basic
+/text/sbasic/python/python_2_basic.xhp
+ 
+   
+   
+ 
+Python;Calling Basic
+ParamArray
+ 
+  Calling Basic Macros from Python
+ You can call %PRODUCTNAME 
Basic macros from Python scripts, and notable features can be obtained in 
return such as:
+ 
+  Simple logging 
facilities out of Access2Base library Trace 
console,
+  InputBox and MsgBox screen I/O 
functions based on Basic to ease Python development,
+  Xray calls interrupting Python script execution 
to help inspect variables.
+ 
+ 
+ The %PRODUCTNAME 
Application Programming Interface (API) Scripting Framework supports 
inter-language script execution between Python and Basic, or other supported 
programming languages for that matter. Arguments can be passed back and fourth 
across calls, providing they represent primitives data types that both 
languages recognize, and assuming that the Scripting Framework converts them 
appropriately.
+ 
+ It is recommended to have knowledge of Python 
standard modules and %PRODUCTNAME API features prior to perform inter-language 
calls from Python to Basic, JavaScript or any other script engine.
+ When running Python scripts from an Integrated 
Development Environment (IDE), the %PRODUCTNAME nested Basic engine is absent. 
Avoid Python to %PRODUCTNAME Basic calls in this context. However Python 
environment and Universal Networks Objects (UNO) are fully available. Refer to 
Setting Up an 
Integrated IDE for Python for more information.
+ Retrieving %PRODUCTNAME Basic Scripts
+ %PRODUCTNAME Basic macros can 
be personal, shared, or embedded in documents. In order to execute them, Python 
run time needs to be provided with Basic macro locations. Implementing the 
https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html;
 name ="external">com.sun.star.script.provider.XScriptProvider interface 
allows the retrieval of executable scripts:
+ 
+
+   
API;script.provider.MasterScriptProviderFactory: Retrieving 
Basic scripts
+   API;script.provider.XScript : Executing 
Basic scripts
+   API;XScriptProvider: Retrieving Basic 
scripts
+
+
+import uno
+from 
com.sun.star.script.provider 

[Libreoffice-bugs] [Bug 125767] Unable to drag and drop fields when creating a pivot table

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

--- Comment #8 from zeem...@gmail.com ---
I concur.  Drag and Drop for field names when trying to create Pivot Tables in
CALC does not work.  I have tried this with LibreOffice 6.1.6 (still) running
as an AppImage, and LibreOffice 6.2.2 installed from Debian files.  Same
behavior - no drag and drop functionality.  

Previously, I had LibreOffice 5.2.7 installed from a FlatPack and Pivot tables
(and drag and drop) were working as expected in this old version of CALC.  

All installations above tested on a HP x360 Chromebook running Crostini Linux
container.  Behaviors did not change between Chrome OS v72, 73, 74 and now 75.  

It is 100% reproducible. 
1)  Take any table of data with column lables in 1st row
2)  Select the table
3)  Use menu to select "Insert Pivot Table"
4)  You will see the Pivot Table layout dialog where you are required to "drag
and drop" a field name from the list on the right to one of the locations
offered on the left (row, column, Page, or data)  Unfortunately, the drag and
drop does not work.  No amount of double clicking, right clicking etc. makes it
work.

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

[Libreoffice-bugs] [Bug 67614] FILESAVE: Exporting as JPG or PNG exports only selected slide

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

--- Comment #12 from mwtjunkm...@gmail.com ---
ILESAVE: Exporting as JPG or PNG exports only selected slide --

This has its usefulness as is. I may have 30 or 40 slides in a file and only
want to export one of them, not all of them.

I agree that an option should exist for a multi-file output to export all
slides, but don't take away the per-slide export functionality we have 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 119682] Change Draw's image export default format from gif to png

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

--- Comment #5 from mwtjunkm...@gmail.com ---
Concur, this change would be quite useful.

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

[Libreoffice-bugs] [Bug 126382] Impress: character Highlight color "No fill" for text field not interpreted correctly for reloaded document

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

Gerhard Weydt  changed:

   What|Removed |Added

Summary|character Highlight color   |Impress: character
   |"No fill" not saved |Highlight color "No fill"
   ||for text field not
   ||interpreted correctly for
   ||reloaded document

--- Comment #3 from Gerhard Weydt  ---
My own tests confirm the conclusions made by Regina, which I just happened to
discover here. The information contained in the saved module seems OK (also in
comparison with a similar cass in Writer), the interpretation of the
informations contained in the object and the style seems to be wrong when the
file is presented in the user interface of LibO; I tested printing with PDF24,
in addition to Regina's statements, which also showed the correct
interpretation.
So it seems to boil down to the representaion in the UI of LibO.
The title "character Highlight color 'No fill' not saved" for the bug report is
not very precise, which might lessen the impact on people able to tackle such
problems, and is also not accurate regarding Regina's observations; I narrowed
down the scope with a change of the summary.

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

[Libreoffice-bugs] [Bug 126392] [RFE] A way to print properties/methods of an object is needed

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

--- Comment #1 from Konstantin Kharlamov  ---
UPDATE: I found 2 workarounds:

1. executing "dir(object_name)", e.g. "dir(model.CurrentController)" for the
"steps to reproduce" seems to give properties and methods
2. forcing interactive python shell to autocomplete, e.g. by typing
model.CurrentController. and pressing TAB twice, makes it to show the list too
(and this list even shows methods and properties differently: methods ends up
with "(" symbol).

Possible gotcha: these workarounds are specific to python. So I'm not sure
whether they can be qualified as a solution to the report.

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

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

2019-07-14 Thread Sumit Chauhan (via logerrit)
 include/svx/sidebar/AreaPropertyPanelBase.hxx |2 ++
 svx/source/sidebar/area/AreaPropertyPanelBase.cxx |   18 ++
 2 files changed, 20 insertions(+)

New commits:
commit 6d3dfe83c82860c0688fd8c8dcc250402df53c74
Author: Sumit Chauhan 
AuthorDate: Sat Feb 9 13:16:50 2019 +0530
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Jul 15 01:16:24 2019 +0200

tdf#120495 Providing self adapting height to the Area section of Sidebar

This problem comes when we switch between different fill tabs in area 
sidebar and
this patch solves the issue.

Change-Id: I09936e600214394d26a27d26d47be3ef9942b65f
Reviewed-on: https://gerrit.libreoffice.org/67577
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 
(cherry picked from commit 347afce3a997291313fd88843ba248ccbbcb3990)
Reviewed-on: https://gerrit.libreoffice.org/75483
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/include/svx/sidebar/AreaPropertyPanelBase.hxx 
b/include/svx/sidebar/AreaPropertyPanelBase.hxx
index b24281efea5f..d24803b3e9ce 100644
--- a/include/svx/sidebar/AreaPropertyPanelBase.hxx
+++ b/include/svx/sidebar/AreaPropertyPanelBase.hxx
@@ -44,6 +44,7 @@
 #include 
 #include 
 #include 
+#include 
 
 class XFillFloatTransparenceItem;
 class XFillTransparenceItem;
@@ -151,6 +152,7 @@ protected:
 Image   maImgLinear;
 
 VclPtr   mxTrGrPopup;
+VclPtrmpPanel;
 
 std::unique_ptr< XFillFloatTransparenceItem >   mpFloatTransparenceItem;
 std::unique_ptr< SfxUInt16Item >mpTransparanceItem;
diff --git a/svx/source/sidebar/area/AreaPropertyPanelBase.cxx 
b/svx/source/sidebar/area/AreaPropertyPanelBase.cxx
index 4c7a15c9f9a9..348babec99d8 100644
--- a/svx/source/sidebar/area/AreaPropertyPanelBase.cxx
+++ b/svx/source/sidebar/area/AreaPropertyPanelBase.cxx
@@ -104,6 +104,7 @@ AreaPropertyPanelBase::AreaPropertyPanelBase(
 get(mpLbFillGradTo, "fillgrad2");
 get(mpGradientStyle, "gradientstyle");
 get(mpBmpImport, "bmpimport");
+mpPanel = dynamic_cast(pParent);
 
 Initialize();
 }
@@ -130,6 +131,7 @@ void AreaPropertyPanelBase::dispose()
 mpLbFillGradTo.clear();
 mpGradientStyle.clear();
 mpBmpImport.clear();
+mpPanel.clear();
 
 PanelLayout::dispose();
 }
@@ -440,6 +442,8 @@ IMPL_LINK_NOARG(AreaPropertyPanelBase, SelectFillTypeHdl, 
ListBox&, void)
 {
 mpLbFillType->Selected();
 }
+if(mpPanel)
+mpPanel->TriggerDeckLayouting();
 }
 
 IMPL_LINK_NOARG(AreaPropertyPanelBase, SelectFillColorHdl, SvxColorListBox&, 
void)
@@ -602,6 +606,8 @@ void AreaPropertyPanelBase::SelectFillAttrHdl_Impl()
 break;
 }
 }
+if(mpPanel)
+mpPanel->TriggerDeckLayouting();
 }
 
 void AreaPropertyPanelBase::ImpUpdateTransparencies()
@@ -857,6 +863,8 @@ void AreaPropertyPanelBase::updateFillStyle(bool bDisabled, 
bool bDefaultOrSet,
 mpToolBoxColor->Hide();
 meLastXFS = static_cast(-1);
 mpStyleItem.reset();
+if(mpPanel)
+mpPanel->TriggerDeckLayouting();
 }
 
 void AreaPropertyPanelBase::updateFillGradient(bool bDisabled, bool 
bDefaultOrSet, const SfxPoolItem* pState)
@@ -896,6 +904,8 @@ void AreaPropertyPanelBase::updateFillGradient(bool 
bDisabled, bool bDefaultOrSe
 mpLbFillGradTo->SetNoSelection();
 }
 }
+if(mpPanel)
+mpPanel->TriggerDeckLayouting();
 }
 
 void AreaPropertyPanelBase::updateFillHatch(bool bDisabled, bool 
bDefaultOrSet, const SfxPoolItem* pState)
@@ -927,6 +937,8 @@ void AreaPropertyPanelBase::updateFillHatch(bool bDisabled, 
bool bDefaultOrSet,
 mpLbFillAttr->SetNoSelection();
 }
 }
+if(mpPanel)
+mpPanel->TriggerDeckLayouting();
 }
 
 void AreaPropertyPanelBase::updateFillColor(bool bDefaultOrSet, const 
SfxPoolItem* pState)
@@ -944,6 +956,8 @@ void AreaPropertyPanelBase::updateFillColor(bool 
bDefaultOrSet, const SfxPoolIte
 mpLbFillType->SelectEntryPos(SOLID);
 Update();
 }
+if(mpPanel)
+mpPanel->TriggerDeckLayouting();
 }
 
 void AreaPropertyPanelBase::updateFillBitmap(bool bDisabled, bool 
bDefaultOrSet, const SfxPoolItem* pState)
@@ -977,6 +991,8 @@ void AreaPropertyPanelBase::updateFillBitmap(bool 
bDisabled, bool bDefaultOrSet,
 mpLbFillAttr->SetNoSelection();
 }
 }
+if(mpPanel)
+mpPanel->TriggerDeckLayouting();
 }
 
 void AreaPropertyPanelBase::NotifyItemUpdate(
@@ -1243,6 +1259,8 @@ void AreaPropertyPanelBase::Update()
 OSL_ENSURE(false, "Non supported FillType (!)");
 break;
 }
+if(mpPanel)
+mpPanel->TriggerDeckLayouting();
 }
 
 IMPL_LINK_NOARG(AreaPropertyPanelBase, ModifyTransSliderHdl, Slider*, void)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

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

2019-07-14 Thread Andras Timar (via logerrit)
 dictionaries |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4cefa7ad283e2969cc6c4a2f889f5dc063914dba
Author: Andras Timar 
AuthorDate: Fri Jul 12 09:26:02 2019 +0200
Commit: Gerrit Code Review 
CommitDate: Mon Jul 15 01:14:13 2019 +0200

Update git submodules

* Update dictionaries from branch 'libreoffice-6-3'
  - tdf#118570 update the da_DK dictionary

Change-Id: Ie0a666ee4d78543762163e7290286a817c99104f
Reviewed-on: https://gerrit.libreoffice.org/75468
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/dictionaries b/dictionaries
index f076e661247f..5123793983c1 16
--- a/dictionaries
+++ b/dictionaries
@@ -1 +1 @@
-Subproject commit f076e661247f721fd21cd430083c16617f80cfa4
+Subproject commit 5123793983c1cdce87f268c8bc7bdc5b2c65e04f
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] dictionaries.git: Branch 'libreoffice-6-3' - da_DK/da_DK.aff da_DK/da_DK.dic da_DK/description.xml da_DK/help da_DK/README_da_DK.txt da_DK/th_da_DK.dat

2019-07-14 Thread Andras Timar (via logerrit)
 da_DK/README_da_DK.txt  |   12 
 da_DK/da_DK.aff |  176 
 da_DK/da_DK.dic |28394 +-
 da_DK/description.xml   |2 
 da_DK/help/da/org.openoffice.da.hunspell.dictionaries/page1.xhp |4 
 da_DK/help/da/org.openoffice.da.hunspell.dictionaries/page2.xhp |   14 
 da_DK/th_da_DK.dat  |118915 
+-
 7 files changed, 75971 insertions(+), 71546 deletions(-)

New commits:
commit 5123793983c1cdce87f268c8bc7bdc5b2c65e04f
Author: Andras Timar 
AuthorDate: Fri Jul 12 09:26:02 2019 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Jul 15 01:14:13 2019 +0200

tdf#118570 update the da_DK dictionary

Change-Id: Ie0a666ee4d78543762163e7290286a817c99104f
Reviewed-on: https://gerrit.libreoffice.org/75468
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/da_DK/README_da_DK.txt b/da_DK/README_da_DK.txt
index 0ccf27b..9c1a543 100644
--- a/da_DK/README_da_DK.txt
+++ b/da_DK/README_da_DK.txt
@@ -1,12 +1,12 @@
 Stavekontrolden - Danish dictionary files for Hunspell and thesaurus files for 
MyThes
-Version 2.1 - 2012-07-14
-da_DK.dic, da_DK.aff, th_da_DK.dat, th_da_DK.idx: © 2012 Foreningen for frit 
tilgængelige sprogværktøjer - http://www.stavekontrolden.dk
+Version 2.4 - 2018-04-15
+da_DK.dic, da_DK.aff, th_da_DK.dat, th_da_DK.idx: © 2018 Foreningen for frit 
tilgængelige sprogværktøjer - http://www.stavekontrolden.dk
 These files are published under the following open source licenses:
 
-GNU GPL version 2.0
-GNU LGPL version 2.1
-Mozilla MPL version 1.1
+GNU GPL version 2.0 - https://www.gnu.org/licenses/gpl-2.0.html
+GNU LGPL version 2.1 - https://www.gnu.org/licenses/lgpl-2.1.html
+Mozilla MPL version 1.1 - https://www.mozilla.org/en-US/MPL/1.1/
 
 This dictionary is based on data from Det Danske Sprog- og Litteraturselskab
-(The Danish Society for Language and Literature), http://www.dsl.dk.
+(The Danish Society for Language and Literature), https://dsl.dk.
 Thanks to Lyngby-Taarbæk Kommune, Gribskov Kommune and Region Midtjylland for 
financial support to the thesaurus project.
diff --git a/da_DK/da_DK.aff b/da_DK/da_DK.aff
index 6fa64f4..4fe0d1c 100644
--- a/da_DK/da_DK.aff
+++ b/da_DK/da_DK.aff
@@ -1,7 +1,7 @@
-#Stavekontrolden version 2.2
+#Stavekontrolden version 2.4
 #Denne fil er en del af Stavekontrolden - et softwareprodukt, der gør det 
muligt at stavekontrollere på dansk.
 
-#Copyright (C) 2014 Foreningen for frit tilgængelige sprogværktøjer
+#Copyright (C) 2018 Foreningen for frit tilgængelige sprogværktøjer
 #Website: http://www.stavekontrolden.dk
 #E-mail: i...@stavekontrolden.dk
 
@@ -41,7 +41,7 @@ ONLYMAXDIFF
  
 NOSUGGEST 
 
-REP 112
+REP 115
 REP ^allesammen$ alle_sammen
 REP ^altsammen$ alt_sammen
 REP ^forlængst$ for_længst
@@ -151,6 +151,9 @@ REP ede$ te #låsede -> låste
 REP ^i i_ #iaften -> i aften
 REP ^hen hen_ #henover -> hen over
 REP ^inden inden_ #indendøre -> inden døre
+REP ss$ s' #Genetiv
+REP xs$ x' #faxs -> fax'
+REP zs$ z' #jazzs -> jazz'
 REP aa å #Intet dansk keyboard
 REP ae æ
 REP oe ø
@@ -434,18 +437,14 @@ SFX 46 0 zernes/944 z +KONSONANT_FORDOBLING
 #Dobbeltkonsonant NeedAffix
 NEEDAFFIX 53
 #Proprium
-SFX 55 Y 4
-SFX 55 0 s [^s]+GENITIV
-SFX 55 0  s+GENITIV
-SFX 55 0 ' s   +GENITIV
-SFX 55 0 es s  +GENITIV
+SFX 55 Y 3
+SFX 55 0 s [^sxz]  +GENITIV
+SFX 55 0 's [QWERTYUIOPÅASDFGHJKLÆØZXCVBNM]+GENITIV
+SFX 55 0 ' [sxz]   +GENITIV
 #Genitiv
-SFX 70 Y 5
-SFX 70 0 s/944 [^s]+GENITIV
-SFX 70 0 es/944 s  +GENITIV
-SFX 70 0 ’s/944 s  +GENITIV
-SFX 70 0 '/944 s   +GENITIV
-SFX 70 0 es/944 s  +GENITIV
+SFX 70 Y 2
+SFX 70 0 s/944 [^sxz]  +GENITIV
+SFX 70 0 '/944 [sxz]   +GENITIV
 #Substantiv, flertal, med -er
 SFX 73 Y 8
 SFX 73 0 er/70,944 [^e]+PLUR_UBEK
@@ -460,7 +459,7 @@ SFX 73 0 rs/944 e   +GENITIV
 SFX 84 Y 4
 SFX 84 0 re/70,944 .
 SFX 84 0 ne/70,944 .
-SFX 84 0 nes/944,944 . +GENITIV
+SFX 84 0 nes/944 . +GENITIV
 SFX 84 0 res . +GENITIV
 #Substantiv, flertal, med -re, stamme -er fjernes
 SFX 85 Y 20
@@ -852,19 +851,19 @@ SFX 913 0 e/944 . +PLUR_BEK
 SFX 913 0 t/944 [^t]   +BESTEMT_ENTAL
 #Adjektiv, d erstatter t med komparation
 SFX 914 Y 4
-SFX 914 t de/70,70,944 .   +PLUR_BEK
+SFX 914 t de/70,944 .  +PLUR_BEK
 SFX 914 t dere/70,944 .+KOMPARATIV
 SFX 914 t dest/70,944 .+SUPERLATIV
 SFX 914 t deste/70,944 .   +SUPERLATIV_PLURALIS
 #Adjektiv, d erstatter t uden komparation
 SFX 915 Y 4
 SFX 915 t de/70 .  +PLUR_BEK
-SFX 915 0 s/944,944 [^s]   +GENITIV
+SFX 915 0 s/944 [^s]   +GENITIV
 SFX 915 0 '/944 s  +GENITIV
 SFX 915 0 es/944 s +GENITIV
 #Adjektiv, ender på -ende
 SFX 916 Y 3
-SFX 916 0 s/944,944 [^s]   +GENITIV
+SFX 916 0 s/944 [^s]   +GENITIV
 SFX 916 0 '/944 s  +GENITIV
 

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

2019-07-14 Thread Muhammet Kara (via logerrit)
 sfx2/source/doc/autoredactdialog.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cec6227d34185da9b960f61f8d8189ec1fece264
Author: Muhammet Kara 
AuthorDate: Sun Jul 14 23:51:44 2019 +0300
Commit: Muhammet Kara 
CommitDate: Mon Jul 15 01:10:47 2019 +0200

Fix error in JSONtoRedactionTarget

Change-Id: I6e82f86adfc6e1ebff2d9377dd011d0d97648848
Reviewed-on: https://gerrit.libreoffice.org/75603
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Muhammet Kara 

diff --git a/sfx2/source/doc/autoredactdialog.cxx 
b/sfx2/source/doc/autoredactdialog.cxx
index b1882f7b5717..b7cd1ce67f56 100644
--- a/sfx2/source/doc/autoredactdialog.cxx
+++ b/sfx2/source/doc/autoredactdialog.cxx
@@ -384,7 +384,7 @@ RedactionTarget* JSONtoRedactionTarget(const 
boost::property_tree::ptree::value_
 {
 OUString sName = 
OUString::fromUtf8(rValue.second.get("sName").c_str());
 RedactionTargetType eType
-= 
static_cast(atoi(rValue.second.get("sName").c_str()));
+= 
static_cast(atoi(rValue.second.get("eType").c_str()));
 OUString sContent = 
OUString::fromUtf8(rValue.second.get("sContent").c_str());
 bool bCaseSensitive
 = 
OUString::fromUtf8(rValue.second.get("bCaseSensitive").c_str()).toBoolean();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-07-14 Thread Muhammet Kara (via logerrit)
 sfx2/source/doc/autoredactdialog.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d56b08596b6f0c87420c147db08ba9b2b788042c
Author: Muhammet Kara 
AuthorDate: Sun Jul 14 23:51:44 2019 +0300
Commit: Muhammet Kara 
CommitDate: Mon Jul 15 01:10:33 2019 +0200

Fix error in JSONtoRedactionTarget

Change-Id: I6e82f86adfc6e1ebff2d9377dd011d0d97648848
Reviewed-on: https://gerrit.libreoffice.org/75602
Tested-by: Jenkins
Reviewed-by: Muhammet Kara 

diff --git a/sfx2/source/doc/autoredactdialog.cxx 
b/sfx2/source/doc/autoredactdialog.cxx
index 54f40fc35abd..9a5e2e5addba 100644
--- a/sfx2/source/doc/autoredactdialog.cxx
+++ b/sfx2/source/doc/autoredactdialog.cxx
@@ -384,7 +384,7 @@ RedactionTarget* JSONtoRedactionTarget(const 
boost::property_tree::ptree::value_
 {
 OUString sName = 
OUString::fromUtf8(rValue.second.get("sName").c_str());
 RedactionTargetType eType
-= 
static_cast(atoi(rValue.second.get("sName").c_str()));
+= 
static_cast(atoi(rValue.second.get("eType").c_str()));
 OUString sContent = 
OUString::fromUtf8(rValue.second.get("sContent").c_str());
 bool bCaseSensitive
 = 
OUString::fromUtf8(rValue.second.get("bCaseSensitive").c_str()).toBoolean();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - configure.ac

2019-07-14 Thread Tomáš Chvátal (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cbc7a53b99d358eeed9478bf40c5b60aff815cbd
Author: Tomáš Chvátal 
AuthorDate: Mon Jul 8 13:35:16 2019 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Jul 15 00:46:15 2019 +0200

Require cmis-client 0.5.2 and newer

With older releases the C++ 17 will not work and the configure would
error out with weird message.

Change-Id: Ife83669f0b55d3b013ca33f0b2a2709884309d5d
Reviewed-on: https://gerrit.libreoffice.org/75218
Tested-by: Jenkins
Tested-by: Tomáš Chvátal 
Reviewed-by: Tomáš Chvátal 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/configure.ac b/configure.ac
index b57a6225ef8c..44907555d6c5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6389,7 +6389,7 @@ dnl Check for system libcmis
 dnl ===
 # libcmis requires curl and we can't build curl for iOS
 if test $_os != iOS; then
-libo_CHECK_SYSTEM_MODULE([libcmis],[LIBCMIS],[libcmis-0.5 >= 0.5.0])
+libo_CHECK_SYSTEM_MODULE([libcmis],[LIBCMIS],[libcmis-0.5 >= 0.5.2])
 ENABLE_LIBCMIS=TRUE
 else
 ENABLE_LIBCMIS=
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126392] New: [RFE] A way to print properties/methods of an object is needed

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

Bug ID: 126392
   Summary: [RFE] A way to print properties/methods of an object
is needed
   Product: LibreOffice
   Version: 6.2.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: sdk
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hi-an...@yandex.ru

Created attachment 152769
  --> https://bugs.documentfoundation.org/attachment.cgi?id=152769=edit
Connects to LO instance running as a server

Currently when writing an UNO script it is very hard to figure out what
methods/properties an object has. One needs to search for documentation,
however some properties are not documented; and even if they were, it is much
faster to just print everything an object provides in an interactive prompt.

# Steps to reproduce

1. Download to current directory the attached script (it simply connects to
libreoffice)
1. Run office as: soffice --calc
--accept="socket,host=localhost,port=2002;urp;StarOffice.ServiceManager"
2. Run "python" to enter an interactive shell
3. Execute in python: exec(open("./connect-to-lo.py").read())
4. Try printing the "model.CurrentController" object in such a way so you could
see "ActiveSheet" field

## Expected

There's a way to do it

## Actual

There's no way to view properties of the object, including the "ActiveSheet"
field.

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

[Libreoffice-bugs] [Bug 118570] Please update the da_DK dictionary

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

Adolfo Jayme  changed:

   What|Removed |Added

 Whiteboard||target:6.4.0 target:6.3.0.2

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

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - sw/source

2019-07-14 Thread Jan-Marek Glogowski (via logerrit)
 sw/source/uibase/misc/swruler.cxx |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 7ccc93d947bacba6d99a03ed2d0c27b1983a
Author: Jan-Marek Glogowski 
AuthorDate: Thu Jul 11 12:50:42 2019 +
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Jul 15 00:26:35 2019 +0200

tdf#126333 use dialog color for "button" highlight

This control has many more problems. This is just a minimal
fix, so it'll use dialog color for the highlight. In addition
it uses the same color for the arrow then for the text.

Reviewed-on: https://gerrit.libreoffice.org/75419
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 
(cherry picked from commit 2060f9598bc4480c44465abc9250b595c09af188)
Reviewed-on: https://gerrit.libreoffice.org/75425
Reviewed-by: Adolfo Jayme Barrientos 
(cherry picked from commit 54af6c8c873c3f6311806d210d5243b03e2d9fdf)

Change-Id: Iaf263087bc09309267b2d165331d710dfc92fc77
Reviewed-on: https://gerrit.libreoffice.org/75502
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/sw/source/uibase/misc/swruler.cxx 
b/sw/source/uibase/misc/swruler.cxx
index 1784ac20dbcd..86667e6b02d7 100644
--- a/sw/source/uibase/misc/swruler.cxx
+++ b/sw/source/uibase/misc/swruler.cxx
@@ -116,7 +116,7 @@ void SwCommentRuler::DrawCommentControl(vcl::RenderContext& 
rRenderContext)
 
 // Paint comment control background
 // TODO Check if these are best colors to be used
-Color aBgColor = GetFadedColor( rStyleSettings.GetDarkShadowColor(), 
rStyleSettings.GetWorkspaceColor() );
+Color aBgColor = GetFadedColor( rStyleSettings.GetDialogColor(), 
rStyleSettings.GetWorkspaceColor() );
 maVirDev->SetFillColor( aBgColor );
 
 if ( mbIsHighlighted || !bIsCollapsed )
@@ -185,8 +185,7 @@ void SwCommentRuler::DrawCommentControl(vcl::RenderContext& 
rRenderContext)
 
 // Draw arrow
 // FIXME consistence of button colors. 
https://opengrok.libreoffice.org/xref/core/vcl/source/control/button.cxx#785
-Color aArrowColor = GetFadedColor(COL_BLACK, 
rStyleSettings.GetShadowColor());
-ImplDrawArrow(*maVirDev.get(), aArrowPos.X(), aArrowPos.Y(), aArrowColor, 
bArrowToRight);
+ImplDrawArrow(*maVirDev.get(), aArrowPos.X(), aArrowPos.Y(), aTextColor, 
bArrowToRight);
 
 // Blit comment control
 rRenderContext.DrawOutDev(aControlRect.TopLeft(), aControlRect.GetSize(), 
Point(), aControlRect.GetSize(), *maVirDev.get());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - bin/oss-fuzz-build.sh configure.ac download.lst solenv/flatpak-manifest.in

2019-07-14 Thread Andras Timar (via logerrit)
 bin/oss-fuzz-build.sh  |2 +-
 configure.ac   |2 +-
 download.lst   |2 +-
 solenv/flatpak-manifest.in |6 +++---
 4 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit a490420e62fcadb45fee9864b111e11f1414c4a9
Author: Andras Timar 
AuthorDate: Sun Jul 14 14:39:20 2019 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Jul 15 00:24:10 2019 +0200

tdf#120047 use new opens___.ttf version 102.11

Change-Id: Iad48c663708dc9cda00d2a8534981f34c1c6f9d0
Reviewed-on: https://gerrit.libreoffice.org/75577
Tested-by: Jenkins
Reviewed-by: Andras Timar 
(cherry picked from commit 231fb0441981de788716c7574f03a9cef9c0e268)
Reviewed-on: https://gerrit.libreoffice.org/75601
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/bin/oss-fuzz-build.sh b/bin/oss-fuzz-build.sh
index 0e37243c8a7c..646accc8a017 100755
--- a/bin/oss-fuzz-build.sh
+++ b/bin/oss-fuzz-build.sh
@@ -31,7 +31,7 @@ for a in *fuzzer; do
 #some minimal fonts required
 mv $a $OUT
 mkdir -p $OUT/$a.fonts
-cp 
$SRC/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf
 ../share/fonts/truetype/Liberation* $OUT/$a.fonts
+cp 
$SRC/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf
 ../share/fonts/truetype/Liberation* $OUT/$a.fonts
 #minimal runtime requirements
 cp templateservices.rdb $OUT/$a.services.rdb
 cp types.rdb $OUT/$a.types.rdb
diff --git a/configure.ac b/configure.ac
index 0ac3e08ee19a..b57a6225ef8c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11491,7 +11491,7 @@ if test "$enable_build_opensymbol" = "yes"; then
 fi
 else
 AC_MSG_RESULT([no])
-
OPENSYMBOL_TTF=49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf
+
OPENSYMBOL_TTF=884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf
 BUILD_TYPE="$BUILD_TYPE OPENSYMBOL"
 fi
 AC_SUBST(OPENSYMBOL_TTF)
diff --git a/download.lst b/download.lst
index 8fbc74661141..513d8ee1b281 100644
--- a/download.lst
+++ b/download.lst
@@ -256,4 +256,4 @@ export ZMF_TARBALL := libzmf-0.0.2.tar.xz
 
 NUMBERTEXT_EXTENSION_SHA256SUM := 
1568ed1d2feb8210bb5de61d69574a165cded536cfa17c6953c9064076469de2
 UNOWINREG_SHA256SUM := 
eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6
-OPENSYMBOL_SHA256SUM := 
49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63
+OPENSYMBOL_SHA256SUM := 
884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc
diff --git a/solenv/flatpak-manifest.in b/solenv/flatpak-manifest.in
index ad6cdd6a3c83..7e72c5eb795c 100644
--- a/solenv/flatpak-manifest.in
+++ b/solenv/flatpak-manifest.in
@@ -563,10 +563,10 @@
 "dest-filename": 
"external/tarballs/libatomic_ops-7.6.8.tar.gz"
 },
 {
-"url": 
"https://dev-www.libreoffice.org/extern/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf;,
-"sha256": 
"49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63",
+"url": 
"https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf;,
+"sha256": 
"884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc",
 "type": "file",
-"dest-filename": 
"external/tarballs/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf"
+"dest-filename": 
"external/tarballs/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf"
 }
 ],
 "buildsystem": "simple",
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126391] New: "ActiveSheet" is undocumented at "com.sun.star.frame.XController"

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

Bug ID: 126391
   Summary: "ActiveSheet" is undocumented at
"com.sun.star.frame.XController"
   Product: LibreOffice
   Version: 6.2.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hi-an...@yandex.ru
CC: olivier.hal...@libreoffice.org

Created attachment 152768
  --> https://bugs.documentfoundation.org/attachment.cgi?id=152768=edit
print types of CurrentController and CurrentController.ActiveSheet

I'm trying to figure out from docs how to get a sheet by name, and it turns out
there's documentation missing. At the very least, if you go here

https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1frame_1_1XController.html

You'll find out that there's no "ActiveSheet" field.

However if you do:

1. Run office as soffice --calc
--accept="socket,host=localhost,port=2002;urp;StarOffice.ServiceManager"
2. Execute the attached script

You'll find out that XController actually does have the field.

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

[Libreoffice-bugs] [Bug 116010] Overlapping text with substitution font - ligature handling bug

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

Johnny_M  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #9 from Johnny_M  ---
(In reply to Khaled Hosny from comment #8)
> I can't reproduce any of the issues described here with 6.2.4.2, do anyone
> else still reproduce?

I can reproduce the issue in comment 3 / comment 7 with:
Version: 6.2.4.2
Build ID: 1:6.2.4-0ubuntu0.19.04.1
CPU threads: 4; OS: Linux 5.0; UI render: default; VCL: gtk3; 
Locale: de-DE (en_US.UTF-8); UI-Language: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 116010] Overlapping text with substitution font - ligature handling bug

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

Khaled Hosny  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

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

[Libreoffice-commits] core.git: include/svx

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/svx/svdpage.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6604b66be099136c6de3580c5a0a6db2521eba66
Author: Andrea Gelmini 
AuthorDate: Sun Jul 14 14:00:15 2019 +0200
Commit: Julien Nabet 
CommitDate: Sun Jul 14 22:55:39 2019 +0200

Fix typo

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

diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx
index b1a93c31e21f..5ab621ccbd4c 100644
--- a/include/svx/svdpage.hxx
+++ b/include/svx/svdpage.hxx
@@ -166,7 +166,7 @@ public:
 order.  When there is one this method returns  and the
 GetObjectForNavigationPosition() and
 SdrObject::GetNavigationPosition() methods will return values
-different from those returne by SdrObject::GetOrdNum() and
+different from those returned by SdrObject::GetOrdNum() and
 GetObj().
 */
 bool HasObjectNavigationOrder() const;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: include/registry

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/registry/registry.hxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 61d83f29d9f80c181e31b9a0c4f9f74902492f15
Author: Andrea Gelmini 
AuthorDate: Thu Jul 11 22:25:13 2019 +
Commit: Julien Nabet 
CommitDate: Sun Jul 14 22:54:20 2019 +0200

Fix typo

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

diff --git a/include/registry/registry.hxx b/include/registry/registry.hxx
index e678a118f369..200d91b4f426 100644
--- a/include/registry/registry.hxx
+++ b/include/registry/registry.hxx
@@ -464,7 +464,7 @@ public:
sal_Char** pValueList,
sal_uInt32 len);
 
-/** sets an unicode string list value of a key.
+/** sets a unicode string list value of a key.
 
 @param  keyName specifies the name of the key which value will be set.
 If keyName is an empty string, the value will be set 
for the key
@@ -551,7 +551,7 @@ public:
 public:
 /// @cond INTERNAL
 
-/** Constructor, which initialize a RegistryKey with registry and an valid 
key handle.
+/** Constructor, which initialize a RegistryKey with registry and a valid 
key handle.
 
 This constructor is internal only.
 */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: include/oox

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/oox/drawingml/drawingmltypes.hxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f8abb1bbe90d8cf2b8bb440f2764d5a369a84d11
Author: Andrea Gelmini 
AuthorDate: Thu Jul 11 22:25:27 2019 +
Commit: Julien Nabet 
CommitDate: Sun Jul 14 22:53:44 2019 +0200

Fix typo

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

diff --git a/include/oox/drawingml/drawingmltypes.hxx 
b/include/oox/drawingml/drawingmltypes.hxx
index 2abe05767d6a..5e3517b58524 100644
--- a/include/oox/drawingml/drawingmltypes.hxx
+++ b/include/oox/drawingml/drawingmltypes.hxx
@@ -90,11 +90,11 @@ typedef std::shared_ptr< TableProperties > 
TablePropertiesPtr;
 } // namespace table
 
 
-/** converts the attributes from an CT_TLPoint into an awt Point with 1/1000% 
*/
+/** converts the attributes from a CT_TLPoint into an awt Point with 1/1000% */
 css::awt::Point GetPointPercent( const css::uno::Reference< 
css::xml::sax::XFastAttributeList >& xAttribs );
 
 
-/** converts the attributes from an CT_Size2D into an awt Size with 1/100th mm 
*/
+/** converts the attributes from a CT_Size2D into an awt Size with 1/100th mm 
*/
 css::awt::Size GetSize2D( const css::uno::Reference< 
css::xml::sax::XFastAttributeList >& xAttributes );
 
 /** converts the attributes from a CT_RelativeRect to an IntegerRectangle2D */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: include/osl

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/osl/time.h |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3d8ba42941a5a37ff42c4b4f277287b1e6a4d739
Author: Andrea Gelmini 
AuthorDate: Sun Jul 14 17:42:29 2019 +
Commit: Julien Nabet 
CommitDate: Sun Jul 14 22:52:38 2019 +0200

Fix typo

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

diff --git a/include/osl/time.h b/include/osl/time.h
index 5dd8d9d8f342..93cb28fca868 100644
--- a/include/osl/time.h
+++ b/include/osl/time.h
@@ -167,7 +167,7 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL 
osl_getSystemTimeFromLocalTime(
 
 
 /** Get the value of the global timer
-@return current timer value in milli seconds
+@return current timer value in milliseconds
  */
 
 SAL_DLLPUBLIC sal_uInt32 SAL_CALL osl_getGlobalTimer(void);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: include/osl

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/osl/file.hxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit c72177966aa64df049a841ade0a8156a47a607b1
Author: Andrea Gelmini 
AuthorDate: Thu Jul 11 22:25:23 2019 +
Commit: Julien Nabet 
CommitDate: Sun Jul 14 22:51:51 2019 +0200

Fix typo

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

diff --git a/include/osl/file.hxx b/include/osl/file.hxx
index b11f76731867..528e24e7a11e 100644
--- a/include/osl/file.hxx
+++ b/include/osl/file.hxx
@@ -1625,7 +1625,7 @@ extern "C" inline void SAL_CALL onDirectoryCreated(void* 
pData, rtl_uString* aDi
 
static_cast(pData)->DirectoryCreated(aDirectoryUrl);
 }
 
-/** The directory class object provides a enumeration of DirectoryItems.
+/** The directory class object provides an enumeration of DirectoryItems.
 
 @see DirectoryItem
 @see File
@@ -1681,7 +1681,7 @@ public:
 @retval E_None on success
 @retval E_INVAL the format of the parameters was not valid
 @retval E_NOENT the specified path doesn't exist
-@retval E_NOTDIR the specified path is not an directory
+@retval E_NOTDIR the specified path is not a directory
 @retval E_NOMEM not enough memory for allocating structures
 @retval E_ACCES permission denied
 @retval E_MFILE too many open files used by the process
@@ -1740,7 +1740,7 @@ public:
 @retval E_None on success
 @retval E_INVAL the format of the parameters was not valid
 @retval E_NOENT the specified path doesn't exist
-@retval E_NOTDIR the specified path is not an directory
+@retval E_NOTDIR the specified path is not a directory
 @retval E_NOMEM not enough memory for allocating structures
 @retval E_ACCES permission denied
 @retval E_MFILE too many open files used by the process
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: include/salhelper

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/salhelper/singletonref.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 40b9e26fe23ada72dd96f6597a0a63256a587dee
Author: Andrea Gelmini 
AuthorDate: Thu Jul 11 22:24:56 2019 +
Commit: Julien Nabet 
CommitDate: Sun Jul 14 22:50:27 2019 +0200

Fix typo

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

diff --git a/include/salhelper/singletonref.hxx 
b/include/salhelper/singletonref.hxx
index 9d9747ee70ae..c6e9cbe2a727 100644
--- a/include/salhelper/singletonref.hxx
+++ b/include/salhelper/singletonref.hxx
@@ -37,7 +37,7 @@ namespace salhelper{
 
 Such classes can be instantiated every time they
 are needed. But the internal wrapped object will
-be created one times only. Of course its used
+be created one times only. Of course it's used
 resources are referenced one times only too.
 This template hold it alive till the last
 reference is gone. Further all operations
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: include/osl

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/osl/socket.h |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 093f7b4a5a611abaac7fa507d34ed4856d329899
Author: Andrea Gelmini 
AuthorDate: Thu Jul 11 22:25:17 2019 +
Commit: Julien Nabet 
CommitDate: Sun Jul 14 22:49:49 2019 +0200

Fix typo

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

diff --git a/include/osl/socket.h b/include/osl/socket.h
index a7eda5e9c69f..2357e8c53c01 100644
--- a/include/osl/socket.h
+++ b/include/osl/socket.h
@@ -47,7 +47,7 @@ typedef enum {
 } oslAddrFamily;
 
 /**
-represent a specific protocol within a address-family
+represent a specific protocol within an address-family
 */
 typedef enum {
 osl_Socket_ProtocolIp,  /*!< for all af_inet   
 */
@@ -834,7 +834,7 @@ SAL_DLLPUBLIC oslSocketResult SAL_CALL 
osl_setAddrOfSocketAddr(
 /** Returns the addr field in the struct sockaddr.
 @param[in] Addr The socket address from which to extract the ipaddress.
 @param[out] ppByteSeq After the call, *ppByteSeq contains the ipaddress
- in network byteorder. *ppByteSeq may be 0 in case of an 
invalid socket handle.
+ in network byte order. *ppByteSeq may be 0 in case of an 
invalid socket handle.
 @retval osl_Socket_Ok
 @retval osl_Socket_Error
  */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126390] New: "Create" button in macros is grayed out

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

Bug ID: 126390
   Summary: "Create" button in macros is grayed out
   Product: LibreOffice
   Version: 6.2.4.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hi-an...@yandex.ru

# Steps to reproduce

1. Open lowriter or localc
2. Go to Tools → Macros → Organize Macros → Python…

## Expected

In the new window the "Create" button should be active, so a user can create a
macro.

## Actual

"Create" button is grayed out.

# Additional information

This looks very bad: there's at least a question on StackOverflow about it with
21k views
https://stackoverflow.com/questions/21413664/how-to-run-python-macros-in-libreoffice

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

[Libreoffice-bugs] [Bug 123020] Migration to Firebird db fails on "unknown token isc_dsql_prepare"

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

Tamas Bunth  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |btom...@gmail.com
   |desktop.org |

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

[Libreoffice-commits] core.git: include/osl

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/osl/profile.hxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 9896425ff4db1f368ee5dbaa88d23cbd05f3edce
Author: Andrea Gelmini 
AuthorDate: Thu Jul 11 22:25:18 2019 +
Commit: Julien Nabet 
CommitDate: Sun Jul 14 22:32:15 2019 +0200

Fix typo

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

diff --git a/include/osl/profile.hxx b/include/osl/profile.hxx
index 48b6b8c861f4..e369dce9ee1f 100644
--- a/include/osl/profile.hxx
+++ b/include/osl/profile.hxx
@@ -147,7 +147,7 @@ namespace osl {
 
 /** Get all entries belonging to the specified section.
 @param rSection Name of the section.
-@return Pointer to a array of pointers.
+@return Pointer to an array of pointers.
 */
 std::list< rtl::OString > getSectionEntries(const rtl::OString& 
rSection )
 {
@@ -169,7 +169,7 @@ namespace osl {
 }
 
 /** Get all section entries
-@return Pointer to a array of pointers.
+@return Pointer to an array of pointers.
 */
 std::list< rtl::OString > getSections()
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: include/osl

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/osl/profile.h |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 03c7930af7994d0d98af5653167990f82dc0d706
Author: Andrea Gelmini 
AuthorDate: Thu Jul 11 22:25:19 2019 +
Commit: Julien Nabet 
CommitDate: Sun Jul 14 22:30:39 2019 +0200

Fix typo

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

diff --git a/include/osl/profile.h b/include/osl/profile.h
index 3eb87583272f..dd5c3dfbe6bf 100644
--- a/include/osl/profile.h
+++ b/include/osl/profile.h
@@ -51,7 +51,7 @@ SAL_DLLPUBLIC oslProfile SAL_CALL osl_openProfile(
 
 /** Deprecated API.
 Close the opened profile an flush all data to the disk.
-@param Profile handle to a opened profile.
+@param Profile handle to an opened profile.
 @deprecated
 */
 SAL_DLLPUBLIC sal_Bool SAL_CALL osl_closeProfile(
@@ -123,7 +123,7 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_removeProfileEntry(
 
 /** Deprecated API.
 Get all entries belonging to the specified section.
-@returns Pointer to a array of pointers.
+@returns Pointer to an array of pointers.
 @deprecated
 */
 SAL_DLLPUBLIC sal_uInt32 SAL_CALL osl_getProfileSectionEntries(
@@ -132,7 +132,7 @@ SAL_DLLPUBLIC sal_uInt32 SAL_CALL 
osl_getProfileSectionEntries(
 
 /** Deprecated API.
 Get all section entries
-@retval Pointer to a array of pointers.
+@retval Pointer to an array of pointers.
 @deprecated
 */
 SAL_DLLPUBLIC sal_uInt32 SAL_CALL osl_getProfileSections(
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: include/registry

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/registry/regtype.h |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ea0e75fd027759ede021168745ad4e1688aa3183
Author: Andrea Gelmini 
AuthorDate: Thu Jul 11 22:25:12 2019 +
Commit: Julien Nabet 
CommitDate: Sun Jul 14 22:28:57 2019 +0200

Fix typo

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

diff --git a/include/registry/regtype.h b/include/registry/regtype.h
index 4677cbe33ecd..6c1b71f46bc7 100644
--- a/include/registry/regtype.h
+++ b/include/registry/regtype.h
@@ -120,7 +120,7 @@ enum class SAL_DLLPUBLIC_RTTI RegError
 SET_VALUE_FAILED,
 /// deleting of the key value failed.
 DELETE_VALUE_FAILED,
-/// the key has a invalid value or the value type is unknown.
+/// the key has an invalid value or the value type is unknown.
 INVALID_VALUE,
 
 /// merging a key, the value and all subkeys failed.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] help.git: Branch 'distro/collabora/cp-6.2' - 12 commits - .gitreview help3xsl/default.css help3xsl/help2.js help3xsl/help.html help3xsl/index2.html help3xsl/index.html help3xsl/o

2019-07-14 Thread Adolfo Jayme Barrientos (via logerrit)
 .gitreview|2 
 Package_html_media.mk |2 
 help3xsl/default.css  |   85 --
 help3xsl/help.html|2 
 help3xsl/help2.js |7 -
 help3xsl/index.html   |2 
 help3xsl/index2.html  |2 
 help3xsl/online_transform.xsl |   35 ++---
 source/media/navigation/collabora-online-logo.svg |   77 +++
 source/media/navigation/favicon.ico   |binary
 source/media/navigation/libo-symbol-white.svg |1 
 source/text/shared/main0108.xhp   |2 
 12 files changed, 142 insertions(+), 75 deletions(-)

New commits:
commit 1d676362d3ee806770ae2abf10ac32f30f97e362
Author: Adolfo Jayme Barrientos 
AuthorDate: Thu Sep 6 04:24:45 2018 -0500
Commit: Andras Timar 
CommitDate: Sun Jul 14 21:18:57 2019 +0200

.howtoget, now more Collabora-y

Commit cef6bdec37d8001d8f8c2c0f30c3a44500e38ec6 mass-changed
LibreOffice’s green with Collabora’s purple, but .howtoget divs,
having a pale green background, looked very discordant.

Change-Id: I05ade2f92f49764b199214ef64cf4091169d61cf
Reviewed-on: https://gerrit.libreoffice.org/60079
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/help3xsl/default.css b/help3xsl/default.css
index b6036f789..7d2adffd5 100644
--- a/help3xsl/default.css
+++ b/help3xsl/default.css
@@ -254,7 +254,7 @@ h6 {
 font-weight: normal;
 }
 .howtoget {
-background: #CCF4C6;
+background: #e4ddff;
 border-left: 4px solid #5c3de2;
 border-radius: 0 4px 4px 0;
 box-shadow: 0 2px 2px -2px rgba(0,0,0,0.2);
commit a4be3f6db22621c0680b3bf382b0387d56aacbbe
Author: Andras Timar 
AuthorDate: Mon Aug 27 15:26:05 2018 +0200
Commit: Andras Timar 
CommitDate: Sun Jul 14 21:18:57 2019 +0200

[cp] Collabora support link

Change-Id: I980fe8fc2779647bbe1dfce649f06b3cbd36f864

diff --git a/source/text/shared/main0108.xhp b/source/text/shared/main0108.xhp
index e8f8d4d60..0d14529a7 100644
--- a/source/text/shared/main0108.xhp
+++ b/source/text/shared/main0108.xhp
@@ -66,7 +66,7 @@
 
 
 Get Help Online
-Opens the community support 
page in the web browser. Use this page to ask questions on using 
%PRODUCTNAME. For professional support with service level agreement, refer to 
the https://www.documentfoundation.org/gethelp/support/;>page 
of professional %PRODUCTNAME support.
+Opens the community support 
page in the web browser. Use this page to ask questions on using 
%PRODUCTNAME. For professional support with service level agreement, refer to 
the https://www.collaboraoffice.com/solutions/support-and-services/;>page of 
professional %PRODUCTNAME support.
 
 
 Send 
Feedback
commit 3b04bb755fa447d5fbf1669bddb55725b667b201
Author: Andras Timar 
AuthorDate: Mon Aug 27 14:40:01 2018 +0200
Commit: Andras Timar 
CommitDate: Sun Jul 14 21:18:57 2019 +0200

[cp] Xapian search styling

Change-Id: I59d8ca6a1c2c5e6310393c69c8f647a22479eee7

diff --git a/help3xsl/default.css b/help3xsl/default.css
index e2bb6b30a..b6036f789 100644
--- a/help3xsl/default.css
+++ b/help3xsl/default.css
@@ -601,7 +601,7 @@ li.disabled a {
 background-color: #5c3de2;
 border: 3px solid #5c3de2;
 border-radius: 8px;
-color: #5c3de2;
+color: white;
 padding: 5px 30px;
 text-align: center;
 text-decoration: none;
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl
index abf8c0f81..40dddc353 100644
--- a/help3xsl/online_transform.xsl
+++ b/help3xsl/online_transform.xsl
@@ -222,6 +222,7 @@
 
 
 
+
 
 
 
commit 4aeac3fa2e9c50c8e32e17e4afb6241264e98ef2
Author: Andras Timar 
AuthorDate: Mon Aug 27 08:43:05 2018 +0200
Commit: Andras Timar 
CommitDate: Sun Jul 14 21:18:57 2019 +0200

[cp] replace Google Search to Xapian Omega search

Change-Id: I0defae3675b0686e15e943ff08014ac98bcbbcbf

diff --git a/help3xsl/default.css b/help3xsl/default.css
index ee6707300..e2bb6b30a 100644
--- a/help3xsl/default.css
+++ b/help3xsl/default.css
@@ -593,10 +593,23 @@ li.disabled a {
 font-size:1.2rem;
 text-align: center;
 }
-.google-search {
-max-width: 300px;
+.xapian-omega-search {
+max-width: 800px;
 margin: 40px auto 0 auto;
 }
+.xapian-omega-search-button {
+background-color: #5c3de2;
+border: 3px solid #5c3de2;
+border-radius: 8px;
+color: #5c3de2;
+padding: 5px 30px;
+text-align: center;
+text-decoration: none;
+display: inline-block;
+font-size: 24px;
+margin: 4px 10px;
+cursor: pointer;
+}
 .modules {
 border-bottom: 2px solid #f3f3f3;
 

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - helpcontent2

2019-07-14 Thread Adolfo Jayme Barrientos (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0f86f8f6418e18a606f8fcdcf7a01fccb9711aa6
Author: Adolfo Jayme Barrientos 
AuthorDate: Thu Sep 6 04:24:45 2018 -0500
Commit: Gerrit Code Review 
CommitDate: Sun Jul 14 22:03:25 2019 +0200

Update git submodules

* Update helpcontent2 from branch 'distro/collabora/cp-6.2'
  - .howtoget, now more Collabora-y

Commit cef6bdec37d8001d8f8c2c0f30c3a44500e38ec6 mass-changed
LibreOffice’s green with Collabora’s purple, but .howtoget divs,
having a pale green background, looked very discordant.

Change-Id: I05ade2f92f49764b199214ef64cf4091169d61cf
Reviewed-on: https://gerrit.libreoffice.org/60079
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

  - [cp] Collabora support link

Change-Id: I980fe8fc2779647bbe1dfce649f06b3cbd36f864

  - [cp] Xapian search styling

Change-Id: I59d8ca6a1c2c5e6310393c69c8f647a22479eee7

  - [cp] replace Google Search to Xapian Omega search

Change-Id: I0defae3675b0686e15e943ff08014ac98bcbbcbf

  - [cp] remove TDF Piwik tracker

Change-Id: Icabdcae5d5828417d3540bf36f6bb747001189e3

  - [cp] help page footer

Change-Id: I257d7dd85a896ff69e391a05206c1cb419997331

  - [cp] Collabora favicon

Change-Id: I00bfc8fff17435356f393de32b585d12c37fea5e

  - [cp] Collabora purple in css

Change-Id: I6295a5d7e83731f7ccf3ca3e0f85ca6778dbe224

  - [cp] Update the header css.

Change-Id: I5f5eeac7d9a95994f8b1ddbe734a7a622013421d
Reviewed-on: https://gerrit.libreoffice.org/58799
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

  - [cp] Exchange the logo.

Change-Id: I138d97fd40764ff455354f4ad53f9a7fb72faba8
Reviewed-on: https://gerrit.libreoffice.org/58797
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

  - [cp] Avoid the donation link.

Change-Id: Ifcf7cf9d3eddcbd2698331f3ca22410427107fb0
Reviewed-on: https://gerrit.libreoffice.org/58796
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

  - set branch to distro/collabora/cp-6.2 in .gitreview

Change-Id: I3611766b7aa9da1444d4aab118fc2a10e0f1d706

diff --git a/helpcontent2 b/helpcontent2
index 455c31acf023..1d676362d3ee 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 455c31acf023c7c739629eb41eb957c5727dd62d
+Subproject commit 1d676362d3ee806770ae2abf10ac32f30f97e362
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126389] New: "New" in macro editing dialog does not create a new macro

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

Bug ID: 126389
   Summary: "New" in macro editing dialog does not create a new
macro
   Product: LibreOffice
   Version: 6.2.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hi-an...@yandex.ru

# Steps to reproduce

1. Open `lowriter` or `localc` (reproducible in either)
2. Go to Tools → Macros → Edit Macros
3. Now, a macros editing window should appear. There, click the button that
says "New" on it.

## Expected

A new empty macro should get created (probably should ask first about the
language a user wants to use)

## Actual

An empty "lowriter" window gets opened (it works the same even if you followed
the steps in "localc")

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

[Libreoffice-bugs] [Bug 58744] EDITING: Cannot search with paragraph breaks or replace with line breaks; inconsistencies in search expressions

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

--- Comment #13 from himajin100...@gmail.com ---
oops, typos
has => has

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

[Libreoffice-bugs] [Bug 58744] EDITING: Cannot search with paragraph breaks or replace with line breaks; inconsistencies in search expressions

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

--- Comment #12 from himajin100...@gmail.com ---
I haven't taken a look closer at the following code, and just a guess.
but it gives me an impression that this code has something to do with the
behavior described in this bug report.

https://opengrok.libreoffice.org/xref/core/sw/source/core/crsr/findtxt.cxx?a=true=28bff4bd=377#377

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

[Libreoffice-bugs] [Bug 126326] FILESAVE XLSX Saving empty file with many sheets is slow

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

--- Comment #3 from Gabor Kelemen  ---
Created attachment 152767
  --> https://bugs.documentfoundation.org/attachment.cgi?id=152767=edit
Screenshot of system monitor on Ubuntu during xlsx save

It's also slow on my local master build (but maybe because of the debug build),
saving takes about 2 MINUTES:

Verzió: 6.4.0.0.alpha0+
Build az.: a871265f202255702541e990d67b605d778d5a92
CPU szálak: 4; OS: Linux 4.15; Felületmegjelenítés: alapértelmezett; VCL: gtk3; 
Területi beállítások: hu-HU (hu_HU.UTF-8); UI-Language: hu-HU
Calc: threaded

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

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

2019-07-14 Thread Christophe JAILLET (via logerrit)
 sfx2/source/dialog/filtergrouping.cxx |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit c816d9daff3bc7e90d9d3523c5756434bfa01414
Author: Christophe JAILLET 
AuthorDate: Sun Jul 14 10:48:31 2019 +0200
Commit: Noel Grandin 
CommitDate: Sun Jul 14 20:44:23 2019 +0200

Simplify OUString concatenation

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

diff --git a/sfx2/source/dialog/filtergrouping.cxx 
b/sfx2/source/dialog/filtergrouping.cxx
index 5a5660f7e550..d8a65266a061 100644
--- a/sfx2/source/dialog/filtergrouping.cxx
+++ b/sfx2/source/dialog/filtergrouping.cxx
@@ -1152,9 +1152,7 @@ namespace sfx2
 // show '*' in extensions only when opening a document
 sExt = sExt.replaceAll("*", "");
 }
-sRet += " (";
-sRet += sExt;
-sRet += ")";
+sRet += " (" + sExt + ")";
 }
 _rFileDlgImpl.addFilterPair( _rDisplayText, sRet );
 return sRet;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - vcl/inc vcl/qt5 vcl/unx

2019-07-14 Thread Stephan Bergmann (via logerrit)
 vcl/inc/qt5/Qt5FilePicker.hxx|5 -
 vcl/inc/qt5/Qt5Instance.hxx  |4 +++-
 vcl/qt5/Qt5FilePicker.cxx|   27 +--
 vcl/qt5/Qt5Instance.cxx  |   16 +---
 vcl/unx/kde5/KDE5FilePicker.hxx  |3 ++-
 vcl/unx/kde5/KDE5FilePicker2.cxx |5 +++--
 vcl/unx/kde5/KDE5SalInstance.cxx |   10 ++
 vcl/unx/kde5/KDE5SalInstance.hxx |3 ++-
 8 files changed, 54 insertions(+), 19 deletions(-)

New commits:
commit 4cbcbb0a45b243971eb2e1da88b28bc03829a18e
Author: Stephan Bergmann 
AuthorDate: Wed Jun 19 15:03:04 2019 +0200
Commit: Jan-Marek Glogowski 
CommitDate: Sun Jul 14 20:43:48 2019 +0200

tdf#125971: map file URLs from QFileDialog to LO internal format

jmux' suggestion at
 turns out 
to be
the correct fix after all; explained in a lengthy comment why that seemingly
wrong call of translateToInternal happens to do the right thing.

(Much of this patch is about passing the XComponentContext down to where it 
is
now needed in Qt5FilePicker::getSelectedFiles.)

Change-Id: I235554f8494cd3094a011d5a903059326db499fc
Reviewed-on: https://gerrit.libreoffice.org/74359
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 
(cherry picked from commit e2589f4584efcf0306ab69f7223abdd7469e3604)
Reviewed-on: https://gerrit.libreoffice.org/75587
Reviewed-by: Jan-Marek Glogowski 

diff --git a/vcl/inc/qt5/Qt5FilePicker.hxx b/vcl/inc/qt5/Qt5FilePicker.hxx
index 74d082a83aa0..d4e74b92ba15 100644
--- a/vcl/inc/qt5/Qt5FilePicker.hxx
+++ b/vcl/inc/qt5/Qt5FilePicker.hxx
@@ -58,6 +58,8 @@ class VCLPLUG_QT5_PUBLIC Qt5FilePicker : public QObject, 
public Qt5FilePicker_Ba
 Q_OBJECT
 
 private:
+css::uno::Reference m_context;
+
 // whether to show (i.e. not remove) the file extension in the filter 
title,
 // e.g. whether to use "ODF Text Document (*.odt)" or just
 // "ODF Text Document" as filter title
@@ -88,7 +90,8 @@ protected:
 public:
 // use non-native file dialog by default; there's no easy way to add 
custom widgets
 // in a generic way in the native one
-explicit Qt5FilePicker(QFileDialog::FileMode, bool 
bShowFileExtensionInFilterTitle = false,
+explicit Qt5FilePicker(css::uno::Reference 
const& context,
+   QFileDialog::FileMode, bool 
bShowFileExtensionInFilterTitle = false,
bool bUseNativeDialog = false);
 virtual ~Qt5FilePicker() override;
 
diff --git a/vcl/inc/qt5/Qt5Instance.hxx b/vcl/inc/qt5/Qt5Instance.hxx
index 2411cdb7f52c..881ac17803d4 100644
--- a/vcl/inc/qt5/Qt5Instance.hxx
+++ b/vcl/inc/qt5/Qt5Instance.hxx
@@ -78,7 +78,9 @@ Q_SIGNALS:
 void deleteObjectLaterSignal(QObject* pObject);
 
 protected:
-virtual Qt5FilePicker* createPicker(QFileDialog::FileMode);
+virtual Qt5FilePicker*
+createPicker(css::uno::Reference const& 
context,
+ QFileDialog::FileMode);
 
 public:
 explicit Qt5Instance(std::unique_ptr& pQApp, bool bUseCairo 
= false);
diff --git a/vcl/qt5/Qt5FilePicker.cxx b/vcl/qt5/Qt5FilePicker.cxx
index 084aa7622a0a..63b3ff79a2bc 100644
--- a/vcl/qt5/Qt5FilePicker.cxx
+++ b/vcl/qt5/Qt5FilePicker.cxx
@@ -33,6 +33,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -77,9 +78,11 @@ uno::Sequence FilePicker_getSupportedServiceNames()
 }
 }
 
-Qt5FilePicker::Qt5FilePicker(QFileDialog::FileMode eMode, bool 
bShowFileExtensionInFilterTitle,
+Qt5FilePicker::Qt5FilePicker(css::uno::Reference 
const& context,
+ QFileDialog::FileMode eMode, bool 
bShowFileExtensionInFilterTitle,
  bool bUseNativeDialog)
 : Qt5FilePicker_Base(m_aHelperMutex)
+, m_context(context)
 , m_bShowFileExtensionInFilterTitle(bShowFileExtensionInFilterTitle)
 , m_pFileDialog(new QFileDialog(nullptr, {}, QDir::homePath()))
 , m_bIsFolderPicker(eMode == QFileDialog::Directory)
@@ -254,9 +257,29 @@ uno::Sequence SAL_CALL 
Qt5FilePicker::getSelectedFiles()
 
 uno::Sequence seq(urls.size());
 
+auto const trans = 
css::uri::ExternalUriReferenceTranslator::create(m_context);
 size_t i = 0;
 for (const QUrl& aURL : urls)
-seq[i++] = toOUString(aURL.toString());
+{
+// Unlike LO, QFileDialog () 
apparently always
+// treats file-system pathnames as UTF-8--encoded, regardless of 
LANG/LC_CTYPE locale
+// setting.  And pathnames containing byte sequences that are not 
valid UTF-8 are apparently
+// filtered out and not even displayed by QFileDialog, so aURL will 
always have a "payload"
+// that matches the pathname's byte sequence.  So the pathname's byte 
sequence (which
+// happens to also be aURL's payload) in the LANG/LC_CTYPE encoding 
needs to be converted
+// into LO's internal UTF-8 file 

[Libreoffice-bugs] [Bug 123840] Opening and closing quotation marks have different format from locale’s default when writing in Cyrillic

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

--- Comment #11 from Regina Henschel  ---
If you use MS Word and switch the keyboard layout to a different language, then
the next input in the document is in the new language. The language indicator
in the status bar in the document switches immediately. If I do the same in
LibreOffice, then the language does not change.

The language keeps the same in LibreOffice, independent of the setting of the
option "Ignore system input language" in Tools > Language Settings > Languages.
I consider it a bug. If the option "Ignore system input language" is off,
switching the keyboard layout should switch language for following inputs in
the document. Or, what is the purpose of that option?

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

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

2019-07-14 Thread Stephan Bergmann (via logerrit)
 sc/source/ui/drawfunc/drawsh.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit d7c2e893d8fd7c8e515c4cf075e62ea1baacdf17
Author: Stephan Bergmann 
AuthorDate: Sun Jul 14 13:37:24 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Sun Jul 14 20:39:05 2019 +0200

-Werror=deprecated

("implicit capture of ‘this’ via ‘[=]’ is deprecated in C++20"; but the
recommended replacement with [=,this] leads to "'this' cannot be explicitly
captured when the capture default is '='" failures in older C++ versions)

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

diff --git a/sc/source/ui/drawfunc/drawsh.cxx b/sc/source/ui/drawfunc/drawsh.cxx
index 5e680fa598d7..5991c57bf56c 100644
--- a/sc/source/ui/drawfunc/drawsh.cxx
+++ b/sc/source/ui/drawfunc/drawsh.cxx
@@ -283,7 +283,8 @@ void ScDrawShell::ExecDrawAttr( SfxRequest& rReq )
 aCombSet.Put( aNewGeoAttr );
 pDlg->SetInputSet(  );
 
-pDlg->StartExecuteAsync([=](sal_Int32 nResult){
+pDlg->StartExecuteAsync([pDlg, pRequest, 
pView, this](
+sal_Int32 nResult){
 if (nResult == RET_OK)
 {
 
pRequest->Done(*(pDlg->GetOutputItemSet()));
@@ -301,7 +302,8 @@ void ScDrawShell::ExecDrawAttr( SfxRequest& rReq )
 SvxAbstractDialogFactory* pFact = 
SvxAbstractDialogFactory::Create();
 VclPtr 
pDlg(pFact->CreateSvxTransformTabDialog(pWin ? pWin->GetFrameWeld() : nullptr, 
, pView));
 
-pDlg->StartExecuteAsync([=](sal_Int32 nResult){
+pDlg->StartExecuteAsync([pDlg, pRequest, 
pView, this](
+sal_Int32 nResult){
 if (nResult == RET_OK)
 {
 
pRequest->Done(*(pDlg->GetOutputItemSet()));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-07-14 Thread Stephan Bergmann (via logerrit)
 sw/source/uibase/shells/drwbassh.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 45415384b38156d2c83599e5c91de376c0c788ac
Author: Stephan Bergmann 
AuthorDate: Sun Jul 14 17:14:58 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Sun Jul 14 20:32:22 2019 +0200

rMarkList shall presumably be captured by reference

...in the lambda introduced by f86578129a14e2e70a50a9e13afaed7ad522463a
"lokdialog: Convert the Format -> Position and Size... to async exec for sw"

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

diff --git a/sw/source/uibase/shells/drwbassh.cxx 
b/sw/source/uibase/shells/drwbassh.cxx
index 2b6a66393cb1..4cc10c9be1d1 100644
--- a/sw/source/uibase/shells/drwbassh.cxx
+++ b/sw/source/uibase/shells/drwbassh.cxx
@@ -239,7 +239,7 @@ void SwDrawBaseShell::Execute(SfxRequest const )
 
 pDlg->SetInputSet(  );
 
-pDlg->StartExecuteAsync([=](sal_Int32 nResult){
+pDlg->StartExecuteAsync([=, ](sal_Int32 
nResult){
 if (nResult == RET_OK)
 {
 SwFormatVertOrient 
aVOrientFinal(pFrameFormat->GetFormatAttr(RES_VERT_ORIENT));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 123840] Opening and closing quotation marks have different format from locale’s default when writing in Cyrillic

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

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

   What|Removed |Added

 CC||jl...@mail.com,
   ||rb.hensc...@t-online.de

--- Comment #10 from Roman Kuznetsov <79045_79...@mail.ru> ---
Justin, Regina, what do you think about David's "problem"?

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

Re: version 102.11 of OpenSymbol

2019-07-14 Thread Regina Henschel

Hi Andras,

thank you. Can you please add it to version 6.3 too? "harpoon" and 
"wideharpoon" is a new feature in 6.3, see release notes 
https://wiki.documentfoundation.org/ReleaseNotes/6.3#Math


Kind regards
Regina

Andras Timar schrieb am 14-Jul-19 um 15:19:

Hi Regina,

On Sat, Jul 13, 2019 at 5:48 PM Regina Henschel 
> wrote:


Hi all,

can someone please update opens___.tff to version 102.11? The package
has still version 102.10. (bug 126374). I don't know how to do it.
Perhaps in addition add an instruction to the README in
/core/extras/source/truetype/symbol/?

Done on master.
https://gerrit.libreoffice.org/#/c/75577/
https://gerrit.libreoffice.org/#/c/75578/

Best regards,
Andras


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



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

[Libreoffice-bugs] [Bug 124227] Calc chart - incomplete copy paste

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

Buovjaga  changed:

   What|Removed |Added

 OS|Windows (All)   |All
   Keywords||bibisected, regression
Version|6.1.5.2 release |4.2.0.4 release
 Ever confirmed|0   |1
 CC||todven...@suomi24.fi
 Blocks||102593
 Status|UNCONFIRMED |NEW

--- Comment #6 from Buovjaga  ---
Steps:
1. Open attachment 150144
2. Copy the chart and paste to a new Impress presentation

The pasted result should have all the lines, but since 4.2 some are missing.

Bibisected with 42max to range:
https://gerrit.libreoffice.org/plugins/gitiles/core/+log/c7bdee8dbd1cf260a8513a0d31b36f90daa70f1c..ec0080c40cfdb26896537f47a4c2e0439f9afdb1
which has lots of Calc commits.


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 102593] [META] Paste bugs and enhancements

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

Buovjaga  changed:

   What|Removed |Added

 Depends on||124227


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 126146] Pasting to text box keeps pasting old contents in certain scenarios

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

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #2 from raal  ---
works for me in Version: 6.4.0.0.alpha0+
Build ID: 9b7729c6e224dfbe89e309aab8e8fd392fc234ad
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
probably Win only

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

[Libreoffice-bugs] [Bug 98543] Improve chart wizard when passing categories column to XY (scatter) chart

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

raal  changed:

   What|Removed |Added

  Component|Calc|Chart
   Severity|enhancement |normal
 CC||r...@post.cz

--- Comment #4 from raal  ---
(In reply to Regina Henschel from comment #2)
> The errorwas introduced between OOo3.2.1 and OOo3.4.1.

then it's not an enhancement, but 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 98543] Improve chart wizard when passing categories column to XY (scatter) chart

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

raal  changed:

   What|Removed |Added

 CC||davi...@clarkson.edu

--- Comment #3 from raal  ---
*** Bug 126149 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 126149] EDITING: Chart Wizard XY Scatter is plot not populating X-Values field

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

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||r...@post.cz

--- Comment #6 from raal  ---
Hello,

Thank you for submitting the bug. The bug has previously been reported, so this
bug will be added as a duplicate of it. You will automatically be CCed to
updates made to the other bug.

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

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

[Libreoffice-commits] core.git: include/oox

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/oox/vml/vmlformatting.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f8aa265698858f45378195282f5d666a8f59d44e
Author: Andrea Gelmini 
AuthorDate: Thu Jul 11 22:25:25 2019 +
Commit: Julien Nabet 
CommitDate: Sun Jul 14 19:19:28 2019 +0200

Fix typo

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

diff --git a/include/oox/vml/vmlformatting.hxx 
b/include/oox/vml/vmlformatting.hxx
index 50e91c1bea92..875f0ecbfd98 100644
--- a/include/oox/vml/vmlformatting.hxx
+++ b/include/oox/vml/vmlformatting.hxx
@@ -175,7 +175,7 @@ namespace ConversionHelper
 }
 
 
-/** The stroke arrow model structure contains all properties for an line end 
arrow. */
+/** The stroke arrow model structure contains all properties for a line end 
arrow. */
 struct StrokeArrowModel
 {
 OptValue< sal_Int32 > moArrowType;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: include/onlineupdate

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/onlineupdate/mozilla/TypeTraits.h |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a5a012290aa7250892bd254c8dd5036679350c8f
Author: Andrea Gelmini 
AuthorDate: Sun Jul 14 13:51:51 2019 +
Commit: Julien Nabet 
CommitDate: Sun Jul 14 19:17:45 2019 +0200

Fix typo

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

diff --git a/include/onlineupdate/mozilla/TypeTraits.h 
b/include/onlineupdate/mozilla/TypeTraits.h
index 16ef7ddb0cda..7ca9d3315837 100644
--- a/include/onlineupdate/mozilla/TypeTraits.h
+++ b/include/onlineupdate/mozilla/TypeTraits.h
@@ -974,7 +974,7 @@ struct MakeUnsigned
  * If T is already an unsigned integer type (not including char!), then T is
  * produced.
  *
- * Otherwise, if T is an signed integer type, the unsigned variety of T, with
+ * Otherwise, if T is a signed integer type, the unsigned variety of T, with
  * T's const/volatile qualifiers, is produced.
  *
  * Otherwise, the unsigned integral type of the same size as T, with the lowest
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: include/osl

2019-07-14 Thread Andrea Gelmini (via logerrit)
 include/osl/file.h |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a6afd69364f43f5971140e7fc4289c7cd3eb02bc
Author: Andrea Gelmini 
AuthorDate: Thu Jul 11 22:25:24 2019 +
Commit: Julien Nabet 
CommitDate: Sun Jul 14 19:16:19 2019 +0200

Fix typo

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

diff --git a/include/osl/file.h b/include/osl/file.h
index 9548ed8d7571..ebba23af47c4 100644
--- a/include/osl/file.h
+++ b/include/osl/file.h
@@ -74,7 +74,7 @@ for a "FileExists". This should only be done when processing 
a single file
 (i.e. before opening) and NEVER during enumeration of directory contents on
 any step of information processing. This would change the runtime behaviour
 from O(n) to O(n*n/2) on nearly every file system.  On Windows NT reading the
-contents of an directory with 7000 entries and getting full information about
+contents of a directory with 7000 entries and getting full information about
 every file only takes 0.6 seconds. Specifying the flag
 osl_FileStatus_Mask_Validate for each entry will increase the time to 180
 seconds (!!!).
@@ -151,7 +151,7 @@ typedef void *oslDirectoryItem;
 @retval osl_File_E_None on success
 @retval osl_File_E_INVAL the format of the parameters was not valid
 @retval osl_File_E_NOENT the specified path doesn't exist
-@retval osl_File_E_NOTDIR the specified path is not an directory
+@retval osl_File_E_NOTDIR the specified path is not a directory
 @retval osl_File_E_NOMEM not enough memory for allocating structures
 @retval osl_File_E_ACCES permission denied
 @retval osl_File_E_MFILE too many open files used by the process
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 123840] Opening and closing quotation marks have different format from locale’s default when writing in Cyrillic

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

--- Comment #9 from david.cortes.riv...@gmail.com ---
(In reply to Roman Kuznetsov from comment #8)
> (In reply to david.cortes.rivera from comment #7)
>  
> > But the thing is, by the time I write the closing quote character, I've
> > already switched language to English, and if I were to write the same thing
> > in a simple text editor or in MS office, it would show the English quote
> > character (which is what I'm typing, Cyrillic one would be under a different
> > key altogether).
> 
> Did you just toggle keyboard layout or did you select language for paragraph
> using Tools->Language->For paragraph inside LibreOffice?

I mean, I toggled keyboard layout. That is, I follow these steps:
- Write a few words in English.
- Open quoting parenthesis.
- Switch layout to Cyrillic.
- Write a word in Cyrillic, without any spaces before or after.
- Switch the layout back to English.
- Insert closing parenthesis.

In other software, I get an English closing quote when I do that.

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

[Libreoffice-bugs] [Bug 122676] FORMATTING Currency Negative Values does not Correctly Apply (*) with a Space

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

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 OS|Windows (All)   |All
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #5 from Buovjaga  ---
NEW per Raal's result.

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

[Libreoffice-bugs] [Bug 123670] EDITING: cell selection changed selecting multiple columns via keyboard

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

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #7 from Buovjaga  ---
Regarding OpenOffice, Oliver was referring to the *old* versions. This Bugzilla
is for LibreOffice, not Apache OpenOffice. So as you are happy with Excel
matching Calc, let's close.

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

[Libreoffice-bugs] [Bug 120685] Page setup in Draw will not honor exact custom dimensions

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

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Keywords||bibisected, bisected,
   ||regression
 CC||caol...@redhat.com,
   ||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #3 from Buovjaga  ---
Confirmed. Some kind of floating point glitch?

Requirement is to first set the measurement unit to Point from Options - Draw -
General.

Bibisected with win32-6.1 to
https://gerrit.libreoffice.org/plugins/gitiles/core/+/73b1aeca87d050634bae9194632601561dedec06%5E%21/
weld SvxPageDescPage

Adding Cc: to Caolán McNamara

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

[Libreoffice-bugs] [Bug 123670] EDITING: cell selection changed selecting multiple columns via keyboard

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

--- Comment #6 from don  ---
Thanks so very much for looking at this. I agree with Oliver that ALL versions
of Excel and Calc responded as he described. The problem is these new versions
of Open Office, as he confirms in his last comments, no longer behave as
before.

I'm not a developer or coder but have used SuperCalc / Excel / Calc for years
and they all used the same logic for the selection of a range: lock on the
start cell then select an end cell based on the movement of the cursor. This
allowed efficient movement to the end of a row (data headers) with a simple end
right then  to the bottom of the data with end down. In the new OpenOffice
versions the selection focus is stuck in the start cell so one can start the
selection in, say, cell A!, move out to the end column with end right, but end
down stops in the first empty cell in column A, ignoring what happens in the
last column.

I hope this explains the situation. Please ask me again if I can be of help.

Thanks again!
Don

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

[Libreoffice-bugs] [Bug 126368] LO crashs when printing graphic/image

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

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #4 from raal  ---
No crash Version: 6.4.0.0.alpha0+
Build ID: 9b7729c6e224dfbe89e309aab8e8fd392fc234ad
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
printer Lexmark E352dn
but nothing printed...

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

[Libreoffice-bugs] [Bug 123840] Opening and closing quotation marks have different format from locale’s default when writing in Cyrillic

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

--- Comment #8 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to david.cortes.rivera from comment #7)

> But the thing is, by the time I write the closing quote character, I've
> already switched language to English, and if I were to write the same thing
> in a simple text editor or in MS office, it would show the English quote
> character (which is what I'm typing, Cyrillic one would be under a different
> key altogether).

Did you just toggle keyboard layout or did you select language for paragraph
using Tools->Language->For paragraph inside LibreOffice?

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

[Libreoffice-bugs] [Bug 123840] Opening and closing quotation marks have different format from locale’s default when writing in Cyrillic

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

--- Comment #7 from david.cortes.riv...@gmail.com ---
(In reply to Roman Kuznetsov from comment #6)
> (In reply to Buovjaga from comment #5)
> > I can't repro.
> > 
> > Roman: can you test?
> > 
> > Arch Linux 64-bit
> > Version: 6.4.0.0.alpha0+
> > Build ID: 1ce1c26dd98e6477139e08d1ebe89fa950ff5fb0
> > CPU threads: 8; OS: Linux 5.2; UI render: default; VCL: gtk3; 
> > Locale: fi-FI (fi_FI.UTF-8); UI-Language: en-US
> > Calc: threaded
> > Built on 12 July 2019
> 
> I can repro this, but it's not a bug. 
> 
> English language has own quotes like ", but Russian (or other Cyrillic)
> language has own qoutes like ». And LO recognizes Cyrillic language and uses
> after it » quotes as part of Cyrillic word. (Look at status bar when text
> cursor is inside Cyrillic word).
> 
> David should select language for all paragraph as English if he wants use
> only " quotes.
> 
> Or he can use Tools->AutoCorrect->AutoCorrect options-> Localized options
> tab and try play with it.

But the thing is, by the time I write the closing quote character, I've already
switched language to English, and if I were to write the same thing in a simple
text editor or in MS office, it would show the English quote character (which
is what I'm typing, Cyrillic one would be under a different key altogether).

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

[Libreoffice-bugs] [Bug 123577] Web view: Lag and CPU spikes when inserting, deleting, or reordering bulleted lists, numbered lists, and paragraphs

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

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #3 from Buovjaga  ---
To get more variation in the tests, you could try the appimage version (maybe
6.3 or 6.4): https://libreoffice.soluzioniopen.com/

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

[Libreoffice-bugs] [Bug 126351] Crash in: Invalid signature

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

deme...@gmail.com changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 126351] Crash in: Invalid signature

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

--- Comment #8 from deme...@gmail.com ---
(In reply to demeler from comment #7)
> (In reply to Jan-Marek Glogowski from comment #6)
> > Quoting from your mail (please just use bugzilla, as nobody else can follow
> > mail replies):
> > 
> > > xiscofa...@libreoffice.org identified the issue - this works:
> > >
> > > 'SAL_USE_VCLPLUGIN=gen /opt/libreoffice6.2/program/soffice'
> > >
> > > Do you still want me to use the latest build?
> > 
> > That would be great.
> 
> I tried this file:
> libreoffice-6-2~2019-07-11_09.35.49_LibreOfficeDev_6.2.6.0.0_Linux_x86-
> 64_rpm.tar.gz
> from the current directory. After installing it with 'yum localinstall *rpm'
> I could not find 'soffice' in this distribution. Is there another file I
> should have downloaded for the rpm-based distribution?
> 
> 
> > Xiscos command is just a workaround, so LO uses the x11 / gen backend to
> > handle stuff. No more theming, native file pickers, Desktop settings lookup,
> > etc.
> > 
> > > If this is related to Qt, I do have a custom Qt *5* installation on my
> > > CentOS 7 box. Not sure if this could interfere.
> > 
> > Would be interesting to know, if your Qt version is >= 5.9. If not it's a
> > good indicator, that this is the same problem then bug 126272.
> 
> My Qt version is 5.11.1
> 
> 
> > 
> > (In reply to demeler from comment #5)
> > > Version: 6.2.5.2
> > > Build ID: 1ec314fa52f458adc18c4f025c545a4e8b22c159
> > > CPU threads: 6; OS: Linux 3.10; UI render: default; VCL: x11; 
> > > Locale: en-US (en_US.UTF-8); UI-Language: en-US
> > > Calc: threaded
> > 
> > No - that is from Xiscos command :-)
> > 
> > I was interested in the same from your previous working version (6.2.3 I
> > assume). As you can see it says "VCL: x11". I expect your previous version
> > says "VCL: kde4".
> 
> You are right!
> 
> I was able to run 6.1, here is the "About" statement:
> Version: 6.1.6.3
> Build ID: 5896ab1714085361c45cf540f76f60673dd96a72
> CPU threads: 6; OS: Linux 3.10; UI render: default; VCL: kde4; 
> Locale: en-US (en_US.UTF-8); Calc: group threaded
> 
> > And I expect the current daily build to say "VCL: kde5" and not crash. If
> > you are interested in more background info you can read bug 126272, which
> > has some larger analysis of the potential origins of the crashes. Nobody
> > knows yet why LO is crashing, but I implemented some possible fixes.
> > 
> > (In reply to demeler from comment #0)
> > > I tried to find out if there were any missing dynamic libs, like this:
> > > 
> > > ldd ./soffice.bin | grep found
> > > 
> > > which should show any missing libs, but nothing is missing.
> > 
> > Yup - this is just the main program. But depending on the detected
> > environment LO loads different VCL plugins (libvclplug_*lo.so), which are
> > linked to the libraries of your DE, like gtk3, kde4, kde5 or just x11 (gen).
> 
> At this point it would be helpful to get a link to the latest build RPM
> tar.gz archive *file* that I can download and test again.
> 
> Thanks!

Folks...
Apologies, I had checked the wrong directory. The file I downloaded has
everything I need. I verified it works! So the recent changes to the
development version take care of the problem :)

Here is the "About" info from the development version:
Version: 6.2.6.0.0+
Build ID: 45cf5d55221b92e395948cb2e36d6ae6f056b1a3
CPU threads: 6; OS: Linux 3.10; UI render: default; VCL: kde4; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:libreoffice-6-2, Time:
2019-07-11_09:35:49
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: CL

It is not showing kde5 since I doubt CentOS 7 is already switched to kde5, so
it is still kde4.

Thank you all!

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

[Libreoffice-bugs] [Bug 123297] Libreoffice writer on Xubuntu adds blank pages on multiple inputs

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

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #6 from Buovjaga  ---
No blanks here. I also tried with the gtk2 UI backend as that is what Xfce
uses.

Could you link to the Ubuntu bug report? You can input it to the "See also"
field.

Arch Linux 64-bit
Version: 6.4.0.0.alpha0+
Build ID: 1ce1c26dd98e6477139e08d1ebe89fa950ff5fb0
CPU threads: 8; OS: Linux 5.2; UI render: default; VCL: gtk3; 
Locale: fi-FI (fi_FI.UTF-8); UI-Language: en-US
Calc: threaded
Built on 12 July 2019

Arch Linux 64-bit
Version: 6.2.5.2
Build ID: 6.2.5-1
CPU threads: 8; OS: Linux 5.2; UI render: default; VCL: kde5; 
Locale: fi-FI (fi_FI.UTF-8); UI-Language: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 123840] Opening and closing quotation marks have different format from locale’s default when writing in Cyrillic

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

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

   What|Removed |Added

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

--- Comment #6 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to Buovjaga from comment #5)
> I can't repro.
> 
> Roman: can you test?
> 
> Arch Linux 64-bit
> Version: 6.4.0.0.alpha0+
> Build ID: 1ce1c26dd98e6477139e08d1ebe89fa950ff5fb0
> CPU threads: 8; OS: Linux 5.2; UI render: default; VCL: gtk3; 
> Locale: fi-FI (fi_FI.UTF-8); UI-Language: en-US
> Calc: threaded
> Built on 12 July 2019

I can repro this, but it's not a bug. 

English language has own quotes like ", but Russian (or other Cyrillic)
language has own qoutes like ». And LO recognizes Cyrillic language and uses
after it » quotes as part of Cyrillic word. (Look at status bar when text
cursor is inside Cyrillic word).

David should select language for all paragraph as English if he wants use only
" quotes.

Or he can use Tools->AutoCorrect->AutoCorrect options-> Localized options tab
and try play with it.

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

[Libreoffice-commits] core.git: 2 commits - bin/oss-fuzz-build.sh configure.ac download.lst extras/source solenv/flatpak-manifest.in

2019-07-14 Thread Andras Timar (via logerrit)
 bin/oss-fuzz-build.sh|2 +-
 configure.ac |2 +-
 download.lst |2 +-
 extras/source/truetype/symbol/README |6 ++
 solenv/flatpak-manifest.in   |6 +++---
 5 files changed, 12 insertions(+), 6 deletions(-)

New commits:
commit 02aa72b7a894e20888456024bba544a1313de937
Author: Andras Timar 
AuthorDate: Sun Jul 14 15:10:16 2019 +0200
Commit: Andras Timar 
CommitDate: Sun Jul 14 18:26:03 2019 +0200

instructions how to update opens___.ttf on TDF server

Change-Id: Ie33cceab8b959466059040deb756b50c2fd75b46
Reviewed-on: https://gerrit.libreoffice.org/75578
Tested-by: Jenkins
Reviewed-by: Andras Timar 

diff --git a/extras/source/truetype/symbol/README 
b/extras/source/truetype/symbol/README
index 80d8975a113d..0fb8bdeb3963 100644
--- a/extras/source/truetype/symbol/README
+++ b/extras/source/truetype/symbol/README
@@ -23,3 +23,9 @@ Fragments of OpenSymbol are mapped internally to a number of 
other
 fonts for interoperability purposes. See
 unotools/source/misc/fontcvt.cxx pwrt, the StarSymbol conversion
 tables.
+
+Update opens___.ttf on TDF server:
+scp opens___.ttf 
libreoff...@dev-www.libreoffice.org:/srv/www/dev-www.libreoffice.org/extern/$(sha256sum
 opens___.ttf | awk '{ print $1 }')-opens___.ttf
+
+Update sha256sums in source files like in this example commit:
+https://gerrit.libreoffice.org/#/c/75577/
commit 231fb0441981de788716c7574f03a9cef9c0e268
Author: Andras Timar 
AuthorDate: Sun Jul 14 14:39:20 2019 +0200
Commit: Andras Timar 
CommitDate: Sun Jul 14 18:25:55 2019 +0200

tdf#120047 use new opens___.ttf version 102.11

Change-Id: Iad48c663708dc9cda00d2a8534981f34c1c6f9d0
Reviewed-on: https://gerrit.libreoffice.org/75577
Tested-by: Jenkins
Reviewed-by: Andras Timar 

diff --git a/bin/oss-fuzz-build.sh b/bin/oss-fuzz-build.sh
index 0e37243c8a7c..646accc8a017 100755
--- a/bin/oss-fuzz-build.sh
+++ b/bin/oss-fuzz-build.sh
@@ -31,7 +31,7 @@ for a in *fuzzer; do
 #some minimal fonts required
 mv $a $OUT
 mkdir -p $OUT/$a.fonts
-cp 
$SRC/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf
 ../share/fonts/truetype/Liberation* $OUT/$a.fonts
+cp 
$SRC/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf
 ../share/fonts/truetype/Liberation* $OUT/$a.fonts
 #minimal runtime requirements
 cp templateservices.rdb $OUT/$a.services.rdb
 cp types.rdb $OUT/$a.types.rdb
diff --git a/configure.ac b/configure.ac
index 1a4725a2..2ef45d1cdd7c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11552,7 +11552,7 @@ if test "$enable_build_opensymbol" = "yes"; then
 fi
 else
 AC_MSG_RESULT([no])
-
OPENSYMBOL_TTF=49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf
+
OPENSYMBOL_TTF=884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf
 BUILD_TYPE="$BUILD_TYPE OPENSYMBOL"
 fi
 AC_SUBST(OPENSYMBOL_TTF)
diff --git a/download.lst b/download.lst
index 0fea7d9b17c2..d6e4716f 100644
--- a/download.lst
+++ b/download.lst
@@ -258,4 +258,4 @@ export ZMF_TARBALL := libzmf-0.0.2.tar.xz
 
 NUMBERTEXT_EXTENSION_SHA256SUM := 
1568ed1d2feb8210bb5de61d69574a165cded536cfa17c6953c9064076469de2
 UNOWINREG_SHA256SUM := 
eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6
-OPENSYMBOL_SHA256SUM := 
49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63
+OPENSYMBOL_SHA256SUM := 
884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc
diff --git a/solenv/flatpak-manifest.in b/solenv/flatpak-manifest.in
index ad6cdd6a3c83..7e72c5eb795c 100644
--- a/solenv/flatpak-manifest.in
+++ b/solenv/flatpak-manifest.in
@@ -563,10 +563,10 @@
 "dest-filename": 
"external/tarballs/libatomic_ops-7.6.8.tar.gz"
 },
 {
-"url": 
"https://dev-www.libreoffice.org/extern/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf;,
-"sha256": 
"49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63",
+"url": 
"https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf;,
+"sha256": 
"884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc",
 "type": "file",
-"dest-filename": 
"external/tarballs/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf"
+"dest-filename": 
"external/tarballs/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf"
 }
 ],
 "buildsystem": "simple",
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 123960] Conflicting shortcuts in Sheet menu of Calc

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

Buovjaga  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 CC||todven...@suomi24.fi
 Status|UNCONFIRMED |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 98259] [META] Keyboard shortcuts and accelerators bugs and enhancements

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

Bug 123960 Summary: Conflicting shortcuts in Sheet menu of Calc
https://bugs.documentfoundation.org/show_bug.cgi?id=123960

   What|Removed |Added

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

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

  1   2   >