[Libreoffice-bugs] [Bug 136053] Deleting a word

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136053

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
You delete symbols that you selected. Itworks so in any software

-100 from me

-- 
You are receiving this mail because:
You 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 136053] Deleting a word

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136053

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
You delete symbols that you selected. Itworks so in any software

-100 from me

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


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

2020-08-23 Thread Mike Kaganski (via logerrit)
 vcl/source/outdev/transparent.cxx |   14 ++
 1 file changed, 2 insertions(+), 12 deletions(-)

New commits:
commit 1f5ac5b08fd8c1ddadc5f38595a487db2895957e
Author: Mike Kaganski 
AuthorDate: Mon Aug 24 07:56:46 2020 +0300
Commit: Mike Kaganski 
CommitDate: Mon Aug 24 07:49:02 2020 +0200

Don't apply transparency twice when drawing to mpAlphaVDev

We pass fTransparency to mpAlphaVDev->DrawTransparent; using adjusted
fill/line color is wrong. The correct COL_BLACK/COL_TRANSPARENT were
already set in mpAlphaVDev when SetFillColor/SetLineColor were called
to the virtual device.

Wrong implementation from commit 9c621ee8ea41a1c53bfeca49827290826785973e.

Change-Id: Ic858ede1ba793ac00f831a3960f748ad20ccb70a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101262
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/vcl/source/outdev/transparent.cxx 
b/vcl/source/outdev/transparent.cxx
index f9da8c9975da..839550c0fe1c 100644
--- a/vcl/source/outdev/transparent.cxx
+++ b/vcl/source/outdev/transparent.cxx
@@ -248,6 +248,8 @@ void OutputDevice::DrawTransparent(
 
 // create ObjectToDevice transformation
 const basegfx::B2DHomMatrix 
aFullTransform(ImplGetDeviceTransformation() * rObjectTransform);
+// TODO: this must not drop transparency for mpAlphaVDev case, but 
instead use premultiplied
+// aplha... but that requires using premultiplied alpha also for 
already drawn data
 const double fAdjustedTransparency = mpAlphaVDev ? 0 : fTransparency;
 bool bDrawnOk(true);
 
@@ -294,20 +296,8 @@ void OutputDevice::DrawTransparent(
 }
 
 if (mpAlphaVDev)
-{
-const Color aFillCol(mpAlphaVDev->GetFillColor());
-const Color aLineColor(mpAlphaVDev->GetLineColor());
-const auto nGreyScale = static_cast(std::round(255 
* fTransparency));
-const Color aNewColor(nGreyScale, nGreyScale, nGreyScale);
-mpAlphaVDev->SetFillColor(aNewColor);
-mpAlphaVDev->SetLineColor(aNewColor);
-
 mpAlphaVDev->DrawTransparent(rObjectTransform, rB2DPolyPoly, 
fTransparency);
 
-mpAlphaVDev->SetFillColor(aFillCol);
-mpAlphaVDev->SetLineColor(aLineColor);
-}
-
 return;
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 65725] FILE_SAVE : Master document export PDF in headless mode doesn't show sub documents page

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65725

rockoreq...@hotmail.com changed:

   What|Removed |Added

 CC||rockoreq...@hotmail.com

--- Comment #14 from rockoreq...@hotmail.com ---
This bug is also still present in Linux in LibreOffice 6.4.5.2 40(Build:2), and
unoconv no longer works either, so soffice has now introduced this bug to
whichever path unoconv was using and there is now no workaround.

I note that in the GUI mode, Writer always asks whether I want to import the
linked docs. So I tried setting Writer to automatically import linked docs
(Tools / Options / LibreOffice Writer / General - Update links when loading)
and because this setting doesn't work in the GUI, I also set my filesystem to
be trusted by adding it to Tools / Options / LibreOfice / Security - Macro
Security | Trusted Sources - Trusted File Locations. The automatic update then
worked in the GUI, but it has no effect on headless mode.

How do you go about getting a 7-year-old bug investigated in LibreOffice? It's
obviously not hard to reproduce 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 136057] Crash when resizing column width with joined shapes in Calc

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136057

Kevin Suo  changed:

   What|Removed |Added

Version|6.4.5.2 release |7.0.0.0.alpha0+

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


[Libreoffice-bugs] [Bug 136057] Crash when resizing column width with joined shapes in Calc

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136057

--- Comment #3 from Kevin Suo  ---
Created attachment 164614
  --> https://bugs.documentfoundation.org/attachment.cgi?id=164614=edit
gdbtrace.log

Attached is a gdbtrace log file from a debug-symbol-only build. Not sure
whether this is useful.

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


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

2020-08-23 Thread Samuel Mehrbrodt (via logerrit)
 sw/source/core/crsr/crstrvl.cxx  |2 +-
 sw/source/core/txtnode/ndtxt.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 2c7bf3543ab798d1c117d9f3258467e4aef9a8db
Author: Samuel Mehrbrodt 
AuthorDate: Thu Aug 20 15:33:49 2020 +0200
Commit: Samuel Mehrbrodt 
CommitDate: Mon Aug 24 07:34:25 2020 +0200

Related tdf#100492 Detect click into empty field

Change-Id: Ic2937d619a8361b9d17b7dfa16698a5005f34ec6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101076
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git a/sw/source/core/crsr/crstrvl.cxx b/sw/source/core/crsr/crstrvl.cxx
index 5bea3f176289..11589b8e4181 100644
--- a/sw/source/core/crsr/crstrvl.cxx
+++ b/sw/source/core/crsr/crstrvl.cxx
@@ -927,7 +927,7 @@ bool SwCursorShell::CursorInsideInputField() const
 {
 for(SwPaM& rCursor : GetCursor()->GetRingContainer())
 {
-if (dynamic_cast(GetTextFieldAtCursor(, false)))
+if (dynamic_cast(GetTextFieldAtCursor(, true)))
 return true;
 }
 return false;
diff --git a/sw/source/core/txtnode/ndtxt.cxx b/sw/source/core/txtnode/ndtxt.cxx
index 6d6f241e7b2c..1dd213960885 100644
--- a/sw/source/core/txtnode/ndtxt.cxx
+++ b/sw/source/core/txtnode/ndtxt.cxx
@@ -1778,7 +1778,7 @@ SwTextField* SwTextNode::GetFieldTextAttrAt(
 dynamic_cast( GetTextAttrAt(
 nIndex,
 RES_TXTATR_INPUTFIELD,
-bIncludeInputFieldAtStart ? DEFAULT : PARENT ));
+bIncludeInputFieldAtStart ? DEFAULT : EXPAND ));
 }
 
 return pTextField;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 136053] Deleting a word

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136053

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de

--- Comment #1 from Dieter  ---
I won't support that idea. Just think of the situation, whre you want to
substitute with a new word. And ff we change current behaviour we will
definitely get some bug reports.

-- 
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 136053] Deleting a word

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136053

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de

--- Comment #1 from Dieter  ---
I won't support that idea. Just think of the situation, whre you want to
substitute with a new word. And ff we change current behaviour we will
definitely get some bug reports.

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


[Libreoffice-bugs] [Bug 135637] Text-Style-Dropdown-Menu isn't Empty when Multiple Styles are Selected.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135637

--- Comment #13 from Dieter  ---
(In reply to Clarc from comment #12)
> (In reply to Dieter from comment #11)
> > (In reply to Clarc from comment #10)
> > > This must be a new bug, it used to work properly a month ago.
> > 
> > Don't think so, because same behaviour in
> > 
> > Version: 6.3.6.2 (x64)
> > Build-ID: 2196df99b074d8a661f4036fca8fa0cbfa33a497
> > CPU-Threads: 4; BS: Windows 10.0; UI-Render: GL; VCL: win; 
> > Gebietsschema: de-DE (de_DE); UI-Sprache: de-DE
> > Calc: CL
> 
> Is this your bug?
> https://bugs.documentfoundation.org/show_bug.cgi?id=135980

-- 
You are receiving this mail because:
You 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 135637] Text-Style-Dropdown-Menu isn't Empty when Multiple Styles are Selected.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135637

--- Comment #13 from Dieter  ---
(In reply to Clarc from comment #12)
> (In reply to Dieter from comment #11)
> > (In reply to Clarc from comment #10)
> > > This must be a new bug, it used to work properly a month ago.
> > 
> > Don't think so, because same behaviour in
> > 
> > Version: 6.3.6.2 (x64)
> > Build-ID: 2196df99b074d8a661f4036fca8fa0cbfa33a497
> > CPU-Threads: 4; BS: Windows 10.0; UI-Render: GL; VCL: win; 
> > Gebietsschema: de-DE (de_DE); UI-Sprache: de-DE
> > Calc: CL
> 
> Is this your bug?
> https://bugs.documentfoundation.org/show_bug.cgi?id=135980

-- 
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 136057] Crash when resizing column width with joined shapes in Calc

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136057

--- Comment #2 from Kevin Suo  ---
On master build as of today, the crash occurred at the time when I click any
blank cell after the last shape-joining.

The console message which may be related is:
warn:vcl.schedule:7144:7144:vcl/source/app/scheduler.cxx:490: Uncaught
com.sun.star.uno.RuntimeException message:
/mnt/SSD_DATA/lo/source/bibisect-71-source/svx/source/unodraw/unoshap2.cxx:297

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


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

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107642

Dieter  changed:

   What|Removed |Added

 Depends on||136049


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136049
[Bug 136049] PARAGRAPH DIALOG: Improve Drop Caps to make them work with
quotation marks.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 136049] PARAGRAPH DIALOG: Improve Drop Caps to make them work with quotation marks.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136049

Dieter  changed:

   What|Removed |Added

   Keywords||needsUXEval
 Blocks||107642
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
Summary|Improve Drop Caps to make   |PARAGRAPH DIALOG: Improve
   |them work with quotation|Drop Caps to make them work
   |marks.  |with quotation marks.

--- Comment #3 from Dieter  ---
I support that idea.


Referenced Bugs:

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


[Libreoffice-ux-advise] [Bug 136049] PARAGRAPH DIALOG: Improve Drop Caps to make them work with quotation marks.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136049

Dieter  changed:

   What|Removed |Added

   Keywords||needsUXEval
 Blocks||107642
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
Summary|Improve Drop Caps to make   |PARAGRAPH DIALOG: Improve
   |them work with quotation|Drop Caps to make them work
   |marks.  |with quotation marks.

--- Comment #3 from Dieter  ---
I support that idea.


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 135583] FILEOPEN RTF: Image jumps out of table when pressing arrow up (no free movement)

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135583

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 135581] Changing anchor from "to page" "to paragraph' or 'to character' moves the image to a total different position

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135581

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 113195] [META] Japanese language-specific CJK issues

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113195
Bug 113195 depends on bug 127491, which changed state.

Bug 127491 Summary: Enter a half-width character at begining of line , The 
Language change from Japanese to English.
https://bugs.documentfoundation.org/show_bug.cgi?id=127491

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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


[Libreoffice-bugs] [Bug 135570] Text flow (breaking across pages) a regular (because of anchor to character placement)

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135570

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 130192] Difficulty inputting in Japanese

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130192

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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


[Libreoffice-bugs] [Bug 107701] [META] Table border bugs and enhancements

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107701
Bug 107701 depends on bug 127019, which changed state.

Bug 127019 Summary: FORMATTING: Table border on right side missing at table 
with a single column
https://bugs.documentfoundation.org/show_bug.cgi?id=127019

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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


[Libreoffice-bugs] [Bug 127019] FORMATTING: Table border on right side missing at table with a single column

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127019

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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


[Libreoffice-bugs] [Bug 83066] [META] CJK (Chinese, Japanese, Korean, and Vietnamese) language issues

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83066
Bug 83066 depends on bug 127491, which changed state.

Bug 127491 Summary: Enter a half-width character at begining of line , The 
Language change from Japanese to English.
https://bugs.documentfoundation.org/show_bug.cgi?id=127491

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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


[Libreoffice-bugs] [Bug 127491] Enter a half-width character at begining of line , The Language change from Japanese to English.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127491

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

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 135571] On screen page layout doesn't match save & reload screen layout (images & anchoring)

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135571

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 127019] FORMATTING: Table border on right side missing at table with a single column

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127019

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

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 135566] Writer loses paragraph when editing RTL text with track, invisible changes

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135566

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 127491] Enter a half-width character at begining of line , The Language change from Japanese to English.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127491

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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


[Libreoffice-bugs] [Bug 130192] Difficulty inputting in Japanese

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130192

--- Comment #3 from QA Administrators  ---
Dear Rin Abelgas,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You 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 127491] Enter a half-width character at begining of line , The Language change from Japanese to English.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127491

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

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
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 130919] The line thickness of a border of a cell in Calc

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130919

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

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 130532] Relationship graph does not show up one to one relationship

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130532

--- Comment #3 from QA Administrators  ---
Dear Claude Thomassin,

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-ux-advise] [Bug 127491] Enter a half-width character at begining of line , The Language change from Japanese to English.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127491

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

-- 
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 136058] New: loimpress "audio / video" icon corrupt

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136058

Bug ID: 136058
   Summary: loimpress "audio / video" icon corrupt
   Product: LibreOffice
   Version: 7.0.0.1 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: elora...@aa6kj.hopto.org

Created attachment 164613
  --> https://bugs.documentfoundation.org/attachment.cgi?id=164613=edit
Screenshot showing the icon problem

I have inserted audio track to a slide with "Insert -> Audio or Video...".
Everything looks fine at first but then I save the file (in native odp format)
and open it again in loimpress. At this point the original icon representing
video/audio is missing and there is only a tiny square in that place. If I
select the object, the selection shows the right size for the icon. I am
attaching a picture what is looks like. Furthermore, if I would export this to
some other format (or print) then the icon shows as small. I believe that this
is a bug.

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


[Libreoffice-bugs] [Bug 136057] Crash when resizing column width with joined shapes in Calc

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136057

--- Comment #1 from Kevin Suo  ---
The crash only occurs when the shapes are inserted and joined before the
spreadsheet is saved. When save the spreadsheet and reopen, resizing the column
does not trigger the crash.

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


[Libreoffice-bugs] [Bug 136057] New: Crash when resizing column width with joined shapes in Calc

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136057

Bug ID: 136057
   Summary: Crash when resizing column width with joined shapes in
Calc
   Product: LibreOffice
   Version: 6.4.5.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

Steps to Reproduce:
1. New Calc, insert the following simple shape (i.e., 3 lines):

-
||  |

2. Join the shapes one by one. (i.e., select each 2 of the shapes with
shift+click, then right-click -> Join. Make sure to join all the 3 shapes into
a single one.)

3. Try to resize column A by dragging the column header.

--> Crash with a Fatal Error warning box.

版本: 6.4.6.2
Build ID: 0ce51a4fd21bff07a5c061082cc82c5ed232f115
CPU 线程: 4; 操作系统: Linux 5.7; 界面渲染: 默认; VCL: gtk3; 
区域语言: zh-CN (zh_CN.UTF-8); UI 语言: zh-CN
Calc: threaded

Fedora 32 X64.

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


[Libreoffice-bugs] [Bug 134906] [META] Regressions from implementing soft edge and glow effects

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134906
Bug 134906 depends on bug 136047, which changed state.

Bug 136047 Summary: FILEOPEN PPTX: image from master page appears reverted 
("white hole")
https://bugs.documentfoundation.org/show_bug.cgi?id=136047

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

2020-08-23 Thread Mike Kaganski (via logerrit)
 vcl/source/outdev/bitmap.cxx |   12 
 1 file changed, 8 insertions(+), 4 deletions(-)

New commits:
commit 9ff0cd1f6b2200940ac51e580809e2a17c4b9550
Author: Mike Kaganski 
AuthorDate: Mon Aug 24 00:13:19 2020 +0300
Commit: Mike Kaganski 
CommitDate: Mon Aug 24 04:33:34 2020 +0200

tdf#136047: fix OutputDevice::DrawTransformBitmapExDirect for ...

transparent bitmap case
This has been broken in commit 9c621ee8ea41a1c53bfeca49827290826785973e,
where transparent bitmap started to override any transparency of vdev
with transparency of its pixels, and not use alpha when drawing RGB when
mpAlphaVDev was present.

Instead, this restores using alpha in RGB output, and blends alpha to
what is already in mpAlphaVDev.

Change-Id: Id82717def4535336450a7118f8bd29a1660c9520
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101254
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/vcl/source/outdev/bitmap.cxx b/vcl/source/outdev/bitmap.cxx
index 58a096a79045..88898d93179d 100644
--- a/vcl/source/outdev/bitmap.cxx
+++ b/vcl/source/outdev/bitmap.cxx
@@ -1050,7 +1050,6 @@ bool OutputDevice::DrawTransformBitmapExDirect(
 const basegfx::B2DPoint aTopX(aFullTransform * basegfx::B2DPoint(1.0, 
0.0));
 const basegfx::B2DPoint aTopY(aFullTransform * basegfx::B2DPoint(0.0, 
1.0));
 SalBitmap* pSalSrcBmp = rBitmapEx.GetBitmap().ImplGetSalBitmap().get();
-SalBitmap* pSalAlphaBmp = nullptr;
 Bitmap aAlphaBitmap;
 
 if(rBitmapEx.IsTransparent())
@@ -1063,8 +1062,6 @@ bool OutputDevice::DrawTransformBitmapExDirect(
 {
 aAlphaBitmap = rBitmapEx.GetMask();
 }
-if (!mpAlphaVDev)
-pSalAlphaBmp = aAlphaBitmap.ImplGetSalBitmap().get();
 }
 else if (mpAlphaVDev)
 {
@@ -1072,6 +1069,8 @@ bool OutputDevice::DrawTransformBitmapExDirect(
 aAlphaBitmap.Erase(COL_BLACK);
 }
 
+SalBitmap* pSalAlphaBmp = aAlphaBitmap.ImplGetSalBitmap().get();
+
 bDone = mpGraphics->DrawTransformedBitmap(
 aNull,
 aTopX,
@@ -1081,7 +1080,12 @@ bool OutputDevice::DrawTransformBitmapExDirect(
 this);
 
 if (mpAlphaVDev)
-mpAlphaVDev->DrawTransformBitmapExDirect(aFullTransform, 
BitmapEx(aAlphaBitmap));
+{
+// Merge bitmap alpha to alpha device
+Bitmap aBlack(rBitmapEx.GetSizePixel(), 1);
+aBlack.Erase(COL_BLACK);
+mpAlphaVDev->DrawTransformBitmapExDirect(aFullTransform, 
BitmapEx(aBlack, aAlphaBitmap));
+}
 
 return bDone;
 };
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 136056] New: Watermark in Exported PDF File

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136056

Bug ID: 136056
   Summary: Watermark in Exported PDF File
   Product: LibreOffice
   Version: 7.0.0.3 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: larrywbrad...@gmail.com

Description:
The watermark created in an exported PDF file is garish and
unprofessional-looking: Loud color, too large, and vertical orientation. Prefer
grey, smaller footprint, and diagonal lettering. I need watermarks on my
document, but am embarrassed to send out documents that look like a caterpillar
puked on them. Sorry for the negativity, but I'm guessing most people feel the
same way.

Steps to Reproduce:
1.Export to pdf and choose watermark function.

Actual Results:
Functionally, works fine. Visually, bleh.

Expected Results:
Produce a professional-looking watermark that I am not embarrassed to send to
clients. 


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: TextDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes

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


[Libreoffice-bugs] [Bug 133063] Libre keeps the copy. Even if we copy a new one.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133063

--- Comment #8 from MARINA-SODA  ---
It is a lie that cannot be reproduced and it has been reported for more than 10
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-bugs] [Bug 133063] Libre keeps the copy. Even if we copy a new one.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133063

--- Comment #7 from MARINA-SODA  ---
On Ver 7.0.0.3
Not solved.

Plez refresh the clipboard after cut or copy always.
STOP using the Libre-only clipboard,I'm begging you to stop.

It's a lie that I can't reproduce it and it's been reported over 10 years ago.

I’VE NO CLIPBOARD WARE.

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


[Libreoffice-bugs] [Bug 133063] Libre keeps the copy. Even if we copy a new one.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133063

MARINA-SODA  changed:

   What|Removed |Added

   Keywords||accessibility
Version|unspecified |7.0.0.3 release

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


[Libreoffice-bugs] [Bug 135958] Error using "wrap text automatically"

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135958

--- Comment #8 from Erick M  ---
Created attachment 164612
  --> https://bugs.documentfoundation.org/attachment.cgi?id=164612=edit
Error C-14

See how cell C14 appears to me!

-- 
You are receiving this mail because:
You 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 136053] Deleting a word

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136053

Telesto  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||tele...@surfxs.nl
   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 136053] Deleting a word

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136053

Telesto  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||tele...@surfxs.nl
   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-commits] core.git: sc/source

2020-08-23 Thread Ahmed ElShreif (via logerrit)
 sc/source/ui/view/tabvwsh3.cxx |   14 ++
 1 file changed, 14 insertions(+)

New commits:
commit a06a83b29a9da770787bffe416b138102aa12531
Author: Ahmed ElShreif 
AuthorDate: Fri Aug 21 04:04:03 2020 +0200
Commit: Ahmed ElShreif 
CommitDate: Mon Aug 24 01:04:07 2020 +0200

uilogger : Add support in the Logger and DSL for ZOOM in CALC

For example the DSL syntax will be:
>>"Set Zoom to 46"

Change-Id: Ie8a77441da10bd32efd7a95c3f1550671a62d16f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101125
Tested-by: Jenkins
Reviewed-by: Ahmed ElShreif 

diff --git a/sc/source/ui/view/tabvwsh3.cxx b/sc/source/ui/view/tabvwsh3.cxx
index 2a883642b2da..80748d849c3d 100644
--- a/sc/source/ui/view/tabvwsh3.cxx
+++ b/sc/source/ui/view/tabvwsh3.cxx
@@ -27,6 +27,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 
 #include 
 #include 
@@ -57,6 +59,17 @@
 
 namespace
 {
+void collectUIInformation(const OUString& aZoom)
+{
+EventDescription aDescription;
+aDescription.aID = "grid_window";
+aDescription.aParameters = {{"ZOOM", aZoom}};
+aDescription.aAction = "SET";
+aDescription.aKeyWord = "ScGridWinUIObject";
+aDescription.aParent = "MainWindow";
+UITestLogger::getInstance().logEvent(aDescription);
+}
+
 enum class DetectFlags
 {
 NONE,
@@ -793,6 +806,7 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
 {
 ScAppOptions aNewOpt = pScMod->GetAppOptions();
 aNewOpt.SetZoom( nCurrentZoom );
+
collectUIInformation(OUString::number(nCurrentZoom));
 aNewOpt.SetZoomType( GetZoomType() );
 pScMod->SetAppOptions( aNewOpt );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 136015] Formula's become blurred rendered images after DOC export

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136015

Telesto  changed:

   What|Removed |Added

   Keywords|bibisected, bisected,   |bibisectRequest
   |regression  |

--- Comment #6 from Telesto  ---
(In reply to V Stuart Foote from comment #5)
> Bisection is not useful. Asking to revert a reversion ;-)
> 
> Meanwhile Armin has moved forward with other work on primitive graphics. And
> bitmap gets the short end of the
> stick--https://gerrit.libreoffice.org/c/core/+/92048

Happily to add bibisect again.. i'm pretty sure it did work... somewhere before
sw: Use primitive renderer for graphics.

However, as the commit states: revert it until a better solution is proposed

And I assume Use primitive renderer for graphics is part of moving forward. So
bisecting the point where it worked without this might be pointless..

Not a request to revert the revert.. or maybe it should be reverted and the
regressions fixed instead.. As the revert breaks things too..

So more an invitation to look at this again.. as the revert is also breaking
things

-- 
You are receiving this mail because:
You 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 136055] ENHANCEMENT UI: Synchronize checkbox for page margins

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136055

Telesto  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

-- 
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 136055] New: ENHANCEMENT UI: Synchronize checkbox for page margins

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136055

Bug ID: 136055
   Summary: ENHANCEMENT UI: Synchronize checkbox for page margins
   Product: LibreOffice
   Version: 7.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
ENHANCEMENT UI: Synchronize checkbox for page margins

Steps to Reproduce:
1. Open Writer
2. Format -> Page Style -> Border tab -> notice the synchronize checkbox for
padding
3. Go to page tab; look at page margins

Actual Results:
No synchronize

Expected Results:
Expected is an overstatement.. might be practical. as the page margins are the
same by default.. so you might want to change them in tandem..


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.0.2
Build ID: c01aa64b6c3d89ebe5fe69c28c7adb24eb85249c
CPU threads: 4; OS: Mac OS X 10.12.6; UI render: default; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: 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 136055] ENHANCEMENT UI: Synchronize checkbox for page margins

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136055

Telesto  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

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


[Libreoffice-bugs] [Bug 136054] New: Border line width isn't reset in page style dialog after pressing reset

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136054

Bug ID: 136054
   Summary: Border line width isn't reset in page style dialog
after pressing reset
   Product: LibreOffice
   Version: 7.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Border line width isn't reset in page style dialog after pressing reset


Steps to Reproduce:
1. Open writer
2. Format -> page style -> Borders
3. Change the default line width
4. Press reset

Actual Results:
No reset

Expected Results:
Reset


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.0.2
Build ID: c01aa64b6c3d89ebe5fe69c28c7adb24eb85249c
CPU threads: 4; OS: Mac OS X 10.12.6; UI render: default; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

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


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

2020-08-23 Thread Ahmed ElShreif (via logerrit)
 include/vcl/uitest/logger.hxx  |2 ++
 include/vcl/uitest/uiobject.hxx|2 ++
 uitest/ui_logger_dsl/UI_Object_commands.tx |6 +-
 uitest/ui_logger_dsl/dsl_core.py   |   20 
 vcl/source/uitest/logger.cxx   |   15 +++
 vcl/source/uitest/uiobject.cxx |   11 +++
 vcl/source/window/toolbox2.cxx |2 ++
 7 files changed, 57 insertions(+), 1 deletion(-)

New commits:
commit 3ceccd384cb61686a96e73821035c6ac5d0d1604
Author: Ahmed ElShreif 
AuthorDate: Sun Aug 16 10:24:20 2020 +0200
Commit: Ahmed ElShreif 
CommitDate: Mon Aug 24 00:26:03 2020 +0200

uilogger : Add support in the Logger and DSL for the ToolBox

The support is tested on the FindBar and it works well .

For example the DSL syntax in the FindBar should be like:
>>"Click on item number 3 in FindBar"

Change-Id: I3ec5f5afc260df4b38dc4e420fcc48d9c774c29f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100811
Tested-by: Jenkins
Reviewed-by: Markus Mohrhard 

diff --git a/include/vcl/uitest/logger.hxx b/include/vcl/uitest/logger.hxx
index a2339b8b8e39..927c9cbf38ef 100644
--- a/include/vcl/uitest/logger.hxx
+++ b/include/vcl/uitest/logger.hxx
@@ -44,6 +44,8 @@ public:
 
 void logAction(VclPtr const& xUIElement, VclEventId nEvent);
 
+void logAction(vcl::Window* const& xUIWin, VclEventId nEvent);
+
 void log(const OUString& rString);
 
 void logKeyInput(VclPtr const& xUIElement, const KeyEvent& 
rEvent);
diff --git a/include/vcl/uitest/uiobject.hxx b/include/vcl/uitest/uiobject.hxx
index 50533157e19b..7d709a342eb4 100644
--- a/include/vcl/uitest/uiobject.hxx
+++ b/include/vcl/uitest/uiobject.hxx
@@ -499,6 +499,8 @@ public:
 
 static std::unique_ptr create(vcl::Window* pWindow);
 
+virtual OUString get_action(VclEventId nEvent) const override;
+
 private:
 
 virtual OUString get_name() const override;
diff --git a/uitest/ui_logger_dsl/UI_Object_commands.tx 
b/uitest/ui_logger_dsl/UI_Object_commands.tx
index 2d3724f2d11e..a3fe81b72b2b 100644
--- a/uitest/ui_logger_dsl/UI_Object_commands.tx
+++ b/uitest/ui_logger_dsl/UI_Object_commands.tx
@@ -10,12 +10,13 @@ import type_options
 6)  ComboBoxUIObject   ( Select event )
 7)  SpinUIObject   ( Increase event - Decrease event )
 8)  TabControlUIObject ( Change tab event )
+9)  ToolBoxUIObject ( Click on item event )
 */
 
 UIObjectCommand:
   ButtonUIObject | CheckBoxUIObject | EditUIObject | 
   RadioButtonUIObject | ListBoxUIObject | ComboBoxUIObject | 
-  SpinFieldUIObject | TabControlUIObject
+  SpinFieldUIObject | TabControlUIObject | ToolBoxUIObject
 ;
 
 ButtonUIObject:
@@ -42,6 +43,9 @@ SpinFieldUIObject:
 ListBoxUIObject:
'Select element with position ' POS=INT 'in' list_id=STRING ('from' 
parent_id=ID)?
 ;
+ToolBoxUIObject:
+   'Click on item number' POS=INT 'in' toolbox_id=ID
+;
 //=
 //helper grammar for EditUIObject
 action_on_UIObject:
diff --git a/uitest/ui_logger_dsl/dsl_core.py b/uitest/ui_logger_dsl/dsl_core.py
index ebe936bba76a..feb69b76a320 100644
--- a/uitest/ui_logger_dsl/dsl_core.py
+++ b/uitest/ui_logger_dsl/dsl_core.py
@@ -103,6 +103,7 @@ class ul_Compiler:
 "ListBoxUIObject": self.handle_List_box,
 "SpinFieldUIObject": self.handle_spin_field,
 "EditUIObject": self.handle_Edit_uiObject,
+"ToolBoxUIObject": self.handle_ToolBox_uiObject,
 "writer_Type_command": self.handle_writer_type,
 "writer_Select_command": self.handle_writer_select,
 "writer_GOTO_command": self.handle_writer_goto,
@@ -607,6 +608,25 @@ class ul_Compiler:
 
 self.prev_command = EditUIObject
 
+def handle_ToolBox_uiObject(self, ToolBoxUIObject):
+name_of_obj = ""
+if keyword.iskeyword(ToolBoxUIObject.toolbox_id):
+name_of_obj = "x" + ToolBoxUIObject.toolbox_id
+else:
+name_of_obj = ToolBoxUIObject.toolbox_id
+
+self.init_Object(
+name_of_obj,
+ToolBoxUIObject.toolbox_id,
+self.last_parent[self.parent_hierarchy_count],
+)
+
+self.write_line_with_one_parameters(
+name_of_obj, "CLICK", "POS", ToolBoxUIObject.POS
+)
+
+self.prev_command = ToolBoxUIObject
+
 def handle_writer_type(self, writer_Type_command):
 
 self.init_app()
diff --git a/vcl/source/uitest/logger.cxx b/vcl/source/uitest/logger.cxx
index 8cd0c4b6f15f..b7a9e02ac48a 100644
--- a/vcl/source/uitest/logger.cxx
+++ b/vcl/source/uitest/logger.cxx
@@ -166,6 +166,21 @@ void UITestLogger::logAction(VclPtr const& 
xUIElement, VclEventId nEven
 maStream.WriteLine(OUStringToOString(aAction, RTL_TEXTENCODING_UTF8));
 }
 
+void UITestLogger::logAction(vcl::Window* const& xUIWin, 

[Libreoffice-bugs] [Bug 132121] LibreOffice 6.4.2.2 (x64) Writer sucks at kashidas when justifying Arabic text, whereas LibreOffice 4.1.3.2 (x86) Writer does quite good

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132121

shees1993  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 132121] LibreOffice 6.4.2.2 (x64) Writer sucks at kashidas when justifying Arabic text, whereas LibreOffice 4.1.3.2 (x86) Writer does quite good

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132121

--- Comment #3 from shees1993  ---
(In reply to Buovjaga from comment #2)
> Could this be the same root issue as bug 108604?

Yes, as far as I can see, it's the same issue.
The only difference is that the issue persists even in LibreOffice 6.4.2.2
(x64) Writer, whereas the issue was not there in LibreOffice 4.1.3.2 (x86)
Writer.

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


[Libreoffice-bugs] [Bug 132640] Allow row to break across pages and columns doesn't appear to work in LibO 7.0

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132640

--- Comment #9 from Aron Budea  ---
(In reply to Telesto from comment #8)
> It's more a yes/no question; no need for a explanation; not a big fan of
> sudden behavioral /layout changes. But really my 2 cents; especially for my
> sample file
I'd agree with a normal use case involved. However, if the result is that part
of the cell content get hidden with the user not noticing, as it happened
before the fix, that isn't something I'd call normal use case, but dangerous
instead. If you can show a sample where that isn't the case, yet the fix causes
a sudden layout change, I'd be interested.

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


[Libreoffice-bugs] [Bug 135958] Error using "wrap text automatically"

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135958

--- Comment #7 from Julien Nabet  ---
(In reply to Erick M from comment #5)
> Created attachment 164597 [details]
> Spreadsheet with error!
> ...

Could you indicate an example of cell where the "Wrap automatically" isn't
present?
I mean C14 has this option enabled.

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


[Libreoffice-bugs] [Bug 131510] Old Replacement in german language

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131510

Julien Nabet  changed:

   What|Removed |Added

 CC||er...@redhat.com

--- Comment #4 from Julien Nabet  ---
Eike: taking a look at https://wiki.documentfoundation.org/Language_Teams, I
didn't see any specific German contact for language team. Thought you might
have some idea here even if it doesn't concern Calc.

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


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

2020-08-23 Thread Andrea Gelmini (via logerrit)
 lotuswordpro/source/filter/lwpnumericfmt.cxx |6 +++---
 lotuswordpro/source/filter/lwpnumericfmt.hxx |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 57520e35bb250eff60bd8e3dcdd3d7ef1129e1b5
Author: Andrea Gelmini 
AuthorDate: Sat Aug 22 18:41:25 2020 +0200
Commit: Julien Nabet 
CommitDate: Sun Aug 23 23:43:15 2020 +0200

Fix typo in code

Change-Id: Ie0f3d8b01e0370f0a2e95d46b61be56943d3bd78
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101198
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/lotuswordpro/source/filter/lwpnumericfmt.cxx 
b/lotuswordpro/source/filter/lwpnumericfmt.cxx
index 3edf96eeb8dc..c2dc4d4e76a6 100644
--- a/lotuswordpro/source/filter/lwpnumericfmt.cxx
+++ b/lotuswordpro/source/filter/lwpnumericfmt.cxx
@@ -209,7 +209,7 @@ LwpNumericFormat::GetDecimalPlaces()
 return cDecimalPlaces;
 return GetDefaultDecimalPlaces(cFormat);
 }
-void LwpNumericFormat::GetCurrencyStr(LwpNumericFormatSubset aNumber, 
OUString& aPrefix, OUString& aSuffix, bool bNegtive)
+void LwpNumericFormat::GetCurrencyStr(LwpNumericFormatSubset aNumber, 
OUString& aPrefix, OUString& aSuffix, bool bNegative)
 {
 aPrefix = aNumber.GetPrefix();
 aSuffix = aNumber.GetSuffix();
@@ -220,7 +220,7 @@ void 
LwpNumericFormat::GetCurrencyStr(LwpNumericFormatSubset aNumber, OUString&
 bool bShowSpace = m_aCurrencyInfo.IsShowSpace(cFormat);
 if ( aNumber.IsDefaultPrefix())
 {
-if (bNegtive)
+if (bNegative)
 {
 aPrefix = "(";
 }
@@ -246,7 +246,7 @@ void 
LwpNumericFormat::GetCurrencyStr(LwpNumericFormatSubset aNumber, OUString&
 
 }
 
-if (bNegtive)
+if (bNegative)
 {
 aSuffix += ")";
 }
diff --git a/lotuswordpro/source/filter/lwpnumericfmt.hxx 
b/lotuswordpro/source/filter/lwpnumericfmt.hxx
index 225f373c4f6f..ef1af1da01ec 100644
--- a/lotuswordpro/source/filter/lwpnumericfmt.hxx
+++ b/lotuswordpro/source/filter/lwpnumericfmt.hxx
@@ -269,7 +269,7 @@ private:
 static sal_uInt16 GetDefaultDecimalPlaces(sal_uInt16 Format);
 static LwpCurrencyPool m_aCurrencyInfo;
 
-void GetCurrencyStr(LwpNumericFormatSubset aNumber, OUString& aPrefix, 
OUString& aSuffix, bool bNegtive=false);
+void GetCurrencyStr(LwpNumericFormatSubset aNumber, OUString& aPrefix, 
OUString& aSuffix, bool bNegative=false);
 void SetNumberType(XFNumberStyle* pStyle);
 static OUString reencode(const OUString& sCode);
 };
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 132300] Abbreviations :XX: for autocorrection do not work in French

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132300

--- Comment #4 from Julien Nabet  ---
(In reply to Buovjaga from comment #3)
> (In reply to Mike Kaganski from comment #2)
> > So the problem seems to be the order of the replacements? I feel it would be
> > logical to do them in the opposite order - would it break something?
> 
> Silvain, Julien: can you reflect on this question?

I don't know if there may be some cons, I mean perhaps there may also be some
situations where this opposite order might be wrong.

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


[Libreoffice-bugs] [Bug 136047] FILEOPEN PPTX: image from master page appears reverted ("white hole")

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136047

Mike Kaganski  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #7 from Mike Kaganski  ---
https://gerrit.libreoffice.org/c/core/+/101254

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


[Libreoffice-bugs] [Bug 95378] Navigator does not select/highlight names of images, objects, tables etc that get focus, also not with Content View activated

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95378

--- Comment #6 from Jim Raykowski  ---
Created attachment 164611
  --> https://bugs.documentfoundation.org/attachment.cgi?id=164611=edit
Writer Navigator table, frame, OLE, image and draw objects tracking demo

Hi fellow LO enthusiasts,

Here is effort that provides for Tables, Frames, Images, OLE objects and
Drawing objects to be tracking by the Navigator when selected in the document.

https://gerrit.libreoffice.org/c/core/+/101253

Please see attached demo. Comments and code review greatly appreciated :)

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


[Libreoffice-bugs] [Bug 136047] FILEOPEN PPTX: image from master page appears reverted ("white hole")

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136047

--- Comment #6 from Mike Kaganski  ---
(In reply to Gerald Pfeifer from comment #5)

Sure; the commit mentioned in comment 3 has manifested the problem introduced
in the commit from comment 4.

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


[Libreoffice-bugs] [Bug 136047] FILEOPEN PPTX: image from master page appears reverted ("white hole")

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136047

--- Comment #5 from Gerald Pfeifer  ---
(In reply to Mike Kaganski from comment #4)
> Or rather from
> https://git.libreoffice.org/core/+/9c621ee8ea41a1c53bfeca49827290826785973e
> (changes in OutputDevice::DrawTransformBitmapExDirect).

I am pretty sure that (alone) isn't it: This has been working fine for
the last months, and I have been updating to current builds of head once
a week, sometimes more often.

I cannot exactly pinpoint it, but believe this was broken about two weeks
ago, give or take a bit - definitely not in May (the date of this commit)
or June, and probably not July even.

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


[Libreoffice-bugs] [Bug 135980] Styles in Sidebar aren't displayed properly.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135980

--- Comment #8 from Mihkel Tõnnov  ---
Can't confirm on Arch Linux with 7.0.0.3: following the listed steps, the style
tree gets expanded with Heading 1 selected/highlighted.

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


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

2020-08-23 Thread Tor Lillqvist (via logerrit)
 sw/source/uibase/uiview/view.cxx |3 ---
 1 file changed, 3 deletions(-)

New commits:
commit c123bfff501229f398a1b679fc7434b82d53685c
Author: Tor Lillqvist 
AuthorDate: Thu Aug 20 22:58:24 2020 +0300
Commit: Tor Lillqvist 
CommitDate: Sun Aug 23 22:40:33 2020 +0200

Bin overly eager early return that stops replacement image creation

The return causes a customer's Java code that handles some .odt
document to unexpectedly not create object replacement images in the
document.

The problem is that in the bad case, the SwTextShell is created later
than .uno:UpdateAll is dispatched, so the dispatch does nothing.
SwBaseShell::Execute() for FN_UPDATE_ALL is not called. And this is
required, becase that calls setUserAllowsLinkUpdate(true), so that on
save, when EmbeddedObjectContainer::StoreAsChildren() in comphelper/
hits the 'if ( !xStream.is() && getUserAllowsLinkUpdate() )'
condition, then we create a replacement image.

This is a Basic script that demonstrates the same issue:

desktop = CreateUnoService("com.sun.star.frame.Desktop")
Dim props(0) as new com.sun.star.beans.PropertyValue
props(0).Name = "Hidden"
props(0).Value = true
component = desktop.loadComponentFromURL("file:///.../test.odt", 
"_default", 0, props)
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
frame = component.CurrentController.Frame
dispatcher.executeDispatch(frame, ".uno:UpdateAll", "", 0, Array())
component.storeSelf(Array())
component.dispose()

(Will also try to add a unit test that demonstrates the problem and
verifies this fix.)

Change-Id: I4a5f78a2118a387f062c2d5213a0012a7df2dd9f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101138
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist 

diff --git a/sw/source/uibase/uiview/view.cxx b/sw/source/uibase/uiview/view.cxx
index 5ee6f15b65a9..b93880751bd0 100644
--- a/sw/source/uibase/uiview/view.cxx
+++ b/sw/source/uibase/uiview/view.cxx
@@ -1385,9 +1385,6 @@ void SwView::ReadUserDataSequence ( const uno::Sequence < 
beans::PropertyValue >
 return;
 
 Point aCursorPos( nX, nY );
-const long nAdd = m_pWrtShell->GetViewOptions()->getBrowseMode() ? 
DOCUMENTBORDER : DOCUMENTBORDER*2;
-if (nBottom > (m_pWrtShell->GetDocSize().Height()+nAdd) )
-return;
 
 m_pWrtShell->EnableSmooth( false );
 const tools::Rectangle aVis( nLeft, nTop, nRight, nBottom );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98447] overlined text not searchable

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98447

mwtjunkm...@gmail.com changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 CC||mwtjunkm...@gmail.com
 Status|NEW |RESOLVED

--- Comment #2 from mwtjunkm...@gmail.com ---
Works for me in:

Version: 7.1.0.0.alpha0+ (x64)
Build ID: 8700bace8c0714d853f5df6918ab9c8bb3d81f77
CPU threads: 8; OS: Windows 10.0 Build 20197; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL


The Find and Replace dialog -> Other Options -> Attributes pick contains an
Overlining attribute


Other Options -> Format: "Text Format (Search)" is now called "Search For
Formatting" and is Overlining is an option.

1. Launch Writer
2. Type some text
3. Apply overline dash (bold)
4. Select Edit, Find And Replace...
5. Click Attributes. A dialog box appears of attributes to select.
6. Select Overline
7. Click OK 
8. Click Find All, Find Previous, or Find Next

Formatted text is found.

Alternatively:
1. Launch Writer
2. Type some text
3. Apply overline dash (bold)
4. Select Edit, Find And Replace...
5. Click the Format... button
6. Under Text Decoration, select Dash (bold) from the Overlining drop-down
7. Hit OK
8. Click Find All, Find Previous, or Find Next


Formatted text is found.

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


[Libreoffice-bugs] [Bug 132640] Allow row to break across pages and columns doesn't appear to work in LibO 7.0

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132640

--- Comment #8 from Telesto  ---
(In reply to Aron Budea from comment #7)
> I didn't notice what you were referring to at first, when I checked it for
> comment 2, but your sample has the exact same kind of row as the sample in
> bug 123116, A5 in itself is longer than a page, so
> b271cc46851c61ddef20dc869bf339c857f76b18 (plus
> 60a1b40cf363a54b64b84afcfad7fd08bc6ce770) must be in effect. Not sure if
> this requires more explanation.

It's more a yes/no question; no need for a explanation; not a big fan of sudden
behavioral /layout changes. But really my 2 cents; especially for my sample
file

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


[Libreoffice-bugs] [Bug 104485] Alphabetizing text selection function in Writer

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104485

mwtjunkm...@gmail.com changed:

   What|Removed |Added

 CC||mwtjunkm...@gmail.com

--- Comment #3 from mwtjunkm...@gmail.com ---
How is this issue not addressed by (or different from):

1. typing (with returns between each, making them separate paragraphs)

Zebra
Giraffe
Aardvark
Badger



2. Highlighting the four lines of text

3. Selecting Tools, Sort... from the menu bar at the top

4. Hitting OK

producing:

Aardvark
Badger
Giraffe
Zebra

Works for me in:

Version: 7.1.0.0.alpha0+ (x64)
Build ID: 8700bace8c0714d853f5df6918ab9c8bb3d81f77
CPU threads: 8; OS: Windows 10.0 Build 20197; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: 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 132640] Allow row to break across pages and columns doesn't appear to work in LibO 7.0

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132640

--- Comment #7 from Aron Budea  ---
I didn't notice what you were referring to at first, when I checked it for
comment 2, but your sample has the exact same kind of row as the sample in bug
123116, A5 in itself is longer than a page, so
b271cc46851c61ddef20dc869bf339c857f76b18 (plus
60a1b40cf363a54b64b84afcfad7fd08bc6ce770) must be in effect. Not sure if this
requires more explanation.

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


[Libreoffice-bugs] [Bug 135952] EXPORTING: Crash when using export in libreoffice draw (100% reproducible)

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135952

--- Comment #9 from bram.bugzi...@enicon.net ---
I tried on a windows 7 system too. 
Initially I had 6.4.something on there and it did not crash (I noticed UI
render was set to default in the about screen). 
(I still could not export to gif though, I get an error box 'Image filter not
found' which seems to be related to this bug :
https://www.mail-archive.com/libreoffice-bugs@lists.freedesktop.org/msg630942.html.
)

Then I installed 7.0.0.3 and then it crashes.
If I disable Skia (unselect in Tools->Options->LibreOffice->View->Graphics
Output and restart) then it does not crash anymore, but I do get the 'Image
filter not found' error again for gif export, and for png export. 

I also noticed that the behavior of the dialog that freezes is erratic with
respect to the size fields for the non crashing scenario.
Eg I have drawn a box of 136.1 x 150 points
I do export, selection and i get a size of 135.73 x 149.98 points, 37 pixel/cm
which is a bit unexpected but maybe there are some conversion errors along the
way somewhere ?
But as soon as this dialog looses focus the values jump to 9,99 x 9,99
points.
And If try to press the up/down buttons of the width then the height all of a
sudden becomes 0,00.
Trying to enter an actual value there makes everything hang for a while (after
pressing enter in the width box) after which the screen just disappears and I
go back to the main libreoffice draw interface. 
But he seems to have created the file (the enter press apparently trigger the
button to start the export)

For it crashes: 
Version: 7.0.0.3 (x64)
Build ID: 8061b3e9204bef6b321a21033174034a5e2ea88e
CPU threads: 8; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: nl-BE (nl_BE); UI: en-US
Calc: CL

For this it works but it behaves erratic :
Version: 7.0.0.3 (x64)
Build ID: 8061b3e9204bef6b321a21033174034a5e2ea88e
CPU threads: 8; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win
Locale: nl-BE (nl_BE); UI: en-US
Calc: CL

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


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

2020-08-23 Thread Caolán McNamara (via logerrit)
 vcl/unx/gtk3/gtk3gtkframe.cxx |   13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)

New commits:
commit 9d0d788fa73744fcdf50534360a2942e5c3cc6d4
Author: Caolán McNamara 
AuthorDate: Sun Aug 23 20:12:28 2020 +0100
Commit: Caolán McNamara 
CommitDate: Sun Aug 23 22:14:54 2020 +0200

tdf#135779 move focus back to usual parent before grabbing pointer

Change-Id: Ia4f1f2f1672a76515ab586d679a05467515868d6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101247
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx
index b4ddd142ca1d..5959bb62a67d 100644
--- a/vcl/unx/gtk3/gtk3gtkframe.cxx
+++ b/vcl/unx/gtk3/gtk3gtkframe.cxx
@@ -1997,6 +1997,13 @@ void GtkSalFrame::SetPointer( PointerStyle ePointerStyle 
)
 
 void GtkSalFrame::grabPointer( bool bGrab, bool bKeyboardAlso, bool 
bOwnerEvents )
 {
+if (bGrab)
+{
+// tdf#135779 move focus back inside usual input window out of any
+// other gtk widgets before grabbing the pointer
+GrabFocus();
+}
+
 static const char* pEnv = getenv( "SAL_NO_MOUSEGRABS" );
 if (pEnv && *pEnv)
 return;
@@ -2533,8 +2540,10 @@ void GtkSalFrame::GrabFocus()
 pGrabWidget = GTK_WIDGET(m_pWindow);
 else
 pGrabWidget = GTK_WIDGET(m_pFixedContainer);
-gtk_widget_set_can_focus(pGrabWidget, true);
-gtk_widget_grab_focus(pGrabWidget);
+if (!gtk_widget_get_can_focus(pGrabWidget))
+gtk_widget_set_can_focus(pGrabWidget, true);
+if (!gtk_widget_has_focus(pGrabWidget))
+gtk_widget_grab_focus(pGrabWidget);
 }
 
 gboolean GtkSalFrame::signalButton(GtkWidget*, GdkEventButton* pEvent, 
gpointer frame)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 131515] Replacement single quote in the middle from a word

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131515

Jürgen Kirsten  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Jürgen Kirsten  ---


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

-- 
You are receiving this mail because:
You 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 132133] Allow protecting only the format of a sheet

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132133

--- Comment #6 from Christopher R Lee  ---
I note that the Importance has been assigned to 'medium' - 'enhancement' which,
in the drop-down list, seems to fall somewhere below 'trivial'.

During the last few months, I have been helping someone set up a
micro-enterprise, using LO for the office work. While (under French
regulations), the administrative burden has been made as light as possible, I
have been unable to create Calc spreadsheets (invoices, etc.) that have proved
sufficiently reliable in the hands of users inexperienced in office IT. The
survival of such small companies depends on reliable documentation and record
keeping.

Consequently, we are now searching for funds to invest in the Microsoft 365
Business Standard package. The cost is about 300 euro/year for two users,
though the package includes online storage for which we are currently paying
another supplier. This migration will prevent us from using machines, available
at low cost because they are no longer usable with Windows, that have
successfully been converted to Linux.

-- 
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 132133] Allow protecting only the format of a sheet

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132133

--- Comment #6 from Christopher R Lee  ---
I note that the Importance has been assigned to 'medium' - 'enhancement' which,
in the drop-down list, seems to fall somewhere below 'trivial'.

During the last few months, I have been helping someone set up a
micro-enterprise, using LO for the office work. While (under French
regulations), the administrative burden has been made as light as possible, I
have been unable to create Calc spreadsheets (invoices, etc.) that have proved
sufficiently reliable in the hands of users inexperienced in office IT. The
survival of such small companies depends on reliable documentation and record
keeping.

Consequently, we are now searching for funds to invest in the Microsoft 365
Business Standard package. The cost is about 300 euro/year for two users,
though the package includes online storage for which we are currently paying
another supplier. This migration will prevent us from using machines, available
at low cost because they are no longer usable with Windows, that have
successfully been converted to Linux.

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


Re: [core] tdf#87963: Add percentage value to new calculated compressed image size

2020-08-23 Thread anshu khare
Hi

I am developing on Visual Studio. I can access  .cxx and  .hxx files.

How can get access to  .ui files (so that I can add label to
compressgraphicdialog.ui) ?

Regards
Anshu

On Mon, 24 Aug, 2020, 12:35 AM Shivam, Kumar Singh (via Code Review), <
ger...@gerrit.libreoffice.org> wrote:

> Shivam, Kumar Singh has posted comments on this change. (
> https://gerrit.libreoffice.org/c/core/+/101242 )
>
> Change subject: tdf#87963: Add percentage value to new calculated
> compressed image size
> ..
>
>
> Patch Set 2:
>
> The correct way to do this would be to add a new label say
> "label-new-percentage" in the svx/ui/compressgraphicdialog.ui file right
> next to where the label for the current size is added.
> After that declare a new label similar to m_xFixedText6 in
> compressgraphicdialog.hxx and initialise it
> something like this in the cxx file
>
> " m_xFixedPercentage = m_xBuilder->weld_label("label-new-percentage"); "
>
> and add the new calculated percentage to this label using set_label().
> Do you get my point?
>
> There might be a better way to do this, but this is what i would have
> done. I am adding Tomaz as a reviewer he might be able to judge this idea.
>
>
> --
> To view, visit https://gerrit.libreoffice.org/c/core/+/101242
> To unsubscribe, or for help writing mail filters, visit
> https://gerrit.libreoffice.org/settings
>
> Gerrit-Project: core
> Gerrit-Branch: master
> Gerrit-Change-Id: I5fb87fd4d8cceb38775cb98520c0c7ba1d49bc93
> Gerrit-Change-Number: 101242
> Gerrit-PatchSet: 2
> Gerrit-Owner: Anshu 
> Gerrit-Reviewer: Jenkins
> Gerrit-Reviewer: Julien Nabet 
> Gerrit-CC: Shivam, Kumar Singh 
> Gerrit-CC: Tomaž Vajngerl 
> Gerrit-Comment-Date: Sun, 23 Aug 2020 19:04:51 +
> Gerrit-HasComments: No
> Gerrit-Has-Labels: No
> Gerrit-MessageType: comment
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 136053] New: Deleting a word

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136053

Bug ID: 136053
   Summary: Deleting a word
   Product: LibreOffice
   Version: 7.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: es...@ieee.org

Description:
Deleting a word should also delete either the leadin or trailing space.

Steps to Reproduce:
1.delete a word
2.then delete one of the two spaces
3.

Actual Results:
2 spaces

Expected Results:
1 space


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:
What a waste of time. It creates a distraction that disrupts the author's train
of thought.

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


[Libreoffice-bugs] [Bug 135980] Styles in Sidebar aren't displayed properly.

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135980

--- Comment #7 from Clarc  ---
(In reply to Dieter from comment #6)
> I can't confirm this with
> 
> Version: 7.0.0.3 (x64)
> Build ID: 8061b3e9204bef6b321a21033174034a5e2ea88e
> CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL:
> win
> Locale: de-DE (de_DE); UI: en-GB
> Calc: threaded

Today I tried it with a Windows PC and also couldn't replicate it... I'm fairly
certain that it's a Linux-only 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 135960] 2 columns default spacing shouldn't be 0 cm

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135960

--- Comment #3 from andreas_k  ---
there should be a KI to add someone to cc ;-)

-- 
You are receiving this mail because:
You 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 135960] 2 columns default spacing shouldn't be 0 cm

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135960

--- Comment #3 from andreas_k  ---
there should be a KI to add someone to cc ;-)

-- 
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-ux-advise] [Bug 136026] Text Sidebar proposal

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136026

andreas_k  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

-- 
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


Re: [core] tdf#87963: Add percentage value to new calculated compressed image size

2020-08-23 Thread Shivam Kumar Singh
On Mon, 24 Aug 2020 at 00:30, anshu khare  wrote:

> To show it in UI we have to create another label and display it over
> there.
>
> Could u please tell me how to it?
>
> Please look for my comment on your patch.

sincerely,
Shivam Kumar Singh
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [core] tdf#87963: Add percentage value to new calculated compressed image size

2020-08-23 Thread anshu khare
To show it in UI we have to create another label and display it over there.

Could u please tell me how to it?


Regards
Anshu

On Sun, 23 Aug, 2020, 11:57 PM Julien Nabet (via Code Review), <
ger...@gerrit.libreoffice.org> wrote:

> Julien Nabet has posted comments on this change. (
> https://gerrit.libreoffice.org/c/core/+/101242 )
>
> Change subject: tdf#87963: Add percentage value to new calculated
> compressed image size
> ..
>
>
> Patch Set 2: Code-Review-2
>
> I'm not an expert but the main problem I see is you use "printf". The goal
> of the bugtracker is to display the information on UI not on a console.
>
>
> --
> To view, visit https://gerrit.libreoffice.org/c/core/+/101242
> To unsubscribe, or for help writing mail filters, visit
> https://gerrit.libreoffice.org/settings
>
> Gerrit-Project: core
> Gerrit-Branch: master
> Gerrit-Change-Id: I5fb87fd4d8cceb38775cb98520c0c7ba1d49bc93
> Gerrit-Change-Number: 101242
> Gerrit-PatchSet: 2
> Gerrit-Owner: Anshu 
> Gerrit-Reviewer: Jenkins
> Gerrit-Reviewer: Julien Nabet 
> Gerrit-Comment-Date: Sun, 23 Aug 2020 18:27:20 +
> Gerrit-HasComments: No
> Gerrit-Has-Labels: Yes
> Gerrit-MessageType: comment
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Anshu Khare License Statement

2020-08-23 Thread anshu khare
All of my past & future contributions to LibreOffice may be
   licensed under the MPLv2/LGPLv3+ dual license.


On Sun, 23 Aug, 2020, 11:57 PM Julien Nabet (via Code Review), <
ger...@gerrit.libreoffice.org> wrote:

> Julien Nabet has posted comments on this change. (
> https://gerrit.libreoffice.org/c/core/+/101242 )
>
> Change subject: tdf#87963: Add percentage value to new calculated
> compressed image size
> ..
>
>
> Patch Set 2: Code-Review-2
>
> I'm not an expert but the main problem I see is you use "printf". The goal
> of the bugtracker is to display the information on UI not on a console.
>
>
> --
> To view, visit https://gerrit.libreoffice.org/c/core/+/101242
> To unsubscribe, or for help writing mail filters, visit
> https://gerrit.libreoffice.org/settings
>
> Gerrit-Project: core
> Gerrit-Branch: master
> Gerrit-Change-Id: I5fb87fd4d8cceb38775cb98520c0c7ba1d49bc93
> Gerrit-Change-Number: 101242
> Gerrit-PatchSet: 2
> Gerrit-Owner: Anshu 
> Gerrit-Reviewer: Jenkins
> Gerrit-Reviewer: Julien Nabet 
> Gerrit-Comment-Date: Sun, 23 Aug 2020 18:27:20 +
> Gerrit-HasComments: No
> Gerrit-Has-Labels: Yes
> Gerrit-MessageType: comment
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2020-08-23 Thread Caolán McNamara (via logerrit)
 xmloff/source/style/cdouthdl.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ed61a80297cd97331d08837553c4fd4f623ccd6b
Author: Caolán McNamara 
AuthorDate: Sun Aug 23 17:21:15 2020 +0100
Commit: Caolán McNamara 
CommitDate: Sun Aug 23 20:36:57 2020 +0200

WaE: -Werror=maybe-uninitialized

with --enable-dbgutil + --enable-optimized=debug

Change-Id: I98fdc7e0b97c48bfb7c425013640c91c29e46a3c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101244
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/xmloff/source/style/cdouthdl.cxx b/xmloff/source/style/cdouthdl.cxx
index 98fcf264026a..74eee9fa6b08 100644
--- a/xmloff/source/style/cdouthdl.cxx
+++ b/xmloff/source/style/cdouthdl.cxx
@@ -155,7 +155,7 @@ XMLCrossedOutStylePropHdl::~XMLCrossedOutStylePropHdl()
 
 bool XMLCrossedOutStylePropHdl::importXML( const OUString& rStrImpValue, 
uno::Any& rValue, const SvXMLUnitConverter& ) const
 {
-sal_uInt16 eNewStrikeout;
+sal_uInt16 eNewStrikeout(0);
 bool bRet = SvXMLUnitConverter::convertEnum(
 eNewStrikeout, rStrImpValue, pXML_CrossedoutStyle_Enum );
 if( bRet )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: vcl/StaticLibrary_fuzzerstubs.mk vcl/workben

2020-08-23 Thread Caolán McNamara (via logerrit)
 vcl/StaticLibrary_fuzzerstubs.mk|1 
 vcl/workben/localestub/localedata_en_HK.cxx |  121 
 2 files changed, 122 insertions(+)

New commits:
commit 94e8eedece9adc5dc92cc1afeed338237c2f2e5e
Author: Caolán McNamara 
AuthorDate: Sun Aug 23 17:39:28 2020 +0100
Commit: Caolán McNamara 
CommitDate: Sun Aug 23 20:36:32 2020 +0200

ofz#25174 build failure

Change-Id: Ibc26e53d00bbbeb990c617334ca3c126d83c52e3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101245
Tested-by: Caolán McNamara 
Reviewed-by: Caolán McNamara 

diff --git a/vcl/StaticLibrary_fuzzerstubs.mk b/vcl/StaticLibrary_fuzzerstubs.mk
index 7d8105906870..73462577d912 100644
--- a/vcl/StaticLibrary_fuzzerstubs.mk
+++ b/vcl/StaticLibrary_fuzzerstubs.mk
@@ -27,6 +27,7 @@ $(eval $(call 
gb_StaticLibrary_add_exception_objects,fuzzerstubs,\
 vcl/workben/localestub/localedata_en_GB \
 vcl/workben/localestub/localedata_en_GH \
 vcl/workben/localestub/localedata_en_GM \
+vcl/workben/localestub/localedata_en_HK \
 vcl/workben/localestub/localedata_en_IE \
 vcl/workben/localestub/localedata_en_IN \
 vcl/workben/localestub/localedata_en_JM \
diff --git a/vcl/workben/localestub/localedata_en_HK.cxx 
b/vcl/workben/localestub/localedata_en_HK.cxx
new file mode 100644
index ..89c7da0cd439
--- /dev/null
+++ b/vcl/workben/localestub/localedata_en_HK.cxx
@@ -0,0 +1,121 @@
+#include 
+
+#include 
+
+extern "C" {
+
+static const sal_Unicode langID[] = { 0x65, 0x6e, 0x0 };
+static const sal_Unicode langDefaultName[] = { 0x45, 0x6e, 0x67, 0x6c, 0x69, 
0x73, 0x68, 0x0 };
+static const sal_Unicode countryID[] = { 0x48, 0x4b, 0x0 };
+static const sal_Unicode countryDefaultName[]
+= { 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x0 };
+static const sal_Unicode Variant[] = { 0x0 };
+
+static const sal_Unicode* LCInfoArray[]
+= { langID, langDefaultName, countryID, countryDefaultName, Variant };
+
+SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getLCInfo_en_HK(sal_Int16& count)
+{
+count = SAL_N_ELEMENTS(LCInfoArray);
+return (sal_Unicode**)LCInfoArray;
+}
+extern sal_Unicode** SAL_CALL getLocaleItem_en_GB(sal_Int16& count);
+SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getLocaleItem_en_HK(sal_Int16& 
count)
+{
+return getLocaleItem_en_GB(count);
+}
+static const sal_Unicode replaceTo0[]
+= { 0x5b, 0x24, 0x48, 0x4b, 0x24, 0x2d, 0x33, 0x43, 0x30, 0x39, 0x5d, 0x0 
};
+extern sal_Unicode const* const* SAL_CALL getAllFormats0_en_GB(sal_Int16& 
count,
+   const 
sal_Unicode*& from,
+   const 
sal_Unicode*& to);
+SAL_DLLPUBLIC_EXPORT sal_Unicode const* const* SAL_CALL
+getAllFormats0_en_HK(sal_Int16& count, const sal_Unicode*& from, const 
sal_Unicode*& to)
+{
+to = replaceTo0;
+const sal_Unicode* tmp;
+return getAllFormats0_en_GB(count, from, tmp);
+}
+extern sal_Unicode** SAL_CALL getDateAcceptancePatterns_en_GB(sal_Int16& 
count);
+SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL 
getDateAcceptancePatterns_en_HK(sal_Int16& count)
+{
+return getDateAcceptancePatterns_en_GB(count);
+}
+extern sal_Unicode** SAL_CALL getCollatorImplementation_en_GB(sal_Int16& 
count);
+SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL 
getCollatorImplementation_en_HK(sal_Int16& count)
+{
+return getCollatorImplementation_en_GB(count);
+}
+extern sal_Unicode** SAL_CALL getCollationOptions_en_GB(sal_Int16& count);
+SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL 
getCollationOptions_en_HK(sal_Int16& count)
+{
+return getCollationOptions_en_GB(count);
+}
+extern sal_Unicode** SAL_CALL getSearchOptions_en_GB(sal_Int16& count);
+SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getSearchOptions_en_HK(sal_Int16& 
count)
+{
+return getSearchOptions_en_GB(count);
+}
+extern sal_Unicode** SAL_CALL getIndexAlgorithm_en_GB(sal_Int16& count);
+SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getIndexAlgorithm_en_HK(sal_Int16& 
count)
+{
+return getIndexAlgorithm_en_GB(count);
+}
+extern sal_Unicode** SAL_CALL getUnicodeScripts_en_GB(sal_Int16& count);
+SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getUnicodeScripts_en_HK(sal_Int16& 
count)
+{
+return getUnicodeScripts_en_GB(count);
+}
+extern sal_Unicode** SAL_CALL getFollowPageWords_en_GB(sal_Int16& count);
+SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL 
getFollowPageWords_en_HK(sal_Int16& count)
+{
+return getFollowPageWords_en_GB(count);
+}
+extern sal_Unicode** SAL_CALL getAllCalendars_en_GB(sal_Int16& count);
+SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getAllCalendars_en_HK(sal_Int16& 
count)
+{
+return getAllCalendars_en_GB(count);
+}
+extern sal_Unicode** SAL_CALL getAllCurrencies_zh_HK(sal_Int16& count);
+SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getAllCurrencies_en_HK(sal_Int16& 
count)
+{
+return getAllCurrencies_zh_HK(count);
+}
+extern sal_Unicode** SAL_CALL 

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

2020-08-23 Thread Andrea Gelmini (via logerrit)
 sfx2/source/dialog/securitypage.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3e33e4435351dd03b8f89b4006c657910eace25f
Author: Andrea Gelmini 
AuthorDate: Sat Aug 22 19:30:26 2020 +0200
Commit: Julien Nabet 
CommitDate: Sun Aug 23 20:16:39 2020 +0200

Fix typo in code

Change-Id: I546bd10f5b7e69f82252cf147c5fcc5756d77a78
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101212
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sfx2/source/dialog/securitypage.cxx 
b/sfx2/source/dialog/securitypage.cxx
index 84df48131b99..ad4c30b4e6c1 100644
--- a/sfx2/source/dialog/securitypage.cxx
+++ b/sfx2/source/dialog/securitypage.cxx
@@ -331,9 +331,9 @@ IMPL_LINK_NOARG(SfxSecurityPage_Impl, 
RecordChangesCBToggleHdl, weld::ToggleButt
 m_bEndRedliningWarningDone = true;
 }
 
-const bool bNeedPasssword = !m_bOrigPasswordIsConfirmed
+const bool bNeedPassword = !m_bOrigPasswordIsConfirmed
 && m_xUnProtectPB->get_visible(); // tdf#128230 Require password 
if the Unprotect button is visible
-if (!bAlreadyDone && bNeedPasssword)
+if (!bAlreadyDone && bNeedPassword)
 {
 OUString aPasswordText;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-08-23 Thread Andrea Gelmini (via logerrit)
 sc/inc/externalrefmgr.hxx|2 +-
 sc/source/ui/docshell/externalrefmgr.cxx |6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit bd6af4f36af2d8e855a45db96aa2006710739cad
Author: Andrea Gelmini 
AuthorDate: Sat Aug 22 18:43:23 2020 +0200
Commit: Julien Nabet 
CommitDate: Sun Aug 23 20:15:02 2020 +0200

Fix typo in code

Change-Id: I23faddfd329a36f8bfb668554e8f06b41e9cb4f1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101202
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sc/inc/externalrefmgr.hxx b/sc/inc/externalrefmgr.hxx
index 368ceb4385fd..6a3f348dfd1e 100644
--- a/sc/inc/externalrefmgr.hxx
+++ b/sc/inc/externalrefmgr.hxx
@@ -64,7 +64,7 @@ public:
 const OUString& rMimeType, const css::uno::Any & rValue) override;
 virtual void Edit(weld::Window* pParent, const Link& 
rEndEditHdl) override;
 
-void SetDoReferesh(bool b);
+void SetDoRefresh(bool b);
 
 private:
 ScExternalRefLink() = delete;
diff --git a/sc/source/ui/docshell/externalrefmgr.cxx 
b/sc/source/ui/docshell/externalrefmgr.cxx
index c4391e553cbf..305035304257 100644
--- a/sc/source/ui/docshell/externalrefmgr.cxx
+++ b/sc/source/ui/docshell/externalrefmgr.cxx
@@ -1468,7 +1468,7 @@ void ScExternalRefLink::Edit(weld::Window* pParent, const 
Link
 SvBaseLink::Edit(pParent, Link());
 }
 
-void ScExternalRefLink::SetDoReferesh(bool b)
+void ScExternalRefLink::SetDoRefresh(bool b)
 {
 mbDoRefresh = b;
 }
@@ -2625,9 +2625,9 @@ void ScExternalRefManager::maybeLinkExternalFile( 
sal_uInt16 nFileId, bool bDefe
 pLinkMgr->InsertFileLink(*pLink, sfx2::SvBaseLinkObjectType::ClientFile, 
*pFileName,
 (aFilter.isEmpty() && bDeferFilterDetection ? nullptr : ));
 
-pLink->SetDoReferesh(false);
+pLink->SetDoRefresh(false);
 pLink->Update();
-pLink->SetDoReferesh(true);
+pLink->SetDoRefresh(true);
 
 maLinkedDocs.emplace(nFileId, true);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-08-23 Thread Andrea Gelmini (via logerrit)
 connectivity/source/drivers/dbase/DTable.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit a939013f54c60545f2fc31defb5889ad527f051c
Author: Andrea Gelmini 
AuthorDate: Sat Aug 22 18:37:47 2020 +0200
Commit: Julien Nabet 
CommitDate: Sun Aug 23 20:15:56 2020 +0200

Fix typo in code

Change-Id: I40897e88fba67ea845578e0db7782c20a4f17806
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101196
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/connectivity/source/drivers/dbase/DTable.cxx 
b/connectivity/source/drivers/dbase/DTable.cxx
index 7ad53b04c97d..879a23f8a3f4 100644
--- a/connectivity/source/drivers/dbase/DTable.cxx
+++ b/connectivity/source/drivers/dbase/DTable.cxx
@@ -2271,13 +2271,13 @@ void SAL_CALL ODbaseTable::rename( const OUString& 
newName )
 }
 namespace
 {
-void renameFile(file::OConnection const * _pConenction,const OUString& 
oldName,
+void renameFile(file::OConnection const * _pConnection,const OUString& 
oldName,
 const OUString& newName,const OUString& _sExtension)
 {
-OUString aName = ODbaseTable::getEntry(_pConenction,oldName);
+OUString aName = ODbaseTable::getEntry(_pConnection,oldName);
 if(aName.isEmpty())
 {
-OUString aIdent = 
_pConenction->getContent()->getIdentifier()->getContentIdentifier();
+OUString aIdent = 
_pConnection->getContent()->getIdentifier()->getContentIdentifier();
 if ( aIdent.lastIndexOf('/') != (aIdent.getLength()-1) )
 aIdent += "/";
 aIdent += oldName;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-08-23 Thread Andrea Gelmini (via logerrit)
 sfx2/source/notebookbar/PriorityHBox.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 2baa024820b4275db708afaba7bf75340297e4f0
Author: Andrea Gelmini 
AuthorDate: Sat Aug 22 19:29:32 2020 +0200
Commit: Julien Nabet 
CommitDate: Sun Aug 23 20:13:43 2020 +0200

Fix typo in code

Change-Id: I9061af75ef5d89bf15010f14ede074ec1739a61c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101210
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sfx2/source/notebookbar/PriorityHBox.cxx 
b/sfx2/source/notebookbar/PriorityHBox.cxx
index a0f5052ccd44..b6a0ed22ced0 100644
--- a/sfx2/source/notebookbar/PriorityHBox.cxx
+++ b/sfx2/source/notebookbar/PriorityHBox.cxx
@@ -88,13 +88,13 @@ Size PriorityHBox::calculateRequisition() const
 ++nVisibleChildren;
 Size aChildSize = getLayoutRequisition(*pChild);
 
-bool bAllwaysExpanded = true;
+bool bAlwaysExpanded = true;
 
 vcl::IPrioritable* pPrioritable = 
dynamic_cast(pChild);
 if (pPrioritable && pPrioritable->GetPriority() != 
VCL_PRIORITY_DEFAULT)
-bAllwaysExpanded = false;
+bAlwaysExpanded = false;
 
-if (bAllwaysExpanded)
+if (bAlwaysExpanded)
 {
 long nPrimaryDimension = getPrimaryDimension(aChildSize);
 nPrimaryDimension += pChild->get_padding() * 2;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-08-23 Thread Andrea Gelmini (via logerrit)
 sw/source/core/access/accdoc.cxx |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 9d8fe885f242ab7dd21e338cc5a40a278db6b2ff
Author: Andrea Gelmini 
AuthorDate: Sat Aug 22 19:28:56 2020 +0200
Commit: Julien Nabet 
CommitDate: Sun Aug 23 20:13:14 2020 +0200

Fix typo in code

Change-Id: I028a75b1ce4cceb601ac2e50693cde94df57f684
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101208
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sw/source/core/access/accdoc.cxx b/sw/source/core/access/accdoc.cxx
index bf2c0e844a2b..53a974acc96a 100644
--- a/sw/source/core/access/accdoc.cxx
+++ b/sw/source/core/access/accdoc.cxx
@@ -512,14 +512,14 @@ uno::Any SAL_CALL 
SwAccessibleDocument::getExtendedAttributes()
 {
 SolarMutexGuard g;
 
-uno::Any anyAtrribute;
+uno::Any anyAttribute;
 SwDoc *pDoc = GetMap() ? GetShell()->GetDoc() : nullptr;
 
 if (!pDoc)
-return anyAtrribute;
+return anyAttribute;
 SwCursorShell* pCursorShell = GetCursorShell();
 if( !pCursorShell )
-return anyAtrribute;
+return anyAttribute;
 
 SwFEShell* pFEShell = dynamic_cast( pCursorShell) !=  
nullptr
 ? static_cast( pCursorShell )
@@ -705,9 +705,9 @@ uno::Any SAL_CALL 
SwAccessibleDocument::getExtendedAttributes()
 OUString::number( nSctColCount ) + ";";
 }
 
-anyAtrribute <<= sValue;
+anyAttribute <<= sValue;
 }
-return anyAtrribute;
+return anyAttribute;
 }
 
 sal_Int32 SAL_CALL SwAccessibleDocument::getBackground()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 131510] Old Replacement in german language

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131510

Ming Hua  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 Status|UNCONFIRMED |NEW
 CC||ming.v@qq.com,
   ||serval2...@yahoo.fr
 Ever confirmed|0   |1

--- Comment #3 from Ming Hua  ---
The relevant code is at:
https://opengrok.libreoffice.org/xref/core/extras/source/autocorr/lang/de/DocumentList.xml?r=79ecfae0#69

A change should be simple.  However, as someone who doesn't speak German at
all, I think it should not be deleted, but changed to be autocorrecting to
"dass" instead.

@Julien: Any insight?  Or do you know the proper contact person for
German-specific issues?

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


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

2020-08-23 Thread Noel Grandin (via logerrit)
 xmloff/source/draw/ximpstyl.cxx |   71 
 xmloff/source/draw/ximpstyl.hxx |   20 +--
 2 files changed, 40 insertions(+), 51 deletions(-)

New commits:
commit fa45a2189b9285d3dc1cde532d3bc32b4ca6599b
Author: Noel Grandin 
AuthorDate: Sun Aug 23 18:07:18 2020 +0200
Commit: Noel Grandin 
CommitDate: Sun Aug 23 20:05:19 2020 +0200

use fastparser in SdXMLPresentationPageLayoutContext

Change-Id: Ic3b371be9a363d40cd5c82dcc1d00fa5b007cf5c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101243
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/xmloff/source/draw/ximpstyl.cxx b/xmloff/source/draw/ximpstyl.cxx
index ff2796023d1f..611c70f85e05 100644
--- a/xmloff/source/draw/ximpstyl.cxx
+++ b/xmloff/source/draw/ximpstyl.cxx
@@ -418,38 +418,38 @@ css::uno::Reference< css::xml::sax::XFastContextHandler > 
SdXMLPageMasterContext
 
 SdXMLPresentationPageLayoutContext::SdXMLPresentationPageLayoutContext(
 SdXMLImport& rImport,
-sal_uInt16 nPrfx,
-const OUString& rLName,
-const uno::Reference< xml::sax::XAttributeList >& xAttrList)
-:   SvXMLStyleContext(rImport, nPrfx, rLName, xAttrList, 
XmlStyleFamily::SD_PRESENTATIONPAGELAYOUT_ID),
+sal_Int32 nElement,
+const uno::Reference< xml::sax::XFastAttributeList >& xAttrList)
+:   SvXMLStyleContext(rImport, nElement, xAttrList, 
XmlStyleFamily::SD_PRESENTATIONPAGELAYOUT_ID),
 mnTypeId( AUTOLAYOUT_NONE )
 {
 // set family to something special at SvXMLStyleContext
 // for differences in search-methods
 }
 
-SvXMLImportContextRef SdXMLPresentationPageLayoutContext::CreateChildContext(
-sal_uInt16 nPrefix,
-const OUString& rLocalName,
-const uno::Reference< xml::sax::XAttributeList >& xAttrList )
+css::uno::Reference< css::xml::sax::XFastContextHandler > 
SdXMLPresentationPageLayoutContext::createFastChildContext(
+sal_Int32 nElement,
+const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
 {
 SvXMLImportContextRef xContext;
 
-if(nPrefix == XML_NAMESPACE_PRESENTATION && IsXMLToken( rLocalName, 
XML_PLACEHOLDER ) )
+if(nElement == XML_ELEMENT(PRESENTATION, XML_PLACEHOLDER))
 {
 const rtl::Reference< SdXMLPresentationPlaceholderContext > 
xLclContext{
-new SdXMLPresentationPlaceholderContext(GetSdImport(), nPrefix, 
rLocalName, xAttrList)};
+new SdXMLPresentationPlaceholderContext(GetSdImport(), nElement, 
xAttrList)};
 // presentation:placeholder inside style:presentation-page-layout 
context
 xContext = xLclContext.get();
 
 // remember SdXMLPresentationPlaceholderContext for later evaluation
 maList.push_back(xLclContext);
 }
+else
+SAL_WARN("xmloff", "unknown element " << 
SvXMLImport::getPrefixAndNameFromToken(nElement));
 
-return xContext;
+return xContext.get();
 }
 
-void SdXMLPresentationPageLayoutContext::EndElement()
+void SdXMLPresentationPageLayoutContext::endFastElement(sal_Int32 )
 {
 // build presentation page layout type here
 // calc mnTpeId due to content of maList
@@ -657,46 +657,41 @@ void SdXMLPresentationPageLayoutContext::EndElement()
 
 SdXMLPresentationPlaceholderContext::SdXMLPresentationPlaceholderContext(
 SdXMLImport& rImport,
-sal_uInt16 nPrfx, const
-OUString& rLName,
-const uno::Reference< xml::sax::XAttributeList>& xAttrList)
-:   SvXMLImportContext( rImport, nPrfx, rLName),
+sal_Int32 /*nElement*/,
+const uno::Reference< xml::sax::XFastAttributeList>& xAttrList)
+:   SvXMLImportContext( rImport ),
 mnX(0)
 {
-sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
-for(sal_Int16 i=0; i < nAttrCount; i++)
+for (auto  : sax_fastparser::castToFastAttributeList( xAttrList ))
 {
-OUString sAttrName = xAttrList->getNameByIndex(i);
-OUString aLocalName;
-sal_uInt16 nPrefix = 
GetSdImport().GetNamespaceMap().GetKeyByAttrName(sAttrName, );
-OUString sValue = xAttrList->getValueByIndex(i);
-const SvXMLTokenMap& rAttrTokenMap = 
GetSdImport().GetPresentationPlaceholderAttrTokenMap();
-
-switch(rAttrTokenMap.Get(nPrefix, aLocalName))
+OUString sValue = aIter.toString();
+switch(aIter.getToken())
 {
-case XML_TOK_PRESENTATIONPLACEHOLDER_OBJECTNAME:
+case XML_ELEMENT(PRESENTATION, XML_OBJECT):
 {
 msName = sValue;
 break;
 }
-case XML_TOK_PRESENTATIONPLACEHOLDER_X:
+case XML_ELEMENT(SVG, XML_X):
 {
 GetSdImport().GetMM100UnitConverter().convertMeasureToCore(
 mnX, sValue);
 break;
 }
-case XML_TOK_PRESENTATIONPLACEHOLDER_Y:
+case XML_ELEMENT(SVG, XML_Y):
 {
 break;
 }
-case 

[Libreoffice-bugs] [Bug 89606] [META] Table of Contents and Indexes bugs and enhancements

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89606

Buovjaga  changed:

   What|Removed |Added

 Depends on||132393


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=132393
[Bug 132393] Page numbers for alphabetical index not displayed, if index is in
more than one column (see comment 8)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132393] Page numbers for alphabetical index not displayed, if index is in more than one column (see comment 8)

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132393

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
Summary|alphabetical index fails to |Page numbers for
   |print page numbers for >1   |alphabetical index not
   |col wide output ... office  |displayed, if index is in
   |word|more than one column (see
   ||comment 8)
   Keywords||bibisected, bisected,
   ||regression
 CC||ilmari.lauhakangas@libreoff
   ||ice.org,
   ||vmik...@collabora.com
 OS|Windows (All)   |All
Version|6.0.0.3 release |4.1.0.4 release
 Blocks||89606
   Severity|normal  |minor

--- Comment #8 from Buovjaga  ---
1. Open attachment 160035
2. Anywhere on the first page, Insert - ToC and Index - ToC and index...
3. Type: Alphabetical, Columns: 2

Observe that the page numbers are out of view

Bibisected with Linux 41max repo to
https://git.libreoffice.org/core/commit/bdfc6363d66aa079512cc8008996b633f693fed1

n#793998 sw: add TabOverMargin compat mode

In case the right margin is larger then the tab position (e.g. the right
margin of 7cm, there is a tab position at 16cm and right margin begins
at 9cm), we have a conflicting case.  In Word, the tab has priority, so
in this conflicting case, the text can be outside the specified margin.
In Writer, the right margin has priority. Add a compat flag to let
the tab have priority in Writer as well for Word formats.

This is similar to TabOverflow, but that was only applied to left tabs
and only in case there were no characters after the tabs in the
paragraph.

Adding Cc: to Miklos Vajna

Better get SUSE to pay for the fix :P


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 122691] Export full tooltip for footnote number to PDF

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122691

Buovjaga  changed:

   What|Removed |Added

   Severity|normal  |enhancement
 Status|REOPENED|NEW

--- Comment #18 from Buovjaga  ---
Ok, let's set to new then.

PDF supports tooltips and LibO can mark footnotes with them for sure. LibO can
not guarantee the behaviour of individual viewing applications, however. A
quick search reveals there are many differences between applications:
https://tex.stackexchange.com/questions/155518/tooltip-that-works-with-all-pdf-readers

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


[Libreoffice-bugs] [Bug 134906] [META] Regressions from implementing soft edge and glow effects

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134906

Mike Kaganski  changed:

   What|Removed |Added

 Depends on||136047


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136047
[Bug 136047] FILEOPEN PPTX: image from master page appears reverted ("white
hole")
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 136047] FILEOPEN PPTX: image from master page appears reverted ("white hole")

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136047

Mike Kaganski  changed:

   What|Removed |Added

 Ever confirmed|0   |1
   Keywords|bibisectRequest |bibisectNotNeeded
 Blocks||134906
 Status|UNCONFIRMED |NEW

--- Comment #4 from Mike Kaganski  ---
Or rather from
https://git.libreoffice.org/core/+/9c621ee8ea41a1c53bfeca49827290826785973e
(changes in OutputDevice::DrawTransformBitmapExDirect).


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=134906
[Bug 134906] [META] Regressions from implementing soft edge and glow effects
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 109354] Section Styles & Formatting in Sidebar doesn't remember tab Character Styles after selecting frame and activates tab Paragraph Styles

2020-08-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109354

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

Version: 7.1.0.0.alpha0+ (x64)
Build ID: 
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Vulkan; VCL: win
Locale: ru-RU (ru_RU); UI: ru-RU
Calc: CL

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - 2 commits - configure.ac .gitignore instsetoo_native/util setup_native/source solenv/bin

2020-08-23 Thread Andras Timar (via logerrit)
 .gitignore   |1 +
 configure.ac |5 -
 instsetoo_native/util/openoffice.lst.in  |2 +-
 setup_native/source/packinfo/finals_instsetoo.txt.in |1 +
 solenv/bin/modules/installer/globals.pm  |2 +-
 solenv/bin/modules/installer/windows/admin.pm|3 ++-
 solenv/bin/modules/installer/windows/msp.pm  |2 +-
 7 files changed, 11 insertions(+), 5 deletions(-)

New commits:
commit 925639d32d6ff3b99f9c48e6991382d184033856
Author: Andras Timar 
AuthorDate: Sun Aug 23 11:47:54 2020 +0200
Commit: Andras Timar 
CommitDate: Sun Aug 23 19:17:14 2020 +0200

Bump version to 6.4-3

Change-Id: I90c29a59200c506e28346293e80e0125a95a827f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101237
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 

diff --git a/configure.ac b/configure.ac
index 2f3b4ff74a4d..1b723d6e824d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([Collabora Office],[6.4.10.2],[],[],[https://collaboraoffice.com/])
+AC_INIT([Collabora Office],[6.4.10.3],[],[],[https://collaboraoffice.com/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard
commit ae17170cf3edb45fd2e270e7be83d06b91df0d9e
Author: Andras Timar 
AuthorDate: Mon Oct 10 13:56:31 2016 -0700
Commit: Andras Timar 
CommitDate: Sun Aug 23 19:16:58 2020 +0200

[cp] Enable MSP patching

(cherry picked from commit ae8938f8848bcce96e21ee207c0226ff0a3cb4a2)

Change-Id: I1de9776e161161daf7349be304e05d5bb959f891
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92847
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101236

diff --git a/.gitignore b/.gitignore
index d68dd20e1b58..fc0482e11d52 100644
--- a/.gitignore
+++ b/.gitignore
@@ -63,6 +63,7 @@
 /README
 /AUTHORS
 /MAINTAINERS
+/setup_native/source/packinfo/finals_instsetoo.txt
 
 # make id
 /ID
diff --git a/configure.ac b/configure.ac
index 6350e9c6282b..2f3b4ff74a4d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3268,6 +3268,7 @@ if test "$_os" = "WINNT"; then
 BITNESS_OVERRIDE=64
 fi
 fi
+AC_SUBST(WINDOWS_SDK_ARCH)
 if test "$_os" = "iOS"; then
 cross_compiling="yes"
 fi
@@ -4743,6 +4744,7 @@ if test "$cross_compiling" = "yes"; then
 bin/odfvalidator.sh.in \
 bin/officeotron.sh.in \
 instsetoo_native/util/openoffice.lst.in \
+setup_native/source/packinfo/finals_instsetoo.txt.in \
 config_host/*.in \
 sysui/desktop/macosx/Info.plist.in) \
 | (cd CONF-FOR-BUILD && tar xf -)
@@ -12973,6 +12975,7 @@ AC_CONFIG_FILES([config_host.mk
  bin/odfvalidator.sh
  bin/officeotron.sh
  instsetoo_native/util/openoffice.lst
+ setup_native/source/packinfo/finals_instsetoo.txt
  sysui/desktop/macosx/Info.plist])
 AC_CONFIG_HEADERS([config_host/config_buildid.h])
 AC_CONFIG_HEADERS([config_host/config_clang.h])
diff --git a/instsetoo_native/util/openoffice.lst.in 
b/instsetoo_native/util/openoffice.lst.in
index 988218ff6992..4b6191cba3a7 100644
--- a/instsetoo_native/util/openoffice.lst.in
+++ b/instsetoo_native/util/openoffice.lst.in
@@ -27,7 +27,7 @@ Globals
 REGISTRYLAYERNAME Layers
 SERVICEPACK 1
 UPDATE_DATABASE 1
-CREATE_MSP_INSTALLSET 0
+CREATE_MSP_INSTALLSET 1
 UPDATE_DATABASE_LISTNAME finals_instsetoo.txt
 PACKAGEMAP package_names.txt,package_names_ext.txt
 WINDOWSPATCHLEVEL @LIBO_VERSION_PATCH@
diff --git a/setup_native/source/packinfo/finals_instsetoo.txt 
b/setup_native/source/packinfo/finals_instsetoo.txt.in
similarity index 82%
rename from setup_native/source/packinfo/finals_instsetoo.txt
rename to setup_native/source/packinfo/finals_instsetoo.txt.in
index d5a68d369f7b..0804f7e49150 100644
--- a/setup_native/source/packinfo/finals_instsetoo.txt
+++ b/setup_native/source/packinfo/finals_instsetoo.txt.in
@@ -30,3 +30,4 @@
 # OpenOffice   pro de  
msi\OOO300_m6_native_packed-1_de.9352\openofficeorg30.msi
 # OpenOfficeLanguagePack   pro es  
msi\OOO300_m6_native_packed-1_es.9352\openofficeorg30.msi
 # URE  pro en-US   
msi\OOO300_m6_native_packed-1_en-US.9352\ure14.msi
+CollaboraOfficepro 

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

2020-08-23 Thread Szymon Kłos (via logerrit)
 svx/source/sidebar/shadow/ShadowPropertyPanel.cxx |   16 
 1 file changed, 16 insertions(+)

New commits:
commit b243549bb1c2d254b52c51b6250e9e0e48942fe9
Author: Szymon Kłos 
AuthorDate: Tue Aug 11 10:28:52 2020 +0200
Commit: Andras Timar 
CommitDate: Sun Aug 23 19:16:17 2020 +0200

Instant update shadow fields in sidebar

This allows mobile LOK client to receive updated
state.

Change-Id: I07fb397c1566546e6e2eb8071eaf6d848f6effc0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100466
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Jan Holesovsky 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101234
Reviewed-by: Andras Timar 

diff --git a/svx/source/sidebar/shadow/ShadowPropertyPanel.cxx 
b/svx/source/sidebar/shadow/ShadowPropertyPanel.cxx
index 8c93ee2708d0..61c30fcb9eb5 100644
--- a/svx/source/sidebar/shadow/ShadowPropertyPanel.cxx
+++ b/svx/source/sidebar/shadow/ShadowPropertyPanel.cxx
@@ -30,6 +30,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using namespace css;
 using namespace css::uno;
@@ -143,12 +144,27 @@ IMPL_LINK_NOARG(ShadowPropertyPanel, ClickShadowHdl, 
Button*, void)
 SdrOnOffItem aItem(makeSdrShadowItem(false));
 GetBindings()->GetDispatcher()->ExecuteList(SID_ATTR_FILL_SHADOW,
 SfxCallMode::RECORD, {  });
+
+if (comphelper::LibreOfficeKit::isActive())
+{
+mpShowShadow->SetState( TRISTATE_FALSE );
+UpdateControls();
+}
 }
 else
 {
 SdrOnOffItem aItem(makeSdrShadowItem(true));
 GetBindings()->GetDispatcher()->ExecuteList(SID_ATTR_FILL_SHADOW,
 SfxCallMode::RECORD, {  });
+
+if (mpShadowDistance->GetValue( FieldUnit::POINT ) == 0)
+mpShadowDistance->SetValue( 8, FieldUnit::POINT );
+
+if (comphelper::LibreOfficeKit::isActive())
+{
+mpShowShadow->SetState( TRISTATE_TRUE );
+UpdateControls();
+}
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   4   >