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

2019-12-23 Thread Andrea Gelmini (via logerrit)
 writerfilter/source/dmapper/DomainMapper.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit aba8e26120a6cabe65d43a3f089ee802cfbbe338
Author: Andrea Gelmini 
AuthorDate: Fri Dec 20 18:26:26 2019 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Dec 24 07:08:19 2019 +0100

Fix grammar

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

diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index c284285d5b4f..3d47c93732e1 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -3036,7 +3036,7 @@ void 
DomainMapper::lcl_startShape(uno::Reference const& xShape)
 if (m_pImpl->m_nTableDepth > 0) //if we had a table
 {
 uno::Reference xShapePropSet(xShape, 
uno::UNO_QUERY);
-sal_Int16 nCurrentHorOriRel; //A temp variable for storaging the 
current setting
+sal_Int16 nCurrentHorOriRel; //A temp variable to store the current 
setting
 xShapePropSet->getPropertyValue("HoriOrientRelation") >>= 
nCurrentHorOriRel;
 //and the correction:
 if (nCurrentHorOriRel == text::RelOrientation::PAGE_FRAME)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129595] New: Insert current date only inserts month and day

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129595

Bug ID: 129595
   Summary: Insert current date only inserts month and day
   Product: LibreOffice
   Version: 6.2.8.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gyrlg...@protonmail.com

Description:

Inserting the current date using a shortcut key does not take into account the
number of years, you can only insert a simple date.
There is no option to change this, it is a completely meaningless function.
The purpose of inserting the current date is to keep track of the present, that
is, the year, month, and day.
This creates confusion when the years go by. this year's date? next year? or
last year?
The current time insertion needs to be changed to insert all dates.
As fast as possible. I don't want to use libre6.3.4. Not suitable for normal
use at all due to the crash and instability in kdeneon5.17.

Steps to Reproduce:
1.Set Customize> Insert Current Date to the applicable key.


Actual Results:
2.Insert current date


Expected Results:
You will see that only the date is inserted



Reproducible: Always


User Profile Reset: Yes



Additional Info:
Current date should include years

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


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

2019-12-23 Thread Muhammet Kara (via logerrit)
 sw/source/uibase/sidebar/PageOrientationControl.cxx |8 
 1 file changed, 8 insertions(+)

New commits:
commit 1ef21ea98b46267d82da017ab2fec8e05d8e638b
Author: Muhammet Kara 
AuthorDate: Fri Dec 20 20:35:00 2019 +0300
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Dec 24 05:48:32 2019 +0100

tdf#129526: Prevent accidental toggling of page orientation

Change-Id: I3145cb34ec782c1aa60fe864a6ec7c195185ad18
Reviewed-on: https://gerrit.libreoffice.org/85637
Tested-by: Jenkins
Reviewed-by: Muhammet Kara 
(cherry picked from commit aeab5bfa024f7d15099730fa536d78b5a7a7ea01)
Reviewed-on: https://gerrit.libreoffice.org/85737
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/sw/source/uibase/sidebar/PageOrientationControl.cxx 
b/sw/source/uibase/sidebar/PageOrientationControl.cxx
index 0d9844efef36..9d9caa418b1d 100644
--- a/sw/source/uibase/sidebar/PageOrientationControl.cxx
+++ b/sw/source/uibase/sidebar/PageOrientationControl.cxx
@@ -114,6 +114,14 @@ void PageOrientationControl::ExecuteOrientationChange( 
const bool bLandscape )
 
SfxViewFrame::Current()->GetBindings().GetDispatcher()->QueryState(SID_ATTR_PAGE_SIZE,
 pItem);
 mpPageSizeItem.reset( static_cast(pItem->Clone()) );
 
+// Prevent accidental toggling of page orientation
+if ((mpPageSizeItem->GetWidth() > mpPageSizeItem->GetHeight()) == 
bLandscape)
+{
+if ( mxUndoManager.is() )
+mxUndoManager->leaveUndoContext();
+return;
+}
+
 
SfxViewFrame::Current()->GetBindings().GetDispatcher()->QueryState(SID_ATTR_PAGE_LRSPACE,
 pItem);
 mpPageLRMarginItem.reset( static_cast(pItem->Clone()) 
);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129593] Language Settings Dialog UI update

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129593

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||er...@redhat.com,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
 Status|UNCONFIRMED |NEW

--- Comment #2 from V Stuart Foote  ---
+1, for Tools -> Options -> Languages it does make sense to separate the User
Interface from the Locale related formats.

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


[Libreoffice-ux-advise] [Bug 129593] Language Settings Dialog UI update

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129593

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||er...@redhat.com,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
 Status|UNCONFIRMED |NEW

--- Comment #2 from V Stuart Foote  ---
+1, for Tools -> Options -> Languages it does make sense to separate the User
Interface from the Locale related formats.

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


[Libreoffice-bugs] [Bug 129443] End Space Symbols Not Showing

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129443

--- Comment #2 from Martin Jacob  ---

There’s certainly a great deal to know about this topic. I like all the points
you’ve made. 
http://login-help.com/tamu-webassign-login-sign-up/

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


[Libreoffice-bugs] [Bug 129594] New: Wrong Page Left/Right Margin Rendered in ODS File

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129594

Bug ID: 129594
   Summary: Wrong Page Left/Right Margin Rendered in ODS File
   Product: LibreOffice
   Version: 6.2.8.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: suokunl...@126.com

Created attachment 156768
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156768=edit
test ODS file

Steps to Reproduce:
1. Open the attached ODS file. Observe that the page left margin is 1cm.
(Format -> Page)
2. Print Preview. Observe that the left margin is wrongly rendered as zero.
3. Close print preview, and change the page right margin to 1cm (previously it
is 0cm). Then close and reopen the page format dialog. --> The right margin is
wrongly reset to zero.

Expected Result:
In step 2, the left margin in print preview should be the same as in page
format settings.
In step 3, the right page margin should be the value as set in step 2.

版本: 6.2.8.2
Build ID: f82ddfca21ebc1e222a662a32b25c0c9d20169ee
CPU 线程: 4; 操作系统: Linux 5.0; UI 渲染: 默认; VCL: gtk3; 
区域语言: zh-CN (zh_CN.UTF-8); UI 语言: zh-CN
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 121398] Powers of negative numbers highly inconsistent

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121398

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

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 118081] MP4 not playing with K-Lite codec pack & OpenGL enabled

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118081

--- Comment #6 from QA Administrators  ---
Dear Telesto,

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 124763] unable to open *any* document if path includes %xx

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124763

--- Comment #4 from QA Administrators  ---
Dear Martin Rienesl,

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 126118] Bad font size or/and move to new line

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126118

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

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 122294] When inserting a data from data source add a row number column

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122294

--- Comment #4 from QA Administrators  ---
Dear Alex Ander,

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 129518] CF dialog - All cells - Color scale (2 or 3 items) => wrong layout for Russian UI

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129518

Aron Budea  changed:

   What|Removed |Added

Version|6.5.0.0.alpha0+ Master  |6.3.0.4 release
 Ever confirmed|0   |1
 CC||ba...@caesar.elte.hu
 Status|UNCONFIRMED |NEW

--- Comment #5 from Aron Budea  ---
I can repro in 6.4.0.1 / Windows with Russian UI. Also in 6.3.0.4, but not in
6.2.0.3. I checked in Linux by hacking together bibisect repo + translation,
and can't repro there, likely because the "Color Scale (3 Entries)" (in
Russian) isn't displayed in full, and the dropdown is shorter.

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


[Libreoffice-bugs] [Bug 129584] Enhancement: add word count to Calc and other components of LibreOffice so that it's not just Writer

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129584

iantheprogram...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Keywords||needsUXEval
 Ever confirmed|0   |1
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

--- Comment #2 from iantheprogram...@gmail.com ---
UX Team -- please take a look at this enhancement. Thanks!

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


[Libreoffice-ux-advise] [Bug 129584] Enhancement: add word count to Calc and other components of LibreOffice so that it's not just Writer

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129584

iantheprogram...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Keywords||needsUXEval
 Ever confirmed|0   |1
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

--- Comment #2 from iantheprogram...@gmail.com ---
UX Team -- please take a look at this enhancement. Thanks!

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


[Libreoffice-bugs] [Bug 84909] [META] Enhancing Impress/Draw toolbars and context menu

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84909
Bug 84909 depends on bug 118454, which changed state.

Bug 118454 Summary: Impress doesn't have word counter.
https://bugs.documentfoundation.org/show_bug.cgi?id=118454

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 129584] Enhancement: add word count to Calc and other components of LibreOffice so that it's not just Writer

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129584

iantheprogram...@gmail.com changed:

   What|Removed |Added

 CC||heitor...@gmail.com

--- Comment #1 from iantheprogram...@gmail.com ---
*** Bug 118454 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 118454] Impress doesn't have word counter.

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118454

iantheprogram...@gmail.com changed:

   What|Removed |Added

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

--- Comment #2 from iantheprogram...@gmail.com ---
This is a more specific request of Bug 129584:
https://bugs.documentfoundation.org/show_bug.cgi?id=129584#add_comment

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

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


[Libreoffice-bugs] [Bug 122218] After Update to 6.1.4 on macOS fonts are blurred on retina display (xcode 10)

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122218

--- Comment #127 from Roger Paradise  ---
Created attachment 156767
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156767=edit
Comparison of 6.2.8.2 and 6.4.0.1 on MacBook Pro 2014.

Screenshot showing comparison of 6.2.8.2 and 6.4.0.1 on MacBook Pro 2014. Still
seeing the 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 129591] Edu tips - writing service review

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129591

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
  Component|BASIC   |deletionRequest

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


[Libreoffice-bugs] [Bug 129593] Language Settings Dialog UI update

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129593

--- Comment #1 from andreas_k  ---
Created attachment 156766
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156766=edit
update proposal

as UI Language is different from the other items in the section.

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


[Libreoffice-bugs] [Bug 129593] Language Settings Dialog UI update

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129593

andreas_k  changed:

   What|Removed |Added

 CC||kain...@gmail.com
   Keywords||needsUXEval

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


[Libreoffice-bugs] [Bug 129593] New: Language Settings Dialog UI update

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129593

Bug ID: 129593
   Summary: Language Settings Dialog UI update
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kain...@gmail.com

Created attachment 156765
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156765=edit
6.4 Dialog

6.4 Dialog

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


[Libreoffice-bugs] [Bug 129586] Dropdown lists too narrow in Conditional Formatting - Icon Set editor

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129586

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
Summary|dropdown lists are too  |Dropdown lists too narrow
   |narrow  |in Conditional Formatting -
   ||Icon Set editor

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


[Libreoffice-bugs] [Bug 129591] Edu tips - writing service review

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129591

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

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


[Libreoffice-bugs] [Bug 126862] [META] Issues with unusual builds / unit tests

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126862
Bug 126862 depends on bug 126127, which changed state.

Bug 126127 Summary: Loading some .docx causes -fsanitize=signed-integer-overflow
https://bugs.documentfoundation.org/show_bug.cgi?id=126127

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 93855] EDITING: Indent lost when deleting next line/bullet point

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93855

--- Comment #10 from ravingd...@yahoo.de ---
Yup. Seems to work now (Test on 6.3.4.2 on Windows 10).

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


[Libreoffice-bugs] [Bug 129592] New: Crash after canceling file recovery (KDE VCL), regression.

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129592

Bug ID: 129592
   Summary: Crash after canceling file recovery (KDE VCL),
regression.
   Product: LibreOffice
   Version: 6.3.3.2 release
  Hardware: x86 (IA32)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: leftcr...@tutanota.com

Description:
Applies to all programs in the suite. I've experienced this problem for the
past few months. It occurs about 50% of the time and then goes away after a
couple unsuccessful launches.

Resetting the user profile fixes it I believe (I think that's how I fixed it at
one point, until the next crash).

Regression of bug https://bugs.documentfoundation.org/show_bug.cgi?id=122116



Steps to Reproduce:
1. open a file
2. kill the program (I usually do it by opening browser tabs until the X server
freezes forcing me to a hard shut down :), which is very common on Linux).
3. open the program and hit discard at recovery.

Actual Results:
Crash

Expected Results:
don't crash


Reproducible: Sometimes


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:

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


[Libreoffice-bugs] [Bug 129589] LibreOffice Calc converts external reference formula to small caps and external links are borken

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129589

m.a.riosv  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from m.a.riosv  ---
Please verify it is not a problem with Menu/tools/Options/LibreOffice
calc/Formula - Formula options - formula syntax.

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


[Libreoffice-bugs] [Bug 129591] New: Edu tips - writing service review

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129591

Bug ID: 129591
   Summary: Edu tips - writing service review
   Product: LibreOffice
   Version: 3.3.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nikk.9...@gmail.com

Description:
Is essaywriter.org scam? I have been ordering with essaywriters for some time
now, and I can say they have awesome writers. But I would suggest they check on
the pricing, because a friend referred me to theprofessorshelp.com and I got
the same top quality paper, at a much lower price. Otherwise, essaywriters is
okay.
https://scamfighter.net/review/essaywriter.org


Actual Results:
https://scamfighter.net/review/essaywriter.org


Expected Results:
https://scamfighter.net/review/essaywriter.org



Reproducible: Always


User Profile Reset: No



Additional Info:

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


[Libreoffice-bugs] [Bug 129517] problems with documentation for Position for numbered lists

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129517

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.5.0

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


[Libreoffice-bugs] [Bug 129517] problems with documentation for Position for numbered lists

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129517

--- Comment #1 from Commit Notification 
 ---
Seth Chaiklin committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/cae6f986df84bc86b4c238532ed0ded1ac7701c5

tdf#129517 add some missing words to a heading

-- 
You are receiving this mail because:
You 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: helpcontent2

2019-12-23 Thread Seth Chaiklin (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0640bbac3c0b9e51e659c1d2b86d9a79a6dfa225
Author: Seth Chaiklin 
AuthorDate: Fri Dec 20 14:18:30 2019 +0100
Commit: Gerrit Code Review 
CommitDate: Mon Dec 23 19:38:26 2019 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - tdf#129517 add some missing words to a heading

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

diff --git a/helpcontent2 b/helpcontent2
index 32de39e587a6..cae6f986df84 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 32de39e587a6b4c1e51c03d0a9497e8c871ac60b
+Subproject commit cae6f986df84bc86b4c238532ed0ded1ac7701c5
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2019-12-23 Thread Seth Chaiklin (via logerrit)
 source/text/shared/01/06050600.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cae6f986df84bc86b4c238532ed0ded1ac7701c5
Author: Seth Chaiklin 
AuthorDate: Fri Dec 20 14:18:30 2019 +0100
Commit: Olivier Hallot 
CommitDate: Mon Dec 23 19:38:26 2019 +0100

tdf#129517 add some missing words to a heading

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

diff --git a/source/text/shared/01/06050600.xhp 
b/source/text/shared/01/06050600.xhp
index 4639cb0c9..255c4ca33 100644
--- a/source/text/shared/01/06050600.xhp
+++ b/source/text/shared/01/06050600.xhp
@@ -47,7 +47,7 @@
 Numbering followed by
 Select the element that will follow the numbering: a tab stop, a space, 
a line break, or nothing.
 
-at
+Tab 
stop at
 If you select a tab stop to follow the numbering, you can enter a 
non-negative value as the tab stop position.
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit aff7533cd540fbfe03181d8582155fcc480fec07
Author: LibreOfficiant 
AuthorDate: Fri Dec 20 11:58:33 2019 +0100
Commit: Gerrit Code Review 
CommitDate: Mon Dec 23 19:33:15 2019 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - tdf#62326   literal notations

 notation isn't supported

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

diff --git a/helpcontent2 b/helpcontent2
index 646c34d055c4..32de39e587a6 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 646c34d055c438fb8d0dc583fc2e75d9c4e026f7
+Subproject commit 32de39e587a6b4c1e51c03d0a9497e8c871ac60b
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2019-12-23 Thread LibreOfficiant (via logerrit)
 source/text/sbasic/shared/01020100.xhp |   25 +
 1 file changed, 21 insertions(+), 4 deletions(-)

New commits:
commit 32de39e587a6b4c1e51c03d0a9497e8c871ac60b
Author: LibreOfficiant 
AuthorDate: Fri Dec 20 11:58:33 2019 +0100
Commit: Olivier Hallot 
CommitDate: Mon Dec 23 19:33:15 2019 +0100

tdf#62326   literal notations

 notation isn't supported

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

diff --git a/source/text/sbasic/shared/01020100.xhp 
b/source/text/sbasic/shared/01020100.xhp
index 8c68531a6..8b777f7ba 100644
--- a/source/text/sbasic/shared/01020100.xhp
+++ b/source/text/sbasic/shared/01020100.xhp
@@ -27,7 +27,6 @@
 
 
 
-
 
 
   names of variables
@@ -35,6 +34,13 @@
   types of variables
   declaring variables
   values;of variables
+  literals;integer
+  literals;hexadecimal
+  literals;integer
+  literals;octal
+  literals;h notation
+  literals;o notation
+  literals;floating-point
   constants
   arrays;declaring
   defining;constants
@@ -117,16 +123,16 @@
 If a decimal 
number is assigned to an integer variable, %PRODUCTNAME Basic rounds the figure 
up or down.information from "Programming Guide for BASIC" about 
decimal variables
 
 Single 
Variables
-Single 
variables can take positive or negative values ranging from 3.402823 x 10E38 to 
1.401298 x 10E-45. Single variables are floating-point variables, in which the 
decimal precision decreases as the non-decimal part of the number increases. 
Single variables are suitable for mathematical calculations of average 
precision. Calculations require more time than for Integer variables, but are 
faster than calculations with Double variables. A Single variable requires 4 
bytes of memory. The type-declaration character is "!".
+Single 
variables can take positive or negative values ranging from 3.402823 x 10E38 to 
1.401298 x 10E-45. Single variables are floating-point variables, in which the 
decimal precision decreases as the non-decimal part of the number increases. 
Single variables are suitable for mathematical calculations of average 
precision. Calculations require more time than for Integer variables, but are 
faster than calculations with Double variables. A Single variable requires 4 
bytes of memory. The type-declaration character is "!".
 
 Dim Variable!
 Dim Variable As Single
 
 
 Double 
Variables
-Double 
variables can take positive or negative values ranging from 1.79769313486232 x 
10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point 
variables, in which the decimal precision decreases as the non-decimal part of 
the number increases. Double variables are suitable for precise calculations. 
Calculations require more time than for Single variables. A Double variable 
requires 8 bytes of memory. The type-declaration character is "#".
+Double 
variables can take positive or negative values ranging from 1.79769313486232 x 
10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point 
variables, in which the decimal precision decreases as the non-decimal part of 
the number increases. Double variables are suitable for precise calculations. 
Calculations require more time than for Single variables. A Double variable 
requires 8 bytes of memory. The type-declaration character is "#".
 
-Dim Variable#
+Dim 
Variable#
 Dim Variable As Double
 
 
@@ -137,6 +143,17 @@
 Dim Variable As Currency
 
 
+Literals for integers
+Numbers can be encoded 
using octal and hexadecimal forms.
+
+  xi = 
o13 8 + 3
+  ci = 
h65  6*16 + 5
+  MAX_Integer =  o7   32767 = 
h7FFF
+  MIN_Integer = o10  -32768 = 
h8000
+  MAX_Long = h7fff   2147483647 = 
o177
+  MIN_Long = h8000  -2147483648 = 
o200
+
+
 String 
Variables
 String 
variables can hold character strings with up to 65,535 characters. Each 
character is stored as the corresponding Unicode value. String variables are 
suitable for word processing within programs and for temporary storage of any 
non-printable character up to a maximum length of 64 Kbytes. The memory 
required for storing string variables depends on the number of characters in 
the variable. The type-declaration character is "$".
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2019-12-23 Thread Seth Chaiklin (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 476c97de167bdf74c7be18dd585ce759d896865f
Author: Seth Chaiklin 
AuthorDate: Sun Dec 22 16:21:32 2019 +0100
Commit: Gerrit Code Review 
CommitDate: Mon Dec 23 19:27:22 2019 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - corrections in help for Table of Contents dialog box

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

diff --git a/helpcontent2 b/helpcontent2
index 8e68f0fed48b..646c34d055c4 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 8e68f0fed48b0f79beefc5f784d4db848ee87f72
+Subproject commit 646c34d055c438fb8d0dc583fc2e75d9c4e026f7
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2019-12-23 Thread Seth Chaiklin (via logerrit)
 source/text/swriter/01/04120211.xhp |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

New commits:
commit 646c34d055c438fb8d0dc583fc2e75d9c4e026f7
Author: Seth Chaiklin 
AuthorDate: Sun Dec 22 16:21:32 2019 +0100
Commit: Olivier Hallot 
CommitDate: Mon Dec 23 19:27:22 2019 +0100

corrections in help for Table of Contents dialog box

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

diff --git a/source/text/swriter/01/04120211.xhp 
b/source/text/swriter/01/04120211.xhp
index 0e3ed0dec..cbeabe2b2 100644
--- a/source/text/swriter/01/04120211.xhp
+++ b/source/text/swriter/01/04120211.xhp
@@ -40,7 +40,7 @@
  Specify the type and title of the index.
 
 Type
- Select the 
type of index that you want to insert. The options available on this 
tab depend on the index type that you select. If the cursor is in an index when 
you choose the Insert - Table of Contents and Index - Table of Contents, 
Index or Bibliography, you can then edit that index.
+ Select the 
type of index that you want to insert or edit. The options available on 
this tab depend on the index type that you select. If the cursor is in an index 
when you choose the Insert - Table of Contents and Index - Table of 
Contents, Index or Bibliography, you can then edit that 
index.
 
 Title
  Enter a 
title for the selected index.
@@ -50,17 +50,18 @@
   
   
 
-Create index for
- Select 
whether to create the index for the document or for the current 
chapter.
+Create Index or Table of Contents
+For
+Select whether to create the index 
for the document or for the current chapter.
   
 
-Evaluation level
+Evaluate up to level
   Enter the number of heading levels 
to include in the index.
   Create from
   Use this 
area to specify which information to include in an index.
 
 Outline
-  Creates the index using 
outline levels, that is, paragraphs formatted with one of the predefined 
heading styles (Heading 1-10) are added to the index.
+  Creates the index using 
outline levels. Paragraphs formatted with one of the predefined heading styles 
(Heading 1-10) are added to the index.
   You can also assign the outline levels in the Outline  Numbering tab page of 
the Format - Paragraph dialog.
 
 Additional Styles
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129564] Insert Picture function default directory problem

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129564

Samuel Mehrbrodt (CIB)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||s.mehrbr...@gmail.com
 Ever confirmed|0   |1

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


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

2019-12-23 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8901b52731af3f59a97b754f59c132ef2714eb91
Author: Olivier Hallot 
AuthorDate: Fri Dec 20 06:47:12 2019 -0300
Commit: Gerrit Code Review 
CommitDate: Mon Dec 23 18:08:58 2019 +0100

Update git submodules

* Update helpcontent2 from branch 'libreoffice-6-4'
  - Add screenshot for Impress General Option page

Adjust screenshot for Presenter Console too

Change-Id: I84d0df90e26315ca57670e2ad6334ba69bece9c2
Reviewed-on: https://gerrit.libreoffice.org/85581
Tested-by: Jenkins
Reviewed-by: Sophie Gautier 
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 7cd48742114d..8419c8580a72 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 7cd48742114dd42f4c23e2ffd71d006d2dcbbc0b
+Subproject commit 8419c8580a72267485ba008190c104990bdbf40c
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2019-12-23 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c5f56fb2346c852971f4677f95f520055290
Author: Olivier Hallot 
AuthorDate: Wed Dec 18 22:49:15 2019 +0100
Commit: Gerrit Code Review 
CommitDate: Mon Dec 23 18:08:38 2019 +0100

Update git submodules

* Update helpcontent2 from branch 'libreoffice-6-4'
  - Proper use of ; in OPT_* examples

Change-Id: Iec0e1b4112f9d91a397566c8ff51969b6c15f8a7
Reviewed-on: https://gerrit.libreoffice.org/85443
Tested-by: Jenkins
Reviewed-by: Sophie Gautier 
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 4ef8c5d41404..7cd48742114d 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 4ef8c5d414041e4017908968c93355bde247e09b
+Subproject commit 7cd48742114dd42f4c23e2ffd71d006d2dcbbc0b
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Branch 'libreoffice-6-4' - source/text

2019-12-23 Thread Olivier Hallot (via logerrit)
 source/text/scalc/01/func_opt_barrier.xhp  |6 +++---
 source/text/scalc/01/func_opt_prob_hit.xhp |6 +++---
 source/text/scalc/01/func_opt_prob_inmoney.xhp |   14 +++---
 source/text/scalc/01/func_opt_touch.xhp|   18 +-
 4 files changed, 22 insertions(+), 22 deletions(-)

New commits:
commit 7cd48742114dd42f4c23e2ffd71d006d2dcbbc0b
Author: Olivier Hallot 
AuthorDate: Wed Dec 18 22:49:15 2019 +0100
Commit: Olivier Hallot 
CommitDate: Mon Dec 23 18:08:38 2019 +0100

Proper use of ; in OPT_* examples

Change-Id: Iec0e1b4112f9d91a397566c8ff51969b6c15f8a7
Reviewed-on: https://gerrit.libreoffice.org/85443
Tested-by: Jenkins
Reviewed-by: Sophie Gautier 
Reviewed-by: Olivier Hallot 

diff --git a/source/text/scalc/01/func_opt_barrier.xhp 
b/source/text/scalc/01/func_opt_barrier.xhp
index 805baef58..5b0a90086 100644
--- a/source/text/scalc/01/func_opt_barrier.xhp
+++ b/source/text/scalc/01/func_opt_barrier.xhp
@@ -27,7 +27,7 @@
 
 
 
-OPT_BARRIER(Spot; 
Volatility; Rate; Foreign Rate; Maturity; Strike; Lower Barrier; Upper Barrier; 
Rebate; Put or Call; In or Out; Barrier Monitoring; Greek)
+OPT_BARRIER(Spot; 
Volatility; Rate; Foreign Rate; Maturity; Strike; LowerBarrier; UpperBarrier; 
Rebate; PutCall; InOut; BarrierMonitoring; Greek)
 
 
 
@@ -42,8 +42,8 @@
 
 
 
-=OPT_BARRIER(30,0.2,0.06,0,1,40,25,0,0,"c","o","c")
  returns the value 0.4243.
-=OPT_BARRIER(50,0.4,0.05,0,0.5,65,0,80,0,"p","o","c","e")
  returns the value 10.1585.
+=OPT_BARRIER(30;0.2;0.06;0;1;40;25;0;0;"c";"o";"c")
 returns the value 0.4243.
+=OPT_BARRIER(50;0.4;0.05;0;0.5;65;0;80;0;"p";"o";"c";"e")
 returns the value 10.1585.
 
 
 
diff --git a/source/text/scalc/01/func_opt_prob_hit.xhp 
b/source/text/scalc/01/func_opt_prob_hit.xhp
index b8b365c1e..f0517e197 100644
--- a/source/text/scalc/01/func_opt_prob_hit.xhp
+++ b/source/text/scalc/01/func_opt_prob_hit.xhp
@@ -31,7 +31,7 @@
 
 
 
-OPT_PROB_HIT(Spot; 
Volatility; Drift; Maturity; Lower Barrier; Upper Barrier)
+OPT_PROB_HIT(Spot; 
Volatility; Drift; Maturity; LowerBarrier; UpperBarrier)
 
 
 Drift is the annual stock price percentage drift 
rate (µ in the above formula). The value is expressed as a decimal (for 
example, enter 15% as 0.15).
@@ -40,8 +40,8 @@
 
 
 
-=OPT_PROB_HIT(30,0.2,0.3,1,0,40)  
returns the value 0.6119.
-=OPT_PROB_HIT(70,0.3,0.1,0.5,60,0)  
returns the value 0.4239.
+=OPT_PROB_HIT(30;0.2;0.3;1;0;40)  
returns the value 0.6119.
+=OPT_PROB_HIT(70;0.3;0.1;0.5;60;0)  
returns the value 0.4239.
 
 
 
diff --git a/source/text/scalc/01/func_opt_prob_inmoney.xhp 
b/source/text/scalc/01/func_opt_prob_inmoney.xhp
index 05ee298d4..44e385bf5 100644
--- a/source/text/scalc/01/func_opt_prob_inmoney.xhp
+++ b/source/text/scalc/01/func_opt_prob_inmoney.xhp
@@ -20,20 +20,20 @@
 
 OPT_PROB_INMONEY function
 
-
+
 OPT_PROB_INMONEY
 Returns the 
probability that an asset will end up between two barrier levels at maturity, 
assuming that the stock price can be modeled as a process S that follows the 
stochastic differential equation, as follows.
 
 OPT_PROB_INMONEY equation
 
 µ is the asset’s percentage 
drift, vol is the percentage volatility of the stock, and 
dW is a random sample drawn from a normal distribution with 
a zero mean. W is a Wiener process or Brownian 
motion.
-If the optional 
Strike and Put or Call arguments are included, 
then
+If the optional 
Strike and PutCall arguments are included, 
then
 
 
-For a 
call option, the function returns the probability that the asset will end up 
between Strike and Upper Barrier.
+For a 
call option, the function returns the probability that the asset will end up 
between Strike and UpperBarrier.
 
 
-For a 
put option, the function returns the probability that the asset will end up 
between Lower Barrier and Strike.
+For a 
put option, the function returns the probability that the asset will end up 
between LowerBarrier and Strike.
 
 
 The function 
ignores the possibility of knock-out before maturity.
@@ -41,7 +41,7 @@
 
 
 
-OPT_PROB_INMONEY(Spot; 
Volatility; Drift; Maturity; Lower Barrier; Upper Barrier; Strike; Put or 
Call)
+OPT_PROB_INMONEY(Spot; 
Volatility; Drift; Maturity; LowerBarrier; UpperBarrier; Strike; 
PutCall)
 
 
 
@@ -49,8 +49,8 @@
 
 
 
-=OPT_PROB_INMONEY(30,0.2,0.1,1,0,50)  
returns the value 0.9844.
-=OPT_PROB_INMONEY(70,0.3,0.15,1,60,0,80,"p")
  returns the value 0.3440.
+=OPT_PROB_INMONEY(30;0.2;0.1;1;0;50) 
returns the value 0.9844.
+

[Libreoffice-commits] help.git: Branch 'libreoffice-6-4' - AllLangHelp_shared.mk Package_html_media.mk source/media source/text

2019-12-23 Thread Olivier Hallot (via logerrit)
 AllLangHelp_shared.mk  
|1 
 Package_html_media.mk  
|5 -
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/OptSavePage.png
 |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/af/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/am/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/ar/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/as/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/ast/OptSavePage.png
 |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/be/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/bg/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/bn-IN/OptSavePage.png
   |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/bn/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/bo/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/br/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/brx/OptSavePage.png
 |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/bs/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/ca-valencia/OptSavePage.png
 |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/ca/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/cs/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/cy/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/da/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/de/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/dgo/OptSavePage.png
 |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/dsb/OptSavePage.png
 |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/dz/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/el/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/en-GB/OptSavePage.png
   |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/en-ZA/OptSavePage.png
   |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/eo/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/es/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/et/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/eu/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/fa/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/fi/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/fr/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/fy/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/ga/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/gd/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/gl/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/gu/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/gug/OptSavePage.png
 |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/he/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/hi/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/hr/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/hsb/OptSavePage.png
 |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/hu/OptSavePage.png
  |binary
 
source/media/screenshots/modules/simpress/ui/optimpressgeneralpage/id/OptSavePage.png
  |binary
 

[Libreoffice-bugs] [Bug 129566] office.com/setup

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129566

Oliver Brinzing  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
URL|http://gooffice-setup.uk.co |
   |m/  |
 Resolution|--- |INVALID

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


[Libreoffice-bugs] [Bug 129587] Unselect "Same value for both" - Crash

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129587

--- Comment #4 from Julien Nabet  ---
Just to be clear, I didn't see where was "Same value for both" but reproduced
it by doing:
- click on Y axis
- click on one of the chart line

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


[Libreoffice-bugs] [Bug 129587] Unselect "Same value for both" - Crash

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129587

--- Comment #3 from Julien Nabet  ---
Created attachment 156759
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156759=edit
Valgrind trace

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


[Libreoffice-bugs] [Bug 129587] Unselect "Same value for both" - Crash

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129587

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

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

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

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


[Libreoffice-bugs] [Bug 129587] Unselect "Same value for both" - Crash

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129587

Julien Nabet  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
   Severity|normal  |major
   Keywords||haveBacktrace
   Priority|medium  |high

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


[Libreoffice-bugs] [Bug 114482] Circular reference accumulator, err:523 or miscalculation

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114482

--- Comment #16 from sarti_ca...@yahoo.com  ---
Not considering the fact that you want try a solution to an impossible equation
(nearly there is not solution), you must set minimum change to very high value.
I am the person that, with a my bug, has done change the Libre Office version
to 6.2, to solve the problem the correct loop number.
B1=A1+B1 is a determined equation and it operates as a piggy bank. Starting
from A1=0 and B1=0 (piggy bank empty), if you put in it 10 Euro (A1=10), you
have B1=10 (final data in piggy bank). Then you must reset A1, before to have
another enter.
Minimum change must be higher than money put in piggy bank, to avoid the
err:523.

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


[Libreoffice-bugs] [Bug 129590] New: Multiple error message boxes when exporting an opened PDF file (overwriting attempt).

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129590

Bug ID: 129590
   Summary: Multiple error message boxes when exporting an opened
PDF file (overwriting attempt).
   Product: LibreOffice
   Version: 6.5.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: glo...@fbihome.de

Description:
First I get two "access denied" error messages, then a "I/O error" message.
Everything as Windows message boxes. I'm not sure a part is from the OS via
some developer debugging stuff. But it's simply a bit much.

Steps to Reproduce:
1. Open Writer
2. Export document as PDF
3. Open PDF in Acrobat Reader
4. Export document as PDF again and try to overwrite the file

Actual Results:
Three message boxes with some general error message.

Expected Results:
Only one error message.


Reproducible: Always


User Profile Reset: No



Additional Info:
Tests were done with my Windows dev master build, but I guess this will happen
just on Windows, because of the file locking / open semantics of the OS.

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


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

2019-12-23 Thread Caolán McNamara (via logerrit)
 vcl/unx/gtk3/gtk3gtkobject.cxx |   20 +---
 1 file changed, 17 insertions(+), 3 deletions(-)

New commits:
commit 5bc2c2c1c86bbf92da4c8210e095e3a9a2928aa6
Author: Caolán McNamara 
AuthorDate: Mon Dec 23 15:10:11 2019 +
Commit: Caolán McNamara 
CommitDate: Mon Dec 23 17:25:29 2019 +0100

call gtk_widget_size_allocate explicitly

otherwise native gtk sidebar widgets are not initially positioned 
automatically

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

diff --git a/vcl/unx/gtk3/gtk3gtkobject.cxx b/vcl/unx/gtk3/gtk3gtkobject.cxx
index 93db53a159ec..d038a6121432 100644
--- a/vcl/unx/gtk3/gtk3gtkobject.cxx
+++ b/vcl/unx/gtk3/gtk3gtkobject.cxx
@@ -344,11 +344,25 @@ void GtkSalObjectWidgetClip::ApplyClipRegion()
 if( m_pSocket )
 {
 GtkFixed* pContainer = 
GTK_FIXED(gtk_widget_get_parent(m_pScrolledWindow));
-gtk_fixed_move(pContainer, m_pScrolledWindow, m_aRect.Left() + 
m_aClipRect.Left(), m_aRect.Top() + m_aClipRect.Top());
+
+GtkAllocation allocation;
+allocation.x = m_aRect.Left() + m_aClipRect.Left();
+allocation.y = m_aRect.Top() + m_aClipRect.Top();
 if (m_aClipRect.IsEmpty())
-gtk_widget_set_size_request(m_pScrolledWindow, m_aRect.GetWidth(), 
m_aRect.GetHeight());
+{
+allocation.width = m_aRect.GetWidth();
+allocation.height = m_aRect.GetHeight();
+}
 else
-gtk_widget_set_size_request(m_pScrolledWindow, 
m_aClipRect.GetWidth(), m_aClipRect.GetHeight());
+{
+allocation.width = m_aClipRect.GetWidth();
+allocation.height = m_aClipRect.GetHeight();
+}
+
+gtk_fixed_move(pContainer, m_pScrolledWindow, allocation.x, 
allocation.y);
+gtk_widget_set_size_request(m_pScrolledWindow, allocation.width, 
allocation.height);
+gtk_widget_size_allocate(m_pScrolledWindow, );
+
 
gtk_adjustment_set_value(gtk_scrolled_window_get_hadjustment(GTK_SCROLLED_WINDOW(m_pScrolledWindow)),
 m_aClipRect.Left());
 
gtk_adjustment_set_value(gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(m_pScrolledWindow)),
 m_aClipRect.Top());
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129589] New: LibreOffice Calc converts external reference formula to small caps and external links are borken

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129589

Bug ID: 129589
   Summary: LibreOffice Calc converts external reference formula
to small caps and external links are borken
   Product: LibreOffice
   Version: 6.3.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kobz...@gmail.com

Description:
I've updated LibreOffice to 6.3.3 and now I face a strange problem.
I'm using two stock market programs and I receive data by using DDE Links.
Until 6.3.3 it was working perfectly but somehow LibreOffice Calc started to
convert DDE link reference to small caps and thus broke data update returning a
Error 509, entering the code manually doesn't work either, Calc converts it to
small caps too 

Steps to Reproduce:
1. Copy a DDE Link or write an external Link. Two different examples:
 a) =FX|'ARCLK.ISE'!'Last''
or
 b) =MTX|DATA!'ARCLK.SON'

2. Paste it to an empty Calc cell
3. 

Actual Results:
Calc converts the code as: 

1 -  a) =fx;'arclk.ıse'!'last'
 b) =mtx;data!'arclk.son'

Expected Results:
Calc should not change the capitalization


Reproducible: Always


User Profile Reset: No



Additional Info:
I'm not sure about the previous version working version of LibreOffice so i am
attaching the original file. I've reinstalled Windows and reinstalled
LibreOffice so no data available about the previous version.

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


[Libreoffice-bugs] [Bug 76131] Existing pinned icon on Win7/8 is taskbar invalid after re-installation/update

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76131

--- Comment #41 from MikeB  ---
vistama...@web.de has asked for this to be "normal".  

I concur.  With so many users reporting this and the fix being reported as
relatively easy, I'd really like to see this minor but annoying bug fixed.

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


[Libreoffice-bugs] [Bug 114482] Circular reference accumulator, err:523 or miscalculation

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114482

--- Comment #15 from m.a.riosv  ---
Hi Carlos it's fine rethink before posting.
To use this kind of expression the option for iterative references must be
enable, it is there just for that.
https://help.libreoffice.org/6.4/en-US/text/shared/optionen/01060500.html?DbPAR=SHARED#bm_id3149399

-- 
You are receiving this mail because:
You 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/sfx2 include/svtools include/vcl sfx2/Library_sfx.mk sfx2/source svtools/source vcl/source vcl/unx

2019-12-23 Thread Caolán McNamara (via logerrit)
 include/sfx2/sidebar/ControllerFactory.hxx  |7 +
 include/sfx2/weldutils.hxx  |   54 +
 include/svtools/generictoolboxcontroller.hxx|   47 +---
 include/vcl/weld.hxx|6 +
 include/vcl/weldutils.hxx   |   14 --
 sfx2/Library_sfx.mk |1 
 sfx2/source/dialog/recfloat.cxx |3 
 sfx2/source/inc/recfloat.hxx|6 -
 sfx2/source/sidebar/ControllerFactory.cxx   |   49 
 sfx2/source/toolbox/weldutils.cxx   |  135 
 svtools/source/uno/generictoolboxcontroller.cxx |  104 --
 vcl/source/app/salvtables.cxx   |   30 +
 vcl/source/app/weldutils.cxx|   32 -
 vcl/unx/gtk3/gtk3gtkinst.cxx|   36 ++
 14 files changed, 426 insertions(+), 98 deletions(-)

New commits:
commit b7570a5f9d026f7cd6f064594bd7599fe36e9a14
Author: Caolán McNamara 
AuthorDate: Mon Dec 23 11:16:28 2019 +
Commit: Caolán McNamara 
CommitDate: Mon Dec 23 17:00:58 2019 +0100

reorganize ToolbarUnoDispatcher to be useful for sidebar

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

diff --git a/include/sfx2/sidebar/ControllerFactory.hxx 
b/include/sfx2/sidebar/ControllerFactory.hxx
index 056271701110..c54de67b5545 100644
--- a/include/sfx2/sidebar/ControllerFactory.hxx
+++ b/include/sfx2/sidebar/ControllerFactory.hxx
@@ -29,6 +29,8 @@ namespace com::sun::star::frame { class XToolbarController; }
 
 class ToolBox;
 
+namespace weld { class Toolbar; }
+
 namespace sfx2 { namespace sidebar {
 
 /** Convenience class for the easy creation of toolbox controllers.
@@ -45,6 +47,11 @@ public:
 const css::uno::Reference& rxParentWindow,
 const sal_Int32 nItemWidth);
 
+static css::uno::Reference 
CreateToolBoxController(
+weld::Toolbar& rToolbar,
+const OUString& rsCommandName,
+const css::uno::Reference& rxFrame);
+
 private:
 static css::uno::Reference 
CreateToolBarController(
 ToolBox* pToolBox,
diff --git a/include/sfx2/weldutils.hxx b/include/sfx2/weldutils.hxx
new file mode 100644
index ..ccca8b393042
--- /dev/null
+++ b/include/sfx2/weldutils.hxx
@@ -0,0 +1,54 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef INCLUDED_SFX2_WELDUTILS_HXX
+#define INCLUDED_SFX2_WELDUTILS_HXX
+
+#include 
+#include 
+
+#include 
+#include 
+#include 
+
+#include 
+
+namespace weld
+{
+class Toolbar;
+}
+
+class SFX2_DLLPUBLIC ToolbarUnoDispatcher
+{
+private:
+css::uno::Reference m_xFrame;
+weld::Toolbar* m_pToolbar;
+
+DECL_LINK(SelectHdl, const OString&, void);
+
+void CreateController(const OUString& rCommand);
+
+typedef std::map>
+ControllerContainer;
+ControllerContainer maControllers;
+
+css::uno::Reference
+GetControllerForCommand(const OUString& rCommand) const;
+
+public:
+// fill in the label and icons for actions and dispatch the action on item 
click
+ToolbarUnoDispatcher(weld::Toolbar& rToolbar,
+ const css::uno::Reference& 
rFrame);
+void dispose();
+~ToolbarUnoDispatcher();
+};
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/svtools/generictoolboxcontroller.hxx 
b/include/svtools/generictoolboxcontroller.hxx
index 6b9c11cc3924..ddf8dc06cee8 100644
--- a/include/svtools/generictoolboxcontroller.hxx
+++ b/include/svtools/generictoolboxcontroller.hxx
@@ -24,33 +24,46 @@
 #include 
 #include 
 
+namespace weld
+{
+class Toolbar;
+}
+
 namespace svt
 {
 
 class SVT_DLLPUBLIC GenericToolboxController final : public 
svt::ToolboxController
 {
-public:
-GenericToolboxController( const css::uno::Reference< 
css::uno::XComponentContext >& rxContext,
-  const css::uno::Reference< 
css::frame::XFrame >& rFrame,
-  ToolBox* pToolBox,
-  sal_uInt16   nID,
-  const OUString& aCommand );
-virtual ~GenericToolboxController() override;
+public:
+GenericToolboxController( const css::uno::Reference< 
css::uno::XComponentContext >& rxContext,
+  const css::uno::Reference< css::frame::XFrame >& 
rFrame,
+  ToolBox* pToolBox,
+  sal_uInt16   nID,
+  const OUString& 

[Libreoffice-bugs] [Bug 35092] Inking functionality: Ink drawings / annotations with Stylus, Pen or Finger on Touchscreen or Tablet

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35092

--- Comment #20 from Otyemmanuel  ---
OK, so basically what you would want is for LibreOffice be able to acccept
tablet computer input into images, with just a black-and-white "trail" of the
pen being collected? (I have no idea how hard that would be to implement; I
certainly don't want to give the impression that any developer would start
working on it right away.. https://www.studydriller.com/;>Best
academic and scholarship website.

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


[Libreoffice-bugs] [Bug 129577] after installation the attached files are lost

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129577

--- Comment #3 from vistama...@web.de ---
thank you Stuart for finding the main thread

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


[Libreoffice-bugs] [Bug 129588] New: calc, calculate, dependencies: a cell with a formula should evaluate to the same value regardless where you move (not copy) it into the sheet.

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129588

Bug ID: 129588
   Summary: calc, calculate, dependencies: a cell with a formula
should evaluate to the same value regardless where you
move (not copy) it into the sheet.
   Product: LibreOffice
   Version: 4.1.6.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: newbie...@gmx.de

Description:
Bug Hunting Session 6.4 RC1: 

this: 

https://bugs.documentfoundation.org/show_bug.cgi?id=81757

quite old bug is still virulent in RC1. 

there are other reports about it, e.g. #129199. 

i'll try to boil down and provide a simplier sheet. 

Steps to Reproduce:
see #81757

Actual Results:
cell calculation neglects formula dependencies (and follows reverse order of
cells on sheet? only when iteration is enabled?) 

Expected Results:
cells should be evaluated as good as possible


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Version: 6.4.0.1 (x64)
Build ID: 1b6477b31f0334bd8620a96f0aeeb449b587be9f
CPU threads: 8; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: GL; VCL:
win; 
Locale: de-DE (de_DE); UI-Language: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 129587] Unselect "Same value for both" - Crash

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129587

raal  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
 CC||muhammet.k...@collabora.com
   ||, r...@post.cz

--- Comment #1 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Muhammet Kara ; Could you possibly take a look at this one?
Thanks

3ebde304b765f931262a9656f8bd7e8dbfbabda9 is the first bad commit
commit 3ebde304b765f931262a9656f8bd7e8dbfbabda9
Author: Norbert Thiebaud 
Date:   Tue Nov 26 23:09:56 2019 -0800

source sha:2d01ed9e8be543460e41e009fa992103a7c8d4c0

author  Muhammet Kara  2019-11-25 21:55:31
+0300
committer   Muhammet Kara  2019-11-26
15:39:56 +0100
commit  2d01ed9e8be543460e41e009fa992103a7c8d4c0 (patch)
treebd75130e564374647046f03ad4a334c1876d9dd0
parent  9b6b134b3e605236e90aca089867f08d659a6076 (diff)
tdf#94288: Show chart props sidebar on activation

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


[Libreoffice-bugs] [Bug 129518] CF dialog - All cells - Color scale (2 or 3 items) => wrong layout for Russian UI

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129518

Xisco Faulí  changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #4 from Xisco Faulí  ---
@Caolán, do you reproduce this on your end ?

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


[Libreoffice-bugs] [Bug 129587] New: Unselect "Same value for both" - Crash

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129587

Bug ID: 129587
   Summary: Unselect "Same value for both" - Crash
   Product: LibreOffice
   Version: 6.5.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: r...@post.cz

Description:


Version: 6.5.0.0.alpha0+ (x64)
Build ID: 3f680aef65a158cfbc98c8afd1c3628d7f4f7b83
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 

Steps to Reproduce:
open file https://bugs.documentfoundation.org/attachment.cgi?id=156720
double click chart
select Y error bars
Format Y error bars
Unselect "Same value for both"


Actual Results:
Crash

Expected Results:
No crash


Reproducible: Always


User Profile Reset: No



Additional Info:

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


[Libreoffice-bugs] [Bug 129518] CF dialog - All cells - Color scale (2 or 3 items) => wrong layout for Russian UI

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129518

--- Comment #3 from Xisco Faulí  ---
nor in

Version: 6.5.0.0.alpha0+ (x64)
Build ID: b6f4d3b92789e972d9b079a5561723f3e73e07a6
CPU threads: 16; OS: Windows 6.3 Build 9600; UI render: default; VCL: win; 
Locale: en-GB (en_GB); 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 129518] CF dialog - All cells - Color scale (2 or 3 items) => wrong layout for Russian UI

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129518

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #2 from Xisco Faulí  ---
I can't reproduce it in

Version: 6.5.0.0.alpha0+
Build ID: 0322a41224a7264bbe03a068647ab093bcc88f90
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: x11; 
Locale: ca-ES (ca_ES.UTF-8); UI-Language: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 112812] [META] Hebrew language-specific RTL issues

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112812
Bug 112812 depends on bug 127022, which changed state.

Bug 127022 Summary: menu bar is broken in RTL interface on Windows
https://bugs.documentfoundation.org/show_bug.cgi?id=127022

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 129586] dropdown lists are too narrow

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129586

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||6781
 Status|UNCONFIRMED |NEW
 CC||79045_79...@mail.ru,
   ||caol...@redhat.com,
   ||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Regression introduced by:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=0ff8140676877f7a37ceb14d9ba797d6e2a18cf6

author  Caolán McNamara 2019-09-30 16:27:24 +0100
committer   Caolán McNamara 2019-10-01 09:55:16
+0200
commit  0ff8140676877f7a37ceb14d9ba797d6e2a18cf6 (patch)
tree32a1e15ee2efed45924bb7e82da63a8be081b1a7
parent  eac301701e4f24a407c2b9df69e925e3d9cb4733 (diff)
Resolves: tdf#126781 force comboboxes to take 1/3 avail space

Bisected with: bibisect-linux64-6.4

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 129586] New: dropdown lists are too narrow

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129586

Bug ID: 129586
   Summary: dropdown lists are too narrow
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Steps to reproduce:
1. Open calc
2. Go to Format - Conditional - Icon Set

-> Dropdown lists next to text boxes are too narrow

reproduced in

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

Thanks to Kompi for mentioning it in the IRC channel

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


[Libreoffice-bugs] [Bug 81757] Calculations order do not follow cell dependencies

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81757

--- Comment #17 from b.  ---

>>> thats the simple thing that shouldn't be that way, a cell with a formula 
>>> should evaluate to the same value regardless where you move (not copy) it 
>>> into the sheet. <<<

it has taken some time to go to the construct and dependencies ... 

working with fresh - not *-old - version of the zip-file from comment #3, and
testing 'If you select another item in the drop down box, the value of I7 cell
will be the previous value of F8. To get correct answer you will have to select
item from drop down box twice, or reenter same value to the one of cells.' from
comment #4: 

boils down to: 

straightforward calculation of F7,F8, I7 and I8 is! possible if you respect the
following dependencies: 

F7 -> F8, F7 -> I7, F8 -> I8

(F7 itself may contain problems and circularity or whatever from performing the
macro, but once it's calculated the other three cells are simple) 

obviously that isn't performed by calc in versions 4.1.6.2 to 6.5.0.0.a0, and
F8, I7, I8 show err:523 without iteration, (slightly different between
versions) 

with iteration enabled the err: messages disappear, but - looks like - I7 and
I8 are calculated in the first round, acc. to the value of F7 and F8 at that
time, and F7 and F8 undergo a second cycle setting them to new values what is
not applied for a recalculation of I7 and I8, 

simply the order for the calculation is wrongly set? if you move! (ctrl-x -
ctrl-v) I7:I8 to B7:B8 the correct calculation is performed! on the first
select in the dropdown box for material. 

thats the simple thing that shouldn't be that way, a cell with a formula should
evaluate to the same value regardless where you move (not copy) it into the
sheet. recalculation must first follow dependencies, then the order of cells on
the sheet. 

https://bugs.documentfoundation.org/show_bug.cgi?id=129199 looks very similar
to this problem. 

until that's solved other more complex problems in this sheet couldn't be
analyzed. 

(my assumption: calculation of F7 is 'set back' due to the neccessity to run
the macro, dependencie analysis is not! performed afterwards.) 

still buggy with: 

Version: 6.4.0.1 (x64)
Build ID: 1b6477b31f0334bd8620a96f0aeeb449b587be9f
CPU threads: 8; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: GL; VCL:
win; 
Locale: de-DE (de_DE); UI-Language: en-US
Calc: CL

and 6.5.0.0.a0

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


[Libreoffice-bugs] [Bug 129585] FILESAVE: DOC: Table is splitted after RT

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129585

Xisco Faulí  changed:

   What|Removed |Added

 CC||kelem...@ubuntu.com,
   ||nem...@numbertext.org,
   ||xiscofa...@libreoffice.org
   Keywords||bibisected, bisected,
   ||regression
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||5300

--- Comment #1 from Xisco Faulí  ---
Regression introduced by:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=2c918aa51e5528b090e52fa31b10fa17cf2593ae

author  László Németh2019-11-19 21:12:28 +0100
committer   László Németh2019-11-21 19:50:25
+0100
commit  2c918aa51e5528b090e52fa31b10fa17cf2593ae (patch)
tree27bcd35ab6c0929fadb0c44ee88a7a7a3e9e785f
parent  46f8f48ebfe25e26b4d1c0718c772abbee70b889 (diff)
tdf#125300 extend AddParaSpacingToTableCells with line spacing

Bisected with: bibisect-linux64-6.5

Adding Cc: to László Németh

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


[Libreoffice-bugs] [Bug 129585] New: FILESAVE: DOC: Table is splitted after RT

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129585

Bug ID: 129585
   Summary: FILESAVE: DOC: Table is splitted after RT
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Created attachment 156757
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156757=edit
comparison MSO 2010 and LibreOffice 6.5 Master

Steps to reproduce:
1. Open attachment 93613 from bug 74676
2. Save it as .DOC file
3. Open the new created document

-> End of second table is splitted and displayed on page 4

Reproduced in

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

[Bug found by office-interoperability-tools]

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


[Libreoffice-bugs] [Bug 114482] Circular reference accumulator, err:523 or miscalculation

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114482

--- Comment #14 from sarti_ca...@yahoo.com  ---
Good work for a donkey. Do you understand what you wrote?
In maths, here are three types of equations: determined, undetermined and
impossible. I have translate  "determinata" in determined, but I am not sure if
it is correct.
A1=A1+1 is an impossible equation, namely it has not a solution.

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


[Libreoffice-bugs] [Bug 129573] Selecting or highlighting a word or group of words, arrow key to determine where cursor is to rest, at the start or end

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129573

V Stuart Foote  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
   Keywords||needsUXEval

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


[Libreoffice-ux-advise] [Bug 129573] Selecting or highlighting a word or group of words, arrow key to determine where cursor is to rest, at the start or end

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129573

V Stuart Foote  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
   Keywords||needsUXEval

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


[Libreoffice-bugs] [Bug 129577] after installation the attached files are lost

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129577

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 OS|All |Windows (All)
  Component|Writer  |LibreOffice
 CC||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote  ---


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

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


[Libreoffice-bugs] [Bug 76131] Existing pinned icon on Win7/8 is taskbar invalid after re-installation/update

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76131

--- Comment #40 from V Stuart Foote  ---
*** Bug 129577 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 128973] Create a per-document "Paragraph style used by default" setting

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128973

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 129422] Suppress listing of parent styles in the Find and Replace dialog

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129422

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 128973] Create a per-document "Paragraph style used by default" setting

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128973

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 129568] Rename Default Style to Default Paragraph/Page/Table Style

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129568

V Stuart Foote  changed:

   What|Removed |Added

 CC||mikekagan...@hotmail.com,
   ||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||8973

--- Comment #1 from V Stuart Foote  ---
What is 'Default' and wouldn't work for Mike's suggestion in bug 128973 be the
more precise way for users to interact with a document's styles--don't rename
the Standard template provided 'Default'--work against what the user has
designated as the default for the document?

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


[Libreoffice-bugs] [Bug 129568] Rename Default Style to Default Paragraph/Page/Table Style

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129568

V Stuart Foote  changed:

   What|Removed |Added

 CC||mikekagan...@hotmail.com,
   ||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||8973

--- Comment #1 from V Stuart Foote  ---
What is 'Default' and wouldn't work for Mike's suggestion in bug 128973 be the
more precise way for users to interact with a document's styles--don't rename
the Standard template provided 'Default'--work against what the user has
designated as the default for the document?

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


[Libreoffice-ux-advise] [Bug 129469] UI: Add customize option to find "Whole words only" to Find toolbar, as available from Find & Replace dialog

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129469

--- Comment #5 from V Stuart Foote  ---
(In reply to sdc.blanco from comment #4)
>...
> Wouldn't it be appropriate to only allow "remove" item for those items in
> the Find toolbar that actually have .unos?  (and deactivate that function
> for non-.uno items that are specific to Find toolbar)?
> 
> I have not tested with other toolbars.  Do they also behave this way? Should
> this be filed as a separate bug report? (either for "Find" or for "toolbars"
> in general)?

IMHO no issue. Pretty common and just manifestation of what is manipulated via
GTK button action requiring UNO command, and what is hard-coded feature of
specific dialog or toolbar (and restored by 'Reset').

Practice is to implement the UNO command when the command is useful in multiple
GUI contexts--e.g. Toolbars, menus, and controls of Sidebar Deck and now
Notebook Bar (ref bug 86899).

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


[Libreoffice-bugs] [Bug 129469] UI: Add customize option to find "Whole words only" to Find toolbar, as available from Find & Replace dialog

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129469

--- Comment #5 from V Stuart Foote  ---
(In reply to sdc.blanco from comment #4)
>...
> Wouldn't it be appropriate to only allow "remove" item for those items in
> the Find toolbar that actually have .unos?  (and deactivate that function
> for non-.uno items that are specific to Find toolbar)?
> 
> I have not tested with other toolbars.  Do they also behave this way? Should
> this be filed as a separate bug report? (either for "Find" or for "toolbars"
> in general)?

IMHO no issue. Pretty common and just manifestation of what is manipulated via
GTK button action requiring UNO command, and what is hard-coded feature of
specific dialog or toolbar (and restored by 'Reset').

Practice is to implement the UNO command when the command is useful in multiple
GUI contexts--e.g. Toolbars, menus, and controls of Sidebar Deck and now
Notebook Bar (ref bug 86899).

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


[Libreoffice-bugs] [Bug 129584] New: Enhancement: add word count to Calc and other components of LibreOffice so that it's not just Writer

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129584

Bug ID: 129584
   Summary: Enhancement: add word count to Calc and other
components of LibreOffice so that it's not just Writer
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bugrepor...@gmail.com

Description:
Enhancement: add word count to Calc and other components of LibreOffice so that
it's not just Writer

Actual Results:
Requesting an enhancement to have a character count and word count for other
aspects of LibreOffice such as Calc.

Expected Results:
Requesting an enhancement to have a character count and word count for other
aspects of LibreOffice such as Calc.


Reproducible: Always


User Profile Reset: No



Additional Info:

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


[Libreoffice-bugs] [Bug 101193] Return object Name and Description dialog buttons to object context menus

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101193

--- Comment #44 from V Stuart Foote  ---
(In reply to Jim Raykowski from comment #43)
> (In reply to andreas_k from comment #42)
> > I can make an patch if wanted. let me know.
> 
> I think having Name... and Description... in writer shape context menu would
> provide consistency with shape context menu in draw/impress. +1 from me for
> you to do it.

As mentioned above, rather than these one-off patchwork tweaks, would be more
consistent with a unified set of attributes accessed/edited cross modules from
the object's properties dialog,  for all objects, as for bug 96355

Name, Title, Description/Alt-Text always _and preferentially_ via an object's
Properties dialog. With the Current mix of Context menu entries removed for
defaults, but can be customized back.

-- 
You are receiving this mail because:
You 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 - include/toolkit include/tools toolkit/source tools/qa tools/source

2019-12-23 Thread Noel Grandin (via logerrit)
 include/toolkit/controls/accessiblecontrolcontext.hxx |2 
 include/toolkit/helper/servicenames.hxx   |  144 -
 include/tools/inetmime.hxx|2 
 include/tools/inetstrm.hxx|   18 +-
 toolkit/source/awt/vclxtoolkit.cxx|2 
 toolkit/source/controls/accessiblecontrolcontext.cxx  |2 
 toolkit/source/controls/grid/gridcolumn.cxx   |2 
 toolkit/source/controls/grid/gridcolumn.hxx   |4 
 toolkit/source/helper/servicenames.cxx|  146 +-
 tools/qa/cppunit/test_reversemap.cxx  |4 
 tools/source/fsys/urlobj.cxx  |   10 -
 tools/source/inet/inetmime.cxx|  110 ++---
 tools/source/inet/inetmsg.cxx |4 
 tools/source/inet/inetstrm.cxx|   20 +-
 tools/source/ref/globname.cxx |2 
 tools/source/reversemap/bestreversemap.cxx|2 
 tools/source/stream/stream.cxx|   10 -
 17 files changed, 242 insertions(+), 242 deletions(-)

New commits:
commit 1a53e60d444385c9b97ed16d245edbd44f8a5ac4
Author: Noel Grandin 
AuthorDate: Mon Dec 23 11:55:15 2019 +0200
Commit: Noel Grandin 
CommitDate: Mon Dec 23 15:12:29 2019 +0100

sal_Char->char in tools

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

diff --git a/include/tools/inetmime.hxx b/include/tools/inetmime.hxx
index 80820a2b722a..ce0469fa131a 100644
--- a/include/tools/inetmime.hxx
+++ b/include/tools/inetmime.hxx
@@ -143,7 +143,7 @@ public:
  */
 static bool equalIgnoreCase(const sal_Unicode * pBegin1,
 const sal_Unicode * pEnd1,
-const sal_Char * pString2);
+const char * pString2);
 
 static bool scanUnsigned(const sal_Unicode *& rBegin,
  const sal_Unicode * pEnd, bool bLeadingZeroes,
diff --git a/include/tools/inetstrm.hxx b/include/tools/inetstrm.hxx
index 8c74b9703d08..48e371fa0105 100644
--- a/include/tools/inetstrm.hxx
+++ b/include/tools/inetstrm.hxx
@@ -32,15 +32,15 @@ class TOOLS_DLLPUBLIC INetMIMEMessageStream
 INetMIMEMessage *pSourceMsg;
 boolbHeaderGenerated;
 
-std::vector mvBuffer;
-sal_Char   *pRead;
-sal_Char   *pWrite;
+std::vector mvBuffer;
+char   *pRead;
+char   *pWrite;
 
 std::unique_ptr
 pMsgStrm;
 SvMemoryStream  maMsgBuffer;
-sal_Char   *pMsgRead;
-sal_Char   *pMsgWrite;
+char   *pMsgRead;
+char   *pMsgWrite;
 
 bool done;
 
@@ -50,15 +50,15 @@ class TOOLS_DLLPUBLIC INetMIMEMessageStream
 INetMIMEMessageStream (const INetMIMEMessageStream& rStrm) = delete;
 INetMIMEMessageStream& operator= (const INetMIMEMessageStream& rStrm) = 
delete;
 
-int GetHeaderLine(sal_Char *pData, sal_uInt32 nSize);
-int GetBodyLine(sal_Char *pData, sal_uInt32 nSize);
-int GetMsgLine(sal_Char *pData, sal_uInt32 nSize);
+int GetHeaderLine(char *pData, sal_uInt32 nSize);
+int GetBodyLine(char *pData, sal_uInt32 nSize);
+int GetMsgLine(char *pData, sal_uInt32 nSize);
 
 public:
 explicit INetMIMEMessageStream(INetMIMEMessage *pMsg, bool 
headerGenerated);
 ~INetMIMEMessageStream();
 
-int Read (sal_Char *pData, sal_uInt32 nSize);
+int Read (char *pData, sal_uInt32 nSize);
 };
 
 #endif
diff --git a/tools/qa/cppunit/test_reversemap.cxx 
b/tools/qa/cppunit/test_reversemap.cxx
index 04ed1741d211..be70ade79585 100644
--- a/tools/qa/cppunit/test_reversemap.cxx
+++ b/tools/qa/cppunit/test_reversemap.cxx
@@ -55,9 +55,9 @@ namespace
 void Test::testEncoding(rtl_TextEncoding eEncoding)
 {
 //Taking the single byte legacy encodings, fill in all possible values
-std::vector aAllChars(255);
+std::vector aAllChars(255);
 for (int i = 1; i <= 255; ++i)
-aAllChars[i-1] = static_cast(i);
+aAllChars[i-1] = static_cast(i);
 
 //Some slots are unused, so don't map to private, just set them to 'X'
 sal_uInt32 const convertFlags = OSTRING_TO_OUSTRING_CVTFLAGS ^ 
RTL_TEXTTOUNICODE_FLAGS_UNDEFINED_MAPTOPRIVATE;
diff --git a/tools/source/fsys/urlobj.cxx b/tools/source/fsys/urlobj.cxx
index e07cfd04035e..be9dadeb8043 100644
--- a/tools/source/fsys/urlobj.cxx
+++ b/tools/source/fsys/urlobj.cxx
@@ -289,8 +289,8 @@ int INetURLObject::SubString::compare(SubString const & 
rOther,
 
 struct INetURLObject::SchemeInfo
 {
-sal_Char const * m_pScheme;
-sal_Char const * m_pPrefix;
+char const * m_pScheme;
+char const * m_pPrefix;
 bool const m_bAuthority;
 bool const m_bUser;
 bool const m_bAuth;
@@ 

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

2019-12-23 Thread Noel Grandin (via logerrit)
 ucb/source/cacher/cacheserv.cxx|2 -
 ucb/source/core/ucbserv.cxx|2 -
 ucb/source/regexp/regexp.cxx   |2 -
 ucb/source/sorter/sortmain.cxx |2 -
 ucb/source/ucp/cmis/cmis_provider.cxx  |2 -
 ucb/source/ucp/expand/ucpexpand.cxx|2 -
 ucb/source/ucp/ext/ucpext_services.cxx |2 -
 ucb/source/ucp/file/prov.cxx   |2 -
 ucb/source/ucp/ftp/ftpdirp.cxx |   44 -
 ucb/source/ucp/ftp/ftpdirp.hxx |   28 +++
 ucb/source/ucp/ftp/ftpservices.cxx |2 -
 ucb/source/ucp/gio/gio_provider.cxx|2 -
 ucb/source/ucp/hierarchy/hierarchyservices.cxx |2 -
 ucb/source/ucp/package/pkgservices.cxx |2 -
 ucb/source/ucp/tdoc/tdoc_services.cxx  |2 -
 ucb/source/ucp/webdav-neon/DateTimeHelper.cxx  |4 +-
 ucb/source/ucp/webdav-neon/webdavservices.cxx  |2 -
 ucb/source/ucp/webdav/DateTimeHelper.cxx   |4 +-
 ucb/source/ucp/webdav/SerfSession.cxx  |2 -
 ucb/source/ucp/webdav/webdavservices.cxx   |2 -
 20 files changed, 56 insertions(+), 56 deletions(-)

New commits:
commit febb1b2861ce276ad79fccd95e9eadc9e435603c
Author: Noel Grandin 
AuthorDate: Mon Dec 23 11:57:05 2019 +0200
Commit: Noel Grandin 
CommitDate: Mon Dec 23 15:12:42 2019 +0100

sal_Char->char in ucb

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

diff --git a/ucb/source/cacher/cacheserv.cxx b/ucb/source/cacher/cacheserv.cxx
index 93c3f9191394..9e3d3b2a0a8b 100644
--- a/ucb/source/cacher/cacheserv.cxx
+++ b/ucb/source/cacher/cacheserv.cxx
@@ -29,7 +29,7 @@ using namespace com::sun::star::lang;
 
 
 extern "C" SAL_DLLPUBLIC_EXPORT void * cached1_component_getFactory(
-const sal_Char * pImplName, void * pServiceManager, void * )
+const char * pImplName, void * pServiceManager, void * )
 {
 void * pRet = nullptr;
 
diff --git a/ucb/source/core/ucbserv.cxx b/ucb/source/core/ucbserv.cxx
index 13e38a8a1a06..ad9003f26945 100644
--- a/ucb/source/core/ucbserv.cxx
+++ b/ucb/source/core/ucbserv.cxx
@@ -32,7 +32,7 @@ using namespace com::sun::star::lang;
 
 
 extern "C" SAL_DLLPUBLIC_EXPORT void * ucb_component_getFactory(
-const sal_Char * pImplName, void * pServiceManager, void * )
+const char * pImplName, void * pServiceManager, void * )
 {
 void * pRet = nullptr;
 
diff --git a/ucb/source/regexp/regexp.cxx b/ucb/source/regexp/regexp.cxx
index a1504cb63720..4b4dc42ec947 100644
--- a/ucb/source/regexp/regexp.cxx
+++ b/ucb/source/regexp/regexp.cxx
@@ -234,7 +234,7 @@ OUString Regexp::getRegexp() const
 namespace {
 
 bool matchString(sal_Unicode const ** pBegin, sal_Unicode const * pEnd,
- sal_Char const * pString, size_t nStringLength)
+ char const * pString, size_t nStringLength)
 {
 sal_Unicode const * p = *pBegin;
 
diff --git a/ucb/source/sorter/sortmain.cxx b/ucb/source/sorter/sortmain.cxx
index c0d9f0508240..9d3706917e78 100644
--- a/ucb/source/sorter/sortmain.cxx
+++ b/ucb/source/sorter/sortmain.cxx
@@ -26,7 +26,7 @@ using namespace com::sun::star::lang;
 
 
 extern "C" SAL_DLLPUBLIC_EXPORT void * srtrs1_component_getFactory(
-const sal_Char * pImplName, void * pServiceManager, void * )
+const char * pImplName, void * pServiceManager, void * )
 {
 void * pRet = nullptr;
 
diff --git a/ucb/source/ucp/cmis/cmis_provider.cxx 
b/ucb/source/ucp/cmis/cmis_provider.cxx
index 127cd15c4d4f..0d6a452226a4 100644
--- a/ucb/source/ucp/cmis/cmis_provider.cxx
+++ b/ucb/source/ucp/cmis/cmis_provider.cxx
@@ -139,7 +139,7 @@ ONE_INSTANCE_SERVICE_FACTORY_IMPL( ContentProvider );
 
 }
 
-extern "C" SAL_DLLPUBLIC_EXPORT void * ucpcmis1_component_getFactory( const 
sal_Char *pImplName,
+extern "C" SAL_DLLPUBLIC_EXPORT void * ucpcmis1_component_getFactory( const 
char *pImplName,
 void *pServiceManager, void * )
 {
 void * pRet = nullptr;
diff --git a/ucb/source/ucp/expand/ucpexpand.cxx 
b/ucb/source/ucp/expand/ucpexpand.cxx
index 82d80c27674d..16bf38bbfa05 100644
--- a/ucb/source/ucp/expand/ucpexpand.cxx
+++ b/ucb/source/ucp/expand/ucpexpand.cxx
@@ -222,7 +222,7 @@ extern "C"
 {
 
 SAL_DLLPUBLIC_EXPORT void * ucpexpand1_component_getFactory(
-const sal_Char * pImplName,
+const char * pImplName,
 void * pServiceManager,
 void * pRegistryKey )
 {
diff --git a/ucb/source/ucp/ext/ucpext_services.cxx 
b/ucb/source/ucp/ext/ucpext_services.cxx
index a326d9533a43..0d38566336ea 100644
--- a/ucb/source/ucp/ext/ucpext_services.cxx
+++ b/ucb/source/ucp/ext/ucpext_services.cxx
@@ -48,7 +48,7 @@ namespace ucb { namespace ucp { namespace ext
 extern "C"
 {
 
-SAL_DLLPUBLIC_EXPORT void * ucpext_component_getFactory( const sal_Char * 
pImplName, void * pServiceManager, void * pRegistryKey )
+ 

[Libreoffice-bugs] [Bug 129572] Issues with OLE Embedding of Excel Workbooks

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129572

--- Comment #2 from Paul Connacher  ---
Clicked outside of embedded workbook and the workbook disappears leaving behind
a blank box.

The workbook is only redisplayed after double-clicking within the bank box.

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


[Libreoffice-bugs] [Bug 129580] Paper & Paper Product in UAE

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129580

himajin100...@gmail.com changed:

   What|Removed |Added

 Resolution|--- |INVALID
 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 129583] Index: Insert button ignores "Entry" field when multiple entries made

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129583

--- Comment #1 from R. Green  ---
Erratum: Under "EXPECTED RESULT", should read, "In step 3 …".

-- 
You are receiving this mail because:
You 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-12-23 Thread Caolán McNamara (via logerrit)
 sfx2/source/dialog/recfloat.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit d3faa9ea62ba62a71ee7bef68aab4636ed0e338b
Author: Caolán McNamara 
AuthorDate: Mon Dec 23 12:35:05 2019 +
Commit: Caolán McNamara 
CommitDate: Mon Dec 23 15:01:23 2019 +0100

use recording window as parent

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

diff --git a/sfx2/source/dialog/recfloat.cxx b/sfx2/source/dialog/recfloat.cxx
index 992136fd0fa1..1ff4ba7e0873 100644
--- a/sfx2/source/dialog/recfloat.cxx
+++ b/sfx2/source/dialog/recfloat.cxx
@@ -82,8 +82,10 @@ bool SfxRecordingFloatWrapper_Impl::QueryClose()
 css::uno::Reference< css::frame::XDispatchRecorder > xRecorder = 
pBindings->GetRecorder();
 if ( xRecorder.is() && !xRecorder->getRecordedMacro().isEmpty() )
 {
-vcl::Window* pWin = GetWindow();
-std::unique_ptr 
xQueryBox(Application::CreateMessageDialog(pWin ? pWin->GetFrameWeld() : 
nullptr,
+SfxRecordingFloat_Impl* pFloatDlg = 
static_cast(GetController().get());
+weld::Dialog* pDlg = pFloatDlg->getDialog();
+
+std::unique_ptr 
xQueryBox(Application::CreateMessageDialog(pDlg,

VclMessageType::Question, VclButtonsType::YesNo,

SfxResId(STR_MACRO_LOSS)));
 xQueryBox->set_default_response(RET_NO);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129572] Issues with OLE Embedding of Excel Workbooks

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129572

Paul Connacher  changed:

   What|Removed |Added

Version|unspecified |6.4.0.0.beta1+

--- Comment #1 from Paul Connacher  ---
An ole embeded LO 4.6 Spreadsheet cannot be deleted.

Selecting on the border of the embedded workbook and right-clicked to display
expected popup menu.

Only thing is no popup menu displayed.

I cannot remove the embedded  workbook from the Writer document.

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


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

2019-12-23 Thread Michael Stahl (via logerrit)
 sw/qa/extras/globalfilter/globalfilter.cxx |5 +
 sw/source/filter/ww8/wrtw8nds.cxx  |4 +++-
 2 files changed, 4 insertions(+), 5 deletions(-)

New commits:
commit b03fefcc4dbdfee3b9eeb5fa0e586dd12ddcd3d2
Author: Michael Stahl 
AuthorDate: Mon Dec 23 13:00:19 2019 +0100
Commit: Michael Stahl 
CommitDate: Mon Dec 23 14:59:39 2019 +0100

tdf#129514 sw: DOCX export: write separator for CH_TXT_ATR_FORMELEMENT

... fieldmarks; the input DOC file has no separators, like:

^S FORMCHECKBOX ^A^U

but adding the separator doesn't appear to hurt and the
DocxAttributeOutput gets confused by the lack of it and puts the run
that should be after the field into the field.

(regression from 94e0b8407b02d76b27324b8b08012eb024aca9e9)

Change-Id: Ibeb1bb2ad3a4ed9c0ac9c3e90cc193debf7ad5db
Reviewed-on: https://gerrit.libreoffice.org/85753
Tested-by: Jenkins
Reviewed-by: Michael Stahl 

diff --git a/sw/qa/extras/globalfilter/globalfilter.cxx 
b/sw/qa/extras/globalfilter/globalfilter.cxx
index da84bc21f494..f0d61355ea86 100644
--- a/sw/qa/extras/globalfilter/globalfilter.cxx
+++ b/sw/qa/extras/globalfilter/globalfilter.cxx
@@ -1230,10 +1230,7 @@ void Test::testCheckBoxFormField()
 IDocumentMarkAccess* pMarkAccess = pDoc->getIDocumentMarkAccess();
 
 // We have two check box form fields
-if(rFilterName == "Office Open XML Text")
-CPPUNIT_ASSERT_EQUAL_MESSAGE(sFailedMessage.getStr(), 
sal_Int32(4), pMarkAccess->getAllMarksCount());
-else
-CPPUNIT_ASSERT_EQUAL_MESSAGE(sFailedMessage.getStr(), 
sal_Int32(2), pMarkAccess->getAllMarksCount());
+CPPUNIT_ASSERT_EQUAL_MESSAGE(sFailedMessage.getStr(), sal_Int32(2), 
pMarkAccess->getAllMarksCount());
 
 int nIndex = 0;
 for(auto aIter = pMarkAccess->getAllMarksBegin(); aIter != 
pMarkAccess->getAllMarksEnd(); ++aIter)
diff --git a/sw/source/filter/ww8/wrtw8nds.cxx 
b/sw/source/filter/ww8/wrtw8nds.cxx
index d85b3750453c..9d20bff30617 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -2441,7 +2441,9 @@ void MSWordExportBase::OutputTextNode( SwTextNode& rNode )
 FieldFlags::Start | FieldFlags::CmdStart );
 if ( isDropdownOrCheckbox )
 WriteFormData( *pFieldmark );
-OutputField( nullptr, lcl_getFieldId( pFieldmark ), 
OUString(), FieldFlags::Close );
+// tdf#129514 need CmdEnd for docx
+OutputField(nullptr, lcl_getFieldId(pFieldmark), 
OUString(),
+FieldFlags::CmdEnd | FieldFlags::Close);
 if ( isDropdownOrCheckbox )
 AppendBookmark( pFieldmark->GetName() );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129514] FILESAVE: DOCX: checkboxes lost after RT

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129514

Michael Stahl (CIB)  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |michael.st...@cib.de
   |desktop.org |
 Resolution|--- |FIXED
 Status|NEW |RESOLVED

--- Comment #3 from Michael Stahl (CIB)  ---
fixed on master

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


[Libreoffice-bugs] [Bug 129583] New: Index: Insert button ignores "Entry" field when multiple entries made

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129583

Bug ID: 129583
   Summary: Index: Insert button ignores "Entry" field when
multiple entries made
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: greenandpleasant2000-supp...@yahoo.co.uk

Created attachment 156756
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156756=edit
Dummy text plus alphabetical index

Please open the attached writer file, which consists of some dummy text with an
alphabetical index (blank) at the end.

1. Make sure the "Insert Index entry" dialogue is open (Insert > Table of
Contents and Index > Index entry …).

2. Select the word "quiet" in the first sentence, say. Click on the "Update
entry in selection" in the "Insert index entry" (IIE) dialogue; then press
"Insert."

3. Now select a different word on the second page. In the IIE dialogue press
"Insert."

4. Now update the alphabetical index by right-clicking on it and selecting
"Update index."

EXPECTED RESULT: In step 4, since the word "quiet" is still visible in the
"Entry" field, the new word should also be entered as "quiet." The correct
result should therefore be two entries, for different pages, under the SAME
word, "quiet." 

ACTUAL RESULT: In step 4, the "Insert" command ignores the word in the "Entry"
field and enters the selected word instead. This results in the INCORRECT
addition of a second entry as a different term.

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


[Libreoffice-bugs] [Bug 129582] FILEOPEN: DOCX: footer is missing on page 2

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129582

Xisco Faulí  changed:

   What|Removed |Added

 CC||michael.st...@cib.de,
   ||xiscofa...@libreoffice.org
   Keywords||bibisected, bisected,
   ||regression
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||7185

--- Comment #1 from Xisco Faulí  ---
Regression introduced by:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=28b77c89dfcafae82cf2a6d85731b643ff9290e5

author  Michael Stahl 2019-07-11 18:37:28 +0200
committer   Michael Stahl 2019-07-22 08:32:07
+0200
commit  28b77c89dfcafae82cf2a6d85731b643ff9290e5 (patch)
tree4d26e493cebd1d83025094a3a97b9e878bc2b930
parent  22f2ecbcabf3928d5486690ca6465b7b37bc8a10 (diff)
tdf#117185 tdf#110442 sw: bring harmony & peace to fly at-char selection

Bisected with: bibisect-linux64-6.4

Adding Cc: to Michael Stahl

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


[Libreoffice-bugs] [Bug 129582] New: FILEOPEN: DOCX: footer is missing on page 2

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129582

Bug ID: 129582
   Summary: FILEOPEN: DOCX: footer is missing on page 2
   Product: LibreOffice
   Version: 6.3.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Created attachment 156755
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156755=edit
comparison MSO 2010 and LibreOffice 6.5 Master

Steps to reproduce:
1. Open attachment 96828 from bug 76941

-> Footer on page 2 is missing. See comparison image

Reproduced in

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

[Bug found by office-interoperability-tools]

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


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

2019-12-23 Thread Thorsten Behrens (via logerrit)
 vcl/source/outdev/rect.cxx |5 -
 1 file changed, 5 deletions(-)

New commits:
commit c2b364d3bbe86ad9ee84c989600758641cc193ee
Author: Thorsten Behrens 
AuthorDate: Mon Dec 23 12:31:19 2019 +0100
Commit: Michael Meeks 
CommitDate: Mon Dec 23 14:41:26 2019 +0100

Revert "Drawing calc grid misses pixels on bottom and right; fix."

This reverts commit 24e7208306fa1c60eb0a0cee5c49b6454cad9df3.

Code is used for Draw/Impress, too.

Change-Id: I799162d0e7040a27cddfbca94e191fa2d037ee9b
Reviewed-on: https://gerrit.libreoffice.org/85751
Tested-by: Jenkins
Reviewed-by: Michael Meeks 

diff --git a/vcl/source/outdev/rect.cxx b/vcl/source/outdev/rect.cxx
index 4cced0f9b7e9..ecbeb12fbfee 100644
--- a/vcl/source/outdev/rect.cxx
+++ b/vcl/source/outdev/rect.cxx
@@ -232,11 +232,6 @@ void OutputDevice::DrawGrid( const tools::Rectangle& 
rRect, const Size& rDist, D
 if( mbOutputClipped )
 return;
 
-// FIXME: seems we have an off-by-one around the border
-// here with the cairo / svp backend at least.
-aDstRect.AdjustRight(1);
-aDstRect.AdjustBottom(1);
-
 const long nDistX = std::max( rDist.Width(), 1L );
 const long nDistY = std::max( rDist.Height(), 1L );
 long nX = ( rRect.Left() >= aDstRect.Left() ) ? rRect.Left() : ( 
rRect.Left() + ( ( aDstRect.Left() - rRect.Left() ) / nDistX ) * nDistX );
___
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/CppunitTest_vcl_outdev.mk vcl/qa vcl/source

2019-12-23 Thread Miklos Vajna (via logerrit)
 vcl/CppunitTest_vcl_outdev.mk  |1 +
 vcl/qa/cppunit/outdev.cxx  |   15 +++
 vcl/source/window/bufferdevice.cxx |1 +
 vcl/source/window/bufferdevice.hxx |2 +-
 4 files changed, 18 insertions(+), 1 deletion(-)

New commits:
commit 7b9afea6d34ec83de75ddcd5c45188c4cf949b90
Author: Miklos Vajna 
AuthorDate: Fri Dec 20 18:05:35 2019 +0100
Commit: Xisco Faulí 
CommitDate: Mon Dec 23 14:36:31 2019 +0100

tdf#127022 vcl: fix Windows RTL menu bar

Regression from commit e8d5b8beb5958147235ff955ed38c47b51d860ff
(tdf#113714 vcl menu bar window: avoid flicker, 2019-05-20), the problem
was that while the original render context has RTL set up correctly, the
intermediate virtual device had it disabled all the time.

Change-Id: Ic063c4a6c0537891c0bfceb8927edb97cf1c6e86
Reviewed-on: https://gerrit.libreoffice.org/85624
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins
Reviewed-on: https://gerrit.libreoffice.org/85636
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 
Signed-off-by: Xisco Fauli 
Reviewed-on: https://gerrit.libreoffice.org/85735

diff --git a/vcl/CppunitTest_vcl_outdev.mk b/vcl/CppunitTest_vcl_outdev.mk
index f15d2e26d17d..65fd6b5fa17e 100644
--- a/vcl/CppunitTest_vcl_outdev.mk
+++ b/vcl/CppunitTest_vcl_outdev.mk
@@ -12,6 +12,7 @@ $(eval $(call gb_CppunitTest_CppunitTest,vcl_outdev))
 $(eval $(call gb_CppunitTest_set_include,vcl_outdev,\
 $$(INCLUDE) \
 -I$(SRCDIR)/vcl/inc \
+-I$(SRCDIR)/vcl/source/window \
 ))
 
 $(eval $(call gb_CppunitTest_add_exception_objects,vcl_outdev, \
diff --git a/vcl/qa/cppunit/outdev.cxx b/vcl/qa/cppunit/outdev.cxx
index 455169e39966..e6b4b074868d 100644
--- a/vcl/qa/cppunit/outdev.cxx
+++ b/vcl/qa/cppunit/outdev.cxx
@@ -13,6 +13,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -26,10 +27,12 @@ public:
 
 void testVirtualDevice();
 void testUseAfterDispose();
+void testRTL();
 
 CPPUNIT_TEST_SUITE(VclOutdevTest);
 CPPUNIT_TEST(testVirtualDevice);
 CPPUNIT_TEST(testUseAfterDispose);
+CPPUNIT_TEST(testRTL);
 CPPUNIT_TEST_SUITE_END();
 };
 
@@ -97,6 +100,18 @@ void VclOutdevTest::testUseAfterDispose()
 pVDev->GetViewTransformation();
 }
 
+void VclOutdevTest::testRTL()
+{
+ScopedVclPtrInstance pWindow(nullptr, WB_APP | WB_STDWORK);
+pWindow->EnableRTL();
+vcl::RenderContext& rRenderContext = *pWindow;
+vcl::BufferDevice pBuffer(pWindow, rRenderContext);
+
+// Without the accompanying fix in place, this test would have failed, 
because the RTL status
+// from pWindow was not propagated to pBuffer.
+CPPUNIT_ASSERT(pBuffer->IsRTLEnabled());
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(VclOutdevTest);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/vcl/source/window/bufferdevice.cxx 
b/vcl/source/window/bufferdevice.cxx
index d1480588d48f..0092d1ab97e4 100644
--- a/vcl/source/window/bufferdevice.cxx
+++ b/vcl/source/window/bufferdevice.cxx
@@ -20,6 +20,7 @@ BufferDevice::BufferDevice(const VclPtr& 
pWindow, vcl::RenderContex
 m_pBuffer->SetTextColor(rRenderContext.GetTextColor());
 m_pBuffer->DrawOutDev(Point(0, 0), pWindow->GetOutputSizePixel(), Point(0, 
0),
   pWindow->GetOutputSizePixel(), rRenderContext);
+m_pBuffer->EnableRTL(rRenderContext.IsRTLEnabled());
 }
 
 BufferDevice::~BufferDevice()
diff --git a/vcl/source/window/bufferdevice.hxx 
b/vcl/source/window/bufferdevice.hxx
index 26bf28e615fa..5f2471cd26d9 100644
--- a/vcl/source/window/bufferdevice.hxx
+++ b/vcl/source/window/bufferdevice.hxx
@@ -16,7 +16,7 @@
 namespace vcl
 {
 /// Buffers drawing on a vcl::RenderContext using a VirtualDevice.
-class BufferDevice
+class VCL_DLLPUBLIC BufferDevice
 {
 ScopedVclPtr m_pBuffer;
 VclPtr m_pWindow;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2019-12-23 Thread Chris Sherlock (via logerrit)
 drawinglayer/source/tools/emfppen.cxx |   24 +++-
 drawinglayer/source/tools/emfppen.hxx |   11 ++-
 2 files changed, 29 insertions(+), 6 deletions(-)

New commits:
commit 34b876e3cbef16505c4e1790e01f13ef5a07b42c
Author: Chris Sherlock 
AuthorDate: Tue Dec 10 12:10:59 2019 +1100
Commit: Bartosz Kosiorek 
CommitDate: Mon Dec 23 14:34:59 2019 +0100

drawinglayer: rename PenDataNonCenter to PenAlignment, use 
PenAlignmentToString

Change-Id: I700f1b164e065b42928b05a4ead493c8ce2c57c2
Reviewed-on: https://gerrit.libreoffice.org/84838
Tested-by: Jenkins
Reviewed-by: Bartosz Kosiorek 

diff --git a/drawinglayer/source/tools/emfppen.cxx 
b/drawinglayer/source/tools/emfppen.cxx
index a34cd2b5b5b4..d0fc763929fe 100644
--- a/drawinglayer/source/tools/emfppen.cxx
+++ b/drawinglayer/source/tools/emfppen.cxx
@@ -20,6 +20,7 @@
 #include 
 #include 
 #include 
+
 #include "emfppen.hxx"
 #include "emfpcustomlinecap.hxx"
 
@@ -41,7 +42,7 @@ namespace emfplushelper
 PenDataDashedLineCap= 0x0040,
 PenDataDashedLineOffset = 0x0080,
 PenDataDashedLine   = 0x0100,
-PenDataNonCenter= 0x0200,
+PenDataAlignment= 0x0200,
 PenDataCompoundLine = 0x0400,
 PenDataCustomStartCap   = 0x0800,
 PenDataCustomEndCap = 0x1000
@@ -102,8 +103,8 @@ namespace emfplushelper
 if (flags & EmfPlusPenDataDashedLine)
 sFlags = sFlags.concat("\nEMF+\t\t\tEmfPlusPenDataDashedLine");
 
-if (flags & EmfPlusPenDataNonCenter)
-sFlags = sFlags.concat("\nEMF+\t\t\tEmfPlusPenDataNonCenter");
+if (flags & EmfPlusPenDataAlignment)
+sFlags = sFlags.concat("\nEMF+\t\t\tEmfPlusPenDataAlignment");
 
 if (flags & EmfPlusPenDataCompoundLine)
 sFlags = sFlags.concat("\nEMF+\t\t\tEmfPlusPenDataCompoundLine");
@@ -159,6 +160,19 @@ namespace emfplushelper
 return "";
 }
 
+static OUString PenAlignmentToString(sal_uInt32 penalignment)
+{
+switch (penalignment)
+{
+case PenAlignmentCenter: return "PenAlignmentCenter";
+case PenAlignmentInset: return "PenAlignmentInset";
+case PenAlignmentLeft: return "PenAlignmentLeft";
+case PenAlignmentOutset: return "PenAlignmentOutset";
+case PenAlignmentRight: return "PenAlignmentRight";
+}
+return "";
+}
+
 /// Convert stroke caps between EMF+ and rendering API
 sal_Int8 EMFPPen::lcl_convertStrokeCap(sal_uInt32 nEmfStroke)
 {
@@ -305,10 +319,10 @@ namespace emfplushelper
 }
 }
 
-if (penDataFlags & PenDataNonCenter)
+if (penDataFlags & PenDataAlignment)
 {
 s.ReadInt32(alignment);
-SAL_WARN("drawinglayer", "EMF+\t\t TODO PenDataNonCenter: 0x" << 
std::hex << alignment);
+SAL_WARN("drawinglayer", "EMF+\t\tTODO PenDataAlignment: " << 
PenAlignmentToString(alignment) << " (0x" << std::hex << alignment << ")");
 }
 else
 {
diff --git a/drawinglayer/source/tools/emfppen.hxx 
b/drawinglayer/source/tools/emfppen.hxx
index 16884cb1ca54..72ec12a2bed4 100644
--- a/drawinglayer/source/tools/emfppen.hxx
+++ b/drawinglayer/source/tools/emfppen.hxx
@@ -49,7 +49,7 @@ namespace emfplushelper
 const sal_uInt32 EmfPlusPenDataDashedLineCap = 0x0040;
 const sal_uInt32 EmfPlusPenDataDashedLineOffset = 0x0080;
 const sal_uInt32 EmfPlusPenDataDashedLine = 0x0100;
-const sal_uInt32 EmfPlusPenDataNonCenter = 0x0200;
+const sal_uInt32 EmfPlusPenDataAlignment = 0x0200;
 const sal_uInt32 EmfPlusPenDataCompoundLine = 0x0400;
 const sal_uInt32 EmfPlusPenDataCustomStartCap = 0x0800;
 const sal_uInt32 EmfPlusPenDataCustomEndCap = 0x01000;
@@ -84,6 +84,15 @@ namespace emfplushelper
 DashedLineCapTypeTriangle = 0x0003
 };
 
+enum PenAlignment
+{
+PenAlignmentCenter = 0x,
+PenAlignmentInset = 0x0001,
+PenAlignmentLeft = 0x0002,
+PenAlignmentOutset = 0x0003,
+PenAlignmentRight = 0x0004
+};
+
 struct EMFPCustomLineCap;
 
 struct EMFPPen : public EMFPBrush
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2019-12-23 Thread Samuel Mehrbrodt (via logerrit)
 vcl/source/control/combobox.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 09c0dc8b80b91a4f2e7ad3569a59402ee131eaf4
Author: Samuel Mehrbrodt 
AuthorDate: Mon Dec 23 11:15:20 2019 +0100
Commit: Samuel Mehrbrodt 
CommitDate: Mon Dec 23 14:25:30 2019 +0100

tdf#129490 Fix enter key in combo box

Follow-up fix for 7de9417d5f65d35227c7f80f6d587c2a56bde4e0

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

diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx
index 14cb33e74dd7..61d31a6333ef 100644
--- a/vcl/source/control/combobox.cxx
+++ b/vcl/source/control/combobox.cxx
@@ -749,7 +749,7 @@ bool ComboBox::EventNotify( NotifyEvent& rNEvt )
 
 case KEY_RETURN:
 {
-if (rNEvt.GetWindow() == m_pImpl->m_pSubEdit)
+if ((rNEvt.GetWindow() == m_pImpl->m_pSubEdit) && 
IsInDropDown())
 {
 m_pImpl->m_pImplLB->ProcessKeyInput( aKeyEvt );
 bDone = true;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88187] Cannot copy paste into Writer from VPN information

2019-12-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88187

--- Comment #9 from Jack Williamson  ---
Today, VPN has become an important part of all offices particularly where the
work of web development happens. You should visit
https://vpncoffee.com/top-mac-vpn website to get a nice VPN free. Your
discussion is well about the usage of VPN and I am very happy to get useful
info from this discussion.

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


  1   2   3   >