[Libreoffice-bugs] [Bug 127860] Border units cannot be changed - it's stuck at points

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

raal  changed:

   What|Removed |Added

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

--- Comment #2 from raal  ---
Works for me Version: 6.4.0.0.alpha0+
Build ID: 52cda5c5ae426761ccbdb4f20419098eab195303
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 

write for example 2mm and leave text box - calc correctly set 5,67 pt.

please retest with current version of LO. If it still fails for you, add more
informations about your system and LO version.

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

[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-4' - loleaflet/js loleaflet/src

2019-10-07 Thread Jan Holesovsky (via logerrit)
 loleaflet/js/toolbar.js  |1 +
 loleaflet/src/map/Map.js |2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 4ad26f8082e81e5d24455a99de5797a42711fbbe
Author: Jan Holesovsky 
AuthorDate: Wed Oct 2 11:50:17 2019 +0200
Commit: Tor Lillqvist 
CommitDate: Tue Oct 8 07:46:20 2019 +0200

Enable sidebar also in Impress.

Omitting Draw...

Change-Id: I1b97757629bf93795e0fe4f4d5681f9e31354df6
Reviewed-on: https://gerrit.libreoffice.org/80024
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 

diff --git a/loleaflet/js/toolbar.js b/loleaflet/js/toolbar.js
index afb7b2987..2dd653d92 100644
--- a/loleaflet/js/toolbar.js
+++ b/loleaflet/js/toolbar.js
@@ -1685,6 +1685,7 @@ function onDocLayerInit() {
 
break;
case 'presentation':
+   toolbarUp.show('breaksidebar', 'sidebar');
var presentationToolbar = w2ui['presentation-toolbar'];
if (!map['wopi'].HideExportOption) {
presentationToolbar.show('presentation', 
'presentationbreak');
diff --git a/loleaflet/src/map/Map.js b/loleaflet/src/map/Map.js
index 69d7afef0..774dab848 100644
--- a/loleaflet/src/map/Map.js
+++ b/loleaflet/src/map/Map.js
@@ -249,7 +249,7 @@ L.Map = L.Evented.extend({
 
// Show sidebar.
if (this._docLayer && !this._docLoadedOnce &&
-   (this._docLayer._docType === 'spreadsheet' || 
this._docLayer._docType === 'text')) {
+   (this._docLayer._docType === 'presentation' || 
this._docLayer._docType === 'spreadsheet' || this._docLayer._docType === 
'text')) {
// Let the first page finish loading then load 
the sidebar.
var map = this;
setTimeout(function () {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124089] DOTM AutoText import creates incorrect shortcut (with space)

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

Mike Kaganski  changed:

   What|Removed |Added

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

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

2019-10-07 Thread Julien Nabet (via logerrit)
 sd/source/filter/eppt/eppt.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 7e2ba14567d2c7f7a657c159d9d02a4ca4543e36
Author: Julien Nabet 
AuthorDate: Mon Oct 7 21:28:42 2019 +0200
Commit: Julien Nabet 
CommitDate: Tue Oct 8 07:22:44 2019 +0200

Add some doc and fix comment in eppt (sd)

See 
https://docs.microsoft.com/en-us/openspecs/office_file_formats/ms-ppt/6be79dde-33c1-4c1b-8ccc-4b2301c08662
"
2.6.1:
A - fAutoAdvance (1 bit): A bit that specifies whether to automatically 
advance to the next slide
during a slide show based on timing information on the slide.
B - fWillSkipBuilds (1 bit): A bit that specifies whether to display 
animations during a slide show.
C - fUseSlideRange (1 bit): A bit that specifies whether to display only 
the slide range specified by
the startSlide and endSlide fields during a slide show.
D - fDocUseNamedShow (1 bit): A bit that specifies whether the slides shown 
during a slide show
are from the named show identified by namedShow. It MUST be ignored if 
fUseSlideRange is
TRUE.
E - fBrowseMode (1 bit): A bit that specifies whether the slide show is 
presented in a way optimized
for browsing. If fBrowseMode is TRUE, fKioskMode MUST be FALSE.
F - fKioskMode (1 bit): A bit that specifies whether the slide show is 
presented in a way optimized
to run at a kiosk. If fKioskMode is TRUE, fBrowseMode MUST be FALSE.
G - fWillSkipNarration (1 bit): A bit that specifies whether to play slide 
audio narrations during a
slide show.
H - fLoopContinuously (1 bit): A bit that specifies whether to restart the 
slide show at the
beginning after advancing from the last slide.
I - fHideScrollBar (1 bit): A bit that specifies whether to display the 
navigational scroll bar during a
slide show.
"
So yes, "IsEndless" corresponds to "fLoopContinuously"

Document "Skip narration"
+ "show scrollbar" corresponds to Bit 8 (the contrary of "fHideScrollBar")
so since this the Bit 8 of nFlags isn't set, it's always to 0, so we always 
show scrollbar

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

diff --git a/sd/source/filter/eppt/eppt.cxx b/sd/source/filter/eppt/eppt.cxx
index c648cf612c7b..246be042c7db 100644
--- a/sd/source/filter/eppt/eppt.cxx
+++ b/sd/source/filter/eppt/eppt.cxx
@@ -759,8 +759,9 @@ bool PPTWriter::ImplCreateDocument()
 // Bit 3Use named show
 // Bit 4Browse mode on
 // Bit 5Kiosk mode on
+// Bit 6Skip narration
 // Bit 7loop 
continuously
-// Bit ?show scrollbar
+// Bit 8show scrollbar
 
 if ( ImplGetPropertyValue( "CustomShow" ) )
 {
@@ -796,7 +797,7 @@ bool PPTWriter::ImplCreateDocument()
 nFlags |= 1;
 }
 
-if ( ImplGetPropertyValue( "IsEndless" ) ) // the correct name 
would be IsNotEndless: WTF?
+if ( ImplGetPropertyValue( "IsEndless" ) )
 {
 bool bBool = false;
 mAny >>= bBool;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128009] AutoText: entries with spaces near beginning of name are not suggested in "Display remainder of name as suggestion while typing" mode

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

Mike Kaganski  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

--- Comment #1 from Mike Kaganski  ---
https://gerrit.libreoffice.org/80392

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

[Libreoffice-bugs] [Bug 108663] [META] AutoText bugs and enhancements

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

Mike Kaganski  changed:

   What|Removed |Added

 Depends on||128009


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128009
[Bug 128009] AutoText: entries with spaces near beginning of name are not
suggested in "Display remainder of name as suggestion while typing" mode
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128009] New: AutoText: entries with spaces near beginning of name are not suggested in "Display remainder of name as suggestion while typing" mode

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

Bug ID: 128009
   Summary: AutoText: entries with spaces near beginning of name
are not suggested in "Display remainder of name as
suggestion while typing" mode
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com
Blocks: 108663

When '[x] Display remainder of name as suggestion while typing' is enabled
under Tools->AutoText..., tooltips are shown when typing at least 3 characters
of words which start the long names of autotext entries [1]. E.g., typing "lor"
would bring "Lorem Ipsum" suggestion.

However, the suggestion is only limited to preceding characters os a single
word: after you type a space, typing following characters of second word of an
AutoText entry name will not bring that entry suggestion. This disallows using
entries like "Mr Smith" or "Dr Brown", where starting word is only two
character long.

To reproduce:
1. Add a new AutoText entry
1.1. In a blank text document, type "Mr Smith, The Greatest Agent Of All Times"
1.2. Select all, and open AutoText dialog (Tools->AutoText... (Ctrl+F3))
1.3. Put "Mr Smith" to the Name box; click AutoText button, and select "New" in
the drop-down menu
1.4. Make sure "[x] Display remainder of name as suggestion while typing" is
checked
1.5. Close the dialog
2. Use the entry when typing text
2.1. In a new text document, start typing "lor" to make sure you see the "Lorem
Ipsum" tooltip; when it's shown, Enter would replace the typed characters with
the lorem ipsum autotext; so the feature is working as intended.
2.2. Try typing "dr smi", and see that the "Dr Smith" entry is not suggested.

The request is to support also such AutoText entries in the suggestions. This
works e.g. in MS Word.

[1] https://help.libreoffice.org/6.3/en-US/text/swriter/01/0212.html


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108663
[Bug 108663] [META] AutoText 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 128001] Assertion when accessing animation properties from sidebar

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

Aron Budea  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #3 from Aron Budea  ---
Confirmed in Ubuntu 19.04. The following is the assertion, perhaps a missing
file? I wonder if it's related to bug 126293's fix.

soffice.bin: /home/valaki/projects/libreoffice/vcl/source/gdi/bmpacc.cxx:38:
BitmapInfoAccess::BitmapInfoAccess(Bitmap&, BitmapAccessMode): Assertion
`xImpBmp && "Forbidden Access to empty bitmap!"' failed.

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

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

2019-10-07 Thread Julien Nabet (via logerrit)
 sw/source/core/undo/undobj.cxx |5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

New commits:
commit 47c417c553c7ffcb85cba5b5943316ea9e93f025
Author: Julien Nabet 
AuthorDate: Mon Oct 7 21:20:49 2019 +0200
Commit: Julien Nabet 
CommitDate: Tue Oct 8 06:52:17 2019 +0200

Simplify if/else and remove useless assert in undoobj.cxx (sw)

791 else if( pEndNdIdx || !pTextNd )
corresponds to the negation of the if condition:
767 if (!pEndNdIdx && pTextNd)
So remove existing "else" block and replace "else if" by "else"

Change-Id: I9681f97fdbaece7495d4765617a2634b0cc8f2e3
Reviewed-on: https://gerrit.libreoffice.org/80399
Reviewed-by: Noel Grandin 
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sw/source/core/undo/undobj.cxx b/sw/source/core/undo/undobj.cxx
index 441e1744791a..5a3dd9a3e66c 100644
--- a/sw/source/core/undo/undobj.cxx
+++ b/sw/source/core/undo/undobj.cxx
@@ -788,7 +788,7 @@ void SwUndoSaveContent::MoveFromUndoNds( SwDoc& rDoc, 
sal_uLong nNodeIdx,
 
 aRedlRest.Restore();
 }
-else if( pEndNdIdx || !pTextNd )
+else
 {
 SwNodeRange aRg( rNds, nNodeIdx, rNds, (pEndNdIdx
 ? ((*pEndNdIdx) + 1)
@@ -796,9 +796,6 @@ void SwUndoSaveContent::MoveFromUndoNds( SwDoc& rDoc, 
sal_uLong nNodeIdx,
 rNds.MoveNodes(aRg, rDoc.GetNodes(), rInsPos.nNode, nullptr == 
pEndNdIdx || bForceCreateFrames);
 
 }
-else {
-assert(false); // wtf?
-}
 }
 
 // These two methods move the Point of Pam backwards/forwards. With that, one
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 123966] Uncooperative Graphics

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

David Lea  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #9 from David Lea  ---
(In reply to QA Administrators from comment #8)
> Dear David Lea,
> 
> 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

Thanks for the follow-up! It looks as if I was able to get my LO updated. I now
have version 6.2.7.1  The problem I mention is still there in the text module,
but I have since found and used the "draw" module which is excellent for mixed
text and graphics. It does seem a pity that your standard word processor is not
better at handling graphics, but there are limits to the things any given
program does best!

LibreOffice is definitely the very best option I have found! Print Shop, Print
Master and Lotus WordPro have been unable to keep up with the shifting sands of
Windows and I miss them very much, but you have been able to fill in all that
they do and much better than MicroSoft Word ever did do things!

I have marked this "Unconfirmed" as you asked.

Thanks

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

[Libreoffice-bugs] [Bug 128008] Cannot install Mendeley-1.19.4.oxt extension to LibreOffice

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

B  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from B  ---
I tried resetting user profile in safe mode and that seems to have worked. 
Thanks anyway, LibreOffice rocks!

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

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

2019-10-07 Thread Mike Kaganski (via logerrit)
 sw/source/uibase/dochdl/gloshdl.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 810cddee6d2ef0f4057337d699a1a55323faa1ba
Author: Mike Kaganski 
AuthorDate: Tue Oct 8 05:08:36 2019 +0200
Commit: Mike Kaganski 
CommitDate: Tue Oct 8 05:53:07 2019 +0200

tdf#126589: only consider text to the left of cursor as AutoText short name

Given a text "This is a dtfoo bar", and cursor inside "dtfoo" between "t"
and "f", invoking AutoText function (F3) currently considers the whole word
"dtfoo" as autotext short name. This changes it to only consider the part of
the word to the left of cursor, i.e. only "dt" in the example. This removes
the requirement to have a word boundary after the autotext short name.

Change-Id: I6ba28e63fe25664131b7e03dda39ae997dffa464
Reviewed-on: https://gerrit.libreoffice.org/80419
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sw/source/uibase/dochdl/gloshdl.cxx 
b/sw/source/uibase/dochdl/gloshdl.cxx
index b40d6990d192..766f00b631ce 100644
--- a/sw/source/uibase/dochdl/gloshdl.cxx
+++ b/sw/source/uibase/dochdl/gloshdl.cxx
@@ -351,8 +351,9 @@ bool SwGlossaryHdl::ExpandGlossary(weld::Window* pParent)
 pWrtShell->LeaveBlockMode();
 else if(pWrtShell->IsExtMode())
 pWrtShell->LeaveExtMode();
-// select word
-pWrtShell->SelNearestWrd();
+// select word (tdf#126589: part to the left of cursor)
+if (pWrtShell->IsInWord() || pWrtShell->IsEndWrd())
+pWrtShell->PrvWrd(true);
 // ask for word
 if(pWrtShell->IsSelection())
 aShortName = pWrtShell->GetSelText();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 108663] [META] AutoText bugs and enhancements

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

Bug 126589 Summary: AUTOTEXT: A blank character is needed between 
autotext-shortcut and the following word -> this is impractical
https://bugs.documentfoundation.org/show_bug.cgi?id=126589

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 128008] New: Cannot install Mendeley-1.19.4.oxt extension to LibreOffice

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

Bug ID: 128008
   Summary: Cannot install Mendeley-1.19.4.oxt extension to
LibreOffice
   Product: LibreOffice
   Version: 6.3.1.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Extensions
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: axinite.i...@gmail.com

Description:
Hi there and thanks for your help. 

I need to install the Mendeley [1.19.4] plugin extension into LibreOffice to do
my referencing. However, when on Mendeley desktop, I go: Tool > Install
LibreOffice Plugin, it comes up with the error message: "Couldn't install
LibreOffice Plugin The LibreOffice unopkg utility gave the following output:
[but there's no further message..]

When I try to install manually by going to: (LibreOffice) Tools > extension
manager > add > then find the Mendeley extension, I get this error message.
"Add Extension(s):
C:\Users\Stone\AppData\Roaming\LibreOffice\4\user\uno_packages\cache\uno_packages\lu14284cz2r.tmp_\Mendeley-1.19.4.oxt
does not exist."

I have uninstalled and reinstalled both Mendeley and LibreOffice several times
and still the same. I thought MS Word might have been getting in the way, but I
recently uninstalled that too and still no difference. 

Please help!

Thanks

B

Steps to Reproduce:
1.On Mendeley 1.19.4: Tools>Install LibreOffice Plugin [error message:
"Couldn't install LibreOffice Plugin The LibreOffice unopkg utility gave the
following output: [but there's no further message..]

2.On LibreOffice 6.3.1.2:Tools > extension manager > add > then find the
Mendeley extension, I get this error message.
"Add Extension(s):
C:\Users\Stone\AppData\Roaming\LibreOffice\4\user\uno_packages\cache\uno_packages\lu14284cz2r.tmp_\Mendeley-1.19.4.oxt
does not exist."

3. Uninstall and reinstall of both programs doesn't change situation.

Actual Results:
As stated, I keep getting error messages.

Expected Results:
The Mendeley plugin extension should've been installed in LibreOffice.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:

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

[Libreoffice-bugs] [Bug 126589] AUTOTEXT: A blank character is needed between autotext-shortcut and the following word -> this is impractical

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

Mike Kaganski  changed:

   What|Removed |Added

 OS|Windows (All)   |All
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |
   Hardware|x86-64 (AMD64)  |All
Version|6.2.4.2 release |Inherited From OOo

--- Comment #3 from Mike Kaganski  ---
https://gerrit.libreoffice.org/80419

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

[Libreoffice-bugs] [Bug 128007] Insert Caption..... Image Caption Locking Bug

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

--- Comment #1 from Brad  ---
I installed version 6.2.7.1 and the issue persists.

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

[Libreoffice-bugs] [Bug 128007] New: Insert Caption..... Image Caption Locking Bug

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

Bug ID: 128007
   Summary: Insert Caption. Image Caption Locking Bug
   Product: LibreOffice
   Version: 6.1.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: brad.kr...@gmail.com

Description:
When I use the Image Insert Caption. feature and then try to remove the
image or the caption it remains. The image can be deleted and the caption text
as well but an odd empty but outlined box where the image used to be remains
and it is impossible to remove through usual means.

See:
https://ask.libreoffice.org/en/question/206280/caption-in-writer-it-stays-locked-within-the-image-and-it-may-bug/


Steps to Reproduce:
1. Insert Image
2. Add a Caption by right-clicking and selecting Insert Caption
3. Now delete the image or try and remove the caption other than undo it is not
possible.

Actual Results:
Unable to remove object from document

Expected Results:
The full removal from my document the buggy and stuck object 


Reproducible: Always


User Profile Reset: Yes



Additional Info:

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

[Libreoffice-bugs] [Bug 127726] Default shortcut keys Ctrl+; and Ctrl+Shift+; (to insert current date/time) clash on Estonian keyboard layout

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

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 127724] Multiple instances of LibreOffice from separate machines (shared homedir) not working

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

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 120430] Slide Thumbnails and Current Slide Do Not Appear on the Impress Remote Control on Android

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

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

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 123422] After install (Flatpak) it will not start

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

--- Comment #4 from QA Administrators  ---
Dear Walter Harrison Stoermer,

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 123537] LibreOffice Impress crashed when click to add some transition effects

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

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

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 123963] libreoffice writer multiple crashes

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

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 123966] Uncooperative Graphics

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

--- Comment #8 from QA Administrators  ---
Dear David Lea,

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 127713] "Create PDF form" setting not saved

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

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 126763] Can't close unexpected Tip of the day with two documents opened

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

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 123963] libreoffice writer multiple crashes

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

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

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 46520] [FILEOPEN] "Incorrect file version" when opening a PPT v 4.0 file--pre 97-2003 binary format-- (error message need to be improved)

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

--- Comment #18 from QA Administrators  ---
Dear Cesar Eduardo Barros,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 118045] FILESAVE Exporting ODP to PPTX does not get paragraph style line spacing proportional correct

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

--- Comment #3 from QA Administrators  ---
Dear j.zaits...@zap.org.au,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 123888] creating lock file failed when FILEOPEN on exFAT-drive

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

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

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 40244] FILESAVE to read-only location gives wrong error message

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

--- Comment #15 from QA Administrators  ---
Dear brookembecker,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 32344] Writer insert wrong page break when saving in doc format

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

--- Comment #20 from QA Administrators  ---
Dear Stefano Fraccaro,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 95156] Incorrect calculations on large spreadsheet

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 81684] Strange spacing of greek letters in 'over' denominator

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

--- Comment #11 from QA Administrators  ---
Dear arrowdodger,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 40787] FILEOPEN:Libreoffice shows text that is hidden in Word, that hides superfluous Tabs and Enters at the end of the line/paragraph - see comment #13

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

--- Comment #19 from QA Administrators  ---
Dear Jaxson Lee,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 33687] FORMATTING: index text (TOC) does not flow in linked frames

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 46928] EDITING Insert Field Filename inserts Path+Filename instead of Filename

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

--- Comment #12 from QA Administrators  ---
Dear Joachim Wilder,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 33713] FORMATTING, FILEOPEN: Spacing above and below paragraph (.lwp)

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

--- Comment #15 from QA Administrators  ---
Dear Jaxson Lee,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 45048] Inconsistent document field names: Use names of column 'Select' instead of 'Type' (e.g. use Pages instead of Statistics)

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

--- Comment #15 from QA Administrators  ---
Dear Freek de Kruijf,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 48707] FILESAVE overline automatic color incorrect in pdf

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

--- Comment #8 from QA Administrators  ---
Dear Christopher M. Penalver,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 44453] FILESAVE FILEOPEN .xls: EXCEL Leap year bug has to be mentioned

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

--- Comment #11 from QA Administrators  ---
Dear Matej HALAC,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 120374] Button disappears after saving

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

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 34050] Particular ODT saved in web layout causes hang when switched to normal view

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

--- Comment #22 from QA Administrators  ---
Dear pmvd,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 46180] FILEOPEN - LO Base fails to connect to "*.DBF" files but connects OK to "*.dbf"

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

--- Comment #16 from QA Administrators  ---
Dear Aleksey,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 127982] An array formula with SMALL gives blanks, where it used to work as in Excel previously

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

Mike Kaganski  changed:

   What|Removed |Added

Summary|An array with VLOOKUP   |An array formula with SMALL
   |formula gives blanks in |gives blanks, where it used
   |6.3, where it used to work  |to work as in Excel
   |as in Excel previously  |previously

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

[Libreoffice-bugs] [Bug 128004] Customize: chosen category does not filter function list (non-gtk3 vcl plugin)

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

Mike Kaganski  changed:

   What|Removed |Added

 OS|Windows (All)   |All
Summary|Customize: chosen category  |Customize: chosen category
   |does not filter function|does not filter function
   |list|list (non-gtk3 vcl plugin)

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

[Libreoffice-bugs] [Bug 128004] Customize: chosen category does not filter function list

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

--- Comment #7 from Mike Kaganski  ---
(In reply to Julien Nabet from comment #6)
> (In reply to Mike Kaganski from comment #5)
> > Does it work on Linux with non-kde vcl plugin?
> 
> By default, I use gtk3 rendering

Ah sorry, was too late for me, indeed meant gtk, given that comment 1 mentions
it... :-)

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

Re: build of a specific no desktop version of libreoffice

2019-10-07 Thread Rene Engelhard
Hi,

On Thu, Oct 03, 2019 at 09:24:58AM +0200, Miklos Vajna wrote:
> On Wed, Oct 02, 2019 at 10:45:27PM +0200, Bruno Patin - wanadoo 
>  wrote:
> > I would like to know if there exists a way to build a soffice that would
> > be linked to no desktop-oriented librariesonly to assume processing
> > tasks such as translate to a pdf format such and such odt files or to
> > compute complex formulas directly using the calc capabilities. The goal
> > is to have a server only version on a very limited linux system with no
> > desktop apps.
> 
> Did you try --disable-gui?

Thank you for mentioning that again.

Given
https://cgit.freedesktop.org/libreoffice/core/commit/distro-configs/LibreOfficeOnline.conf?id=b59a67b4e3186660155038906ecb6d6fb11df834
uses it in LibreOfficeOnline.conf, should configure.ac be modified, too?

It currently says:

  --disable-gui   Disable use of X11 or Wayland to reduce
  dependencies. Not related to the --headless
  command-line option. Not related to LibreOffice
  Online functionality. Don't use unless you are
  certain you need to. Nobody will help you if you
  insist on trying this and run into problems.

It was supported as of now I'd do
https://people.debian.org/~rene/libreoffice/lo-nogui-package.diff (+ finetuning)
in the Debian packages...

Regards,

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

[Libreoffice-bugs] [Bug 46354] Updater shows incomplete identification of build number

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

Pedro  changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |All
 OS|Windows (All)   |All

--- Comment #18 from Pedro  ---
The message has improved but it is still inconsistent.

The current message is 

"LibreOffice 6.2.7 is available.

The installed version is LibreOffice 6.2.6.2."

I do not understand the resistance to showing the same version number that will
be displayed on the About dialog (in this case Version: 6.2.7.1)

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

[Libreoffice-bugs] [Bug 50916] Allow more than 1024 columns in calc

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

--- Comment #94 from tr00don  ---
I would like to support watkec's comment. A spreadsheet that is limited to 1024
columns is of little pratical value. We live in "big data" times. I think you
should consider assigning this feature a higher priority. In my work I continue
to use Excel mainly because it supports large spreadsheets.

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

[Libreoffice-bugs] [Bug 128006] Macro warning dialog is prompted on every function or sub call

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

Alessandro Tassi  changed:

   What|Removed |Added

   Hardware|All |x86-64 (AMD64)
 OS|All |Linux (All)

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

[Libreoffice-bugs] [Bug 128006] New: Macro warning dialog is prompted on every function or sub call

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

Bug ID: 128006
   Summary: Macro warning dialog is prompted on every function or
sub call
   Product: LibreOffice
   Version: 6.3.2.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: alessandro.ta...@gmail.com

Hallo,
in 6.3 version every time is called the same macro script the same warning
dialog appears asking permission to execute it.
It's very annoying to confirm it every time is activated for example a form
control linked to the same basic macro in the same file.
I have found the same problem with 6.3.0-1 6.3.1-1 and 6.3.2-1 x86_64 arch
linux packages opening the same base file (actually a managing software in
basic), still working good with 6.2.5-1 version.
I beg you to fix, thanks a lot.
ale

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

[Libreoffice-bugs] [Bug 127906] FILESAVE Libreoffice Impress : does not save background colors of pictures

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

raal  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 CC||qui...@gmail.com

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

c5e18ecabec7818a55e4a887ec4fe3d6739d7c49 is the first bad commit
commit c5e18ecabec7818a55e4a887ec4fe3d6739d7c49
Author: Jenkins Build User 
Date:   Fri Apr 20 09:59:26 2018 +0200

source sha:7b355669c6ddeab2e6cec692d6afdff41c61d0fb

author  Tomaž Vajngerl  2018-04-14 15:13:05
+0900
committer   Tomaž Vajngerl2018-04-20 09:15:22
+0200
commit  7b355669c6ddeab2e6cec692d6afdff41c61d0fb (patch)
tree46c55326bccfa68a2bb5fad6d637e0f4576c8d68
parent  663fd3d6e1f93ec989dc289e688d5dbfe434cbca (diff)
Function to load graphic swapped out (loaded on demand)

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

[Libreoffice-bugs] [Bug 127982] An array with VLOOKUP formula gives blanks in 6.3, where it used to work as in Excel previously

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

--- Comment #4 from m.a.riosv  ---
An array like
{=IFERROR(INDEX($B$2:$B$16;SMALL(IF($E$2=A2:A16;ROW(B2:B16)-1;);ROW()-5));"")}
works, so seems the issue is with a string inside the SMALL function.
Doing a test, with a SMALL array if some value it's a string the whole array
returns #VALUE

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

[Libreoffice-bugs] [Bug 127982] An array with VLOOKUP formula gives blanks in 6.3, where it used to work as in Excel previously

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m.a.riosv  ---
If the array is shortened to D6:D8 (dragging from D20 to D8) it works.

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

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

2019-10-07 Thread Tor Lillqvist (via logerrit)
 sw/source/ui/vba/vbadocument.cxx  |2 ++
 sw/source/ui/vba/vbadocuments.cxx |2 ++
 2 files changed, 4 insertions(+)

New commits:
commit e4979457bf11a4ee4594eb2ba3f9bf9ca07fab79
Author: Tor Lillqvist 
AuthorDate: Wed Sep 18 16:43:40 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Mon Oct 7 22:59:00 2019 +0200

Add a SAL_INFO for SwVbaDocument::SaveAs2000()

Change-Id: Ic91b9c3a832d68ca3ccc61ccb19b0e29b488abc0
(cherry picked from commit 6412701313a875aff199dbf862e250faf6861cd0)
Reviewed-on: https://gerrit.libreoffice.org/79256
Reviewed-by: Tor Lillqvist 
Tested-by: Tor Lillqvist 
(cherry picked from commit 30f25672a86494625d525086d0a81513db119917)
Reviewed-on: https://gerrit.libreoffice.org/80377
Tested-by: Jenkins

diff --git a/sw/source/ui/vba/vbadocument.cxx b/sw/source/ui/vba/vbadocument.cxx
index c8179770f0fc..894bac0aa996 100644
--- a/sw/source/ui/vba/vbadocument.cxx
+++ b/sw/source/ui/vba/vbadocument.cxx
@@ -460,6 +460,8 @@ SwVbaDocument::Frames( const uno::Any& index )
 void SAL_CALL
 SwVbaDocument::SaveAs2000( const uno::Any& FileName, const uno::Any& 
FileFormat, const uno::Any& /*LockComments*/, const uno::Any& /*Password*/, 
const uno::Any& /*AddToRecentFiles*/, const uno::Any& /*WritePassword*/, const 
uno::Any& /*ReadOnlyRecommended*/, const uno::Any& /*EmbedTrueTypeFonts*/, 
const uno::Any& /*SaveNativePictureFormat*/, const uno::Any& /*SaveFormsData*/, 
const uno::Any& /*SaveAsAOCELetter*/ )
 {
+SAL_INFO("sw.vba", "Document.SaveAs2000(FileName:=" << FileName << 
",FileFormat:=" << FileFormat << ")");
+
 // Based on ScVbaWorkbook::SaveAs.
 OUString sFileName;
 FileName >>= sFileName;
commit 5ff93b6b35841248d899c77a395354a42b0b9e2b
Author: Tor Lillqvist 
AuthorDate: Wed Sep 18 15:43:51 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Mon Oct 7 22:58:48 2019 +0200

Add a SAL_INFO for SwVbaDocuments::Open()

Change-Id: I0c62864f3efa53dde0dc78482d8e9c7ffc35b6ee
(cherry picked from commit 0993ccb56eba6e52d5b3b00f60ea069571f2554a)
Reviewed-on: https://gerrit.libreoffice.org/79255
Reviewed-by: Tor Lillqvist 
Tested-by: Tor Lillqvist 
(cherry picked from commit 3df903c1e572cf010b71ff6cce8acc3d6174a0b9)
Reviewed-on: https://gerrit.libreoffice.org/80376
Tested-by: Jenkins

diff --git a/sw/source/ui/vba/vbadocuments.cxx 
b/sw/source/ui/vba/vbadocuments.cxx
index 4a78cefa63f5..6748dc376fb9 100644
--- a/sw/source/ui/vba/vbadocuments.cxx
+++ b/sw/source/ui/vba/vbadocuments.cxx
@@ -115,6 +115,8 @@ SwVbaDocuments::Close( const uno::Any& /*SaveChanges*/, 
const uno::Any& /*Origin
 uno::Any SAL_CALL
 SwVbaDocuments::Open( const OUString& Filename, const uno::Any& 
/*ConfirmConversions*/, const uno::Any& ReadOnly, const uno::Any& 
/*AddToRecentFiles*/, const uno::Any& /*PasswordDocument*/, const uno::Any& 
/*PasswordTemplate*/, const uno::Any& /*Revert*/, const uno::Any& 
/*WritePasswordDocument*/, const uno::Any& /*WritePasswordTemplate*/, const 
uno::Any& /*Format*/, const uno::Any& /*Encoding*/, const uno::Any& 
/*Visible*/, const uno::Any& /*OpenAndRepair*/, const uno::Any& 
/*DocumentDirection*/, const uno::Any& /*NoEncodingDialog*/, const uno::Any& 
/*XMLTransform*/ )
 {
+SAL_INFO("sw.vba", "Documents.Open(Filename:=" << Filename << 
",ReadOnly:=" << ReadOnly << ")");
+
 // we need to detect if this is a URL, if not then assume it's a file path
 OUString aURL;
 INetURLObject aObj;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 127906] FILESAVE Libreoffice Impress : does not save background colors of pictures

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

raal  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #4 from raal  ---
I can confirm with Version: 6.4.0.0.alpha0+
Build ID: 52cda5c5ae426761ccbdb4f20419098eab195303
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 

but not in Version: 5.2.0.0.alpha0+
Build ID: 3ca42d8d51174010d5e8a32b96e9b4c0b3730a53
Threads 4; Ver: 4.15; Render: default;

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

[Libreoffice-bugs] [Bug 127903] CUSTOMIZE DIALOG: why is KEY_EQUAL not available for assignment to keyboard shortcuts

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

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||vstuart.fo...@utsa.edu
 Status|UNCONFIRMED |NEW
Summary|CUSTOMIZE DIALOG: Extend|CUSTOMIZE DIALOG: why is
   |keyboard shortcut   |KEY_EQUAL not available for
   |combination |assignment to keyboard
   ||shortcuts

--- Comment #1 from V Stuart Foote  ---
Confirmed, not sure why the KEY_EQUAL is excluded from use as assignment to a
keyboard shortcut.

KEY_SUBTRACT, KEY_ADD, KEY_MULTIPLY, and KEY_DIVIDE are all available for use
in a shortcut (with modifiers); so not clear why KEY_EQUAL would not be
likewise availalbe. Is it assigned a 'reserved' status? If so, I could not find
it...

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

[Libreoffice-ux-advise] [Bug 127903] CUSTOMIZE DIALOG: why is KEY_EQUAL not available for assignment to keyboard shortcuts

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

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||vstuart.fo...@utsa.edu
 Status|UNCONFIRMED |NEW
Summary|CUSTOMIZE DIALOG: Extend|CUSTOMIZE DIALOG: why is
   |keyboard shortcut   |KEY_EQUAL not available for
   |combination |assignment to keyboard
   ||shortcuts

--- Comment #1 from V Stuart Foote  ---
Confirmed, not sure why the KEY_EQUAL is excluded from use as assignment to a
keyboard shortcut.

KEY_SUBTRACT, KEY_ADD, KEY_MULTIPLY, and KEY_DIVIDE are all available for use
in a shortcut (with modifiers); so not clear why KEY_EQUAL would not be
likewise availalbe. Is it assigned a 'reserved' status? If so, I could not find
it...

-- 
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 128004] Customize: chosen category does not filter function list

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

--- Comment #6 from Julien Nabet  ---
(In reply to Mike Kaganski from comment #5)
> Does it work on Linux with non-kde vcl plugin?

By default, I use gtk3 rendering but I could indeed reproduce the pb this with
kf5 and gen renderings.

I noticed these logs for the 3 renderings:
warn:cui.customnotebookbar:8601:8601:cui/source/customize/CustomNotebookbarGenerator.cxx:252:
Cannot create the directory or directory was present
:file:///home/julien/lo/libreoffice/instdir/program/../program/../user/config/soffice.cfg/modules/swriter/ui/
warn:cui.customnotebookbar:8601:8601:cui/source/customize/CustomNotebookbarGenerator.cxx:259:
Cannot copy the file or file was present
:file:///home/julien/lo/libreoffice/instdir/program/../program/../user/config/soffice.cfg/modules/swriter/ui/notebookbar.ui

but also these for only kf5 and gen:
warn:vcl:8542:8542:vcl/source/window/builder.cxx:714: missing elements of
image/stock: image1
warn:vcl:8542:8542:vcl/source/window/builder.cxx:714: missing elements of
image/stock: image2
warn:vcl:8542:8542:vcl/source/window/builder.cxx:714: missing elements of
image/stock: image3
warn:vcl:8542:8542:vcl/source/window/builder.cxx:714: missing elements of
image/stock: image4

(or perhaps it's because I tested a different item in menu)

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

[Libreoffice-bugs] [Bug 124270] Editing: Err:522 on copying of rows with "Calc: threaded" enabled ( steps in comment 6 )

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

--- Comment #18 from guillaume.amel...@gmail.com ---
(In reply to m.a.riosv from comment #17)
> Created attachment 154806 [details]
> Sample file showing the bug at opening.
> 
> With 'thread' enable at opening attached file shows the errors, hard recalc
> works, but after that saving and reopening shows the errors again.
> Disabling thread seems to solve the issue.

Hi there,

As stated in my comment 5 here :
https://bugs.documentfoundation.org/show_bug.cgi?id=127789#c5

Disabling thread only seemed to solve the problem. No "Err :522", but erratic
result judging by the discontinuous red curve obtained on the graphs, on
FiltrageVent sheet.

I tried that on build 6.3.2.2

Best regards,
Guillaume AMELINE

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

[Libreoffice-bugs] [Bug 128004] Customize: chosen category does not filter function list

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

--- Comment #5 from Mike Kaganski  ---
Does it work on Linux with non-kde vcl plugin?

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

[Libreoffice-bugs] [Bug 128004] Customize: chosen category does not filter function list

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

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

   What|Removed |Added

 OS|All |Windows (All)

--- Comment #4 from Roman Kuznetsov <79045_79...@mail.ru> ---
possible it's only windows problem

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

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

2019-10-07 Thread Noel Grandin (via logerrit)
 include/toolkit/awt/vclxgraphics.hxx |   18 --
 toolkit/source/awt/vclxgraphics.cxx  |   23 ---
 2 files changed, 4 insertions(+), 37 deletions(-)

New commits:
commit 09e0e415e1fe1821a2ee5b12dab9b20fd7c46641
Author: Noel Grandin 
AuthorDate: Mon Oct 7 14:29:16 2019 +0200
Commit: Noel Grandin 
CommitDate: Mon Oct 7 22:02:32 2019 +0200

use cppu::WeakImplHelper in VCLXGraphics

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

diff --git a/include/toolkit/awt/vclxgraphics.hxx 
b/include/toolkit/awt/vclxgraphics.hxx
index 1482bad16b3e..85464ae37e56 100644
--- a/include/toolkit/awt/vclxgraphics.hxx
+++ b/include/toolkit/awt/vclxgraphics.hxx
@@ -25,7 +25,7 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 
 #include 
 #include 
@@ -54,10 +54,9 @@ namespace o3tl
 //  class VCLXGraphics
 
 
-class VCLXGraphics :public css::awt::XGraphics2,
-public css::lang::XTypeProvider,
-public css::lang::XUnoTunnel,
-public ::cppu::OWeakObject
+class VCLXGraphics : public cppu::WeakImplHelper<
+css::awt::XGraphics2,
+css::lang::XUnoTunnel>
 {
 private:
 // used to return same reference on each call to getDevice()
@@ -84,18 +83,9 @@ public:
 voidSetOutputDevice( OutputDevice* pOutDev );
 OutputDevice*   GetOutputDevice() const { return mpOutputDevice; }
 
-// css::uno::XInterface
-css::uno::Any  SAL_CALL queryInterface( const 
css::uno::Type & rType ) override;
-voidSAL_CALL acquire() throw() 
override  { OWeakObject::acquire(); }
-voidSAL_CALL release() throw() 
override  { OWeakObject::release(); }
-
 // css::lang::XUnoTunnel
 UNO3_GETIMPLEMENTATION_DECL(VCLXGraphics)
 
-// css::lang::XTypeProvider
-css::uno::Sequence< css::uno::Type >  SAL_CALL getTypes() override;
-css::uno::Sequence< sal_Int8 > SAL_CALL 
getImplementationId() override;
-
 // css::awt::XGraphics Attributes
 virtual css::uno::Reference< css::awt::XDevice > SAL_CALL getDevice() 
override;
 virtual void SAL_CALL setTextColor( ::sal_Int32 _textcolor ) override;
diff --git a/toolkit/source/awt/vclxgraphics.cxx 
b/toolkit/source/awt/vclxgraphics.cxx
index c5a27d244538..12f586a9a454 100644
--- a/toolkit/source/awt/vclxgraphics.cxx
+++ b/toolkit/source/awt/vclxgraphics.cxx
@@ -37,32 +37,9 @@ using namespace com::sun::star;
 
 //  class VCLXGraphics
 
-
-// uno::XInterface
-uno::Any VCLXGraphics::queryInterface( const uno::Type & rType )
-{
-uno::Any aRet = ::cppu::queryInterface( rType,
-static_cast< css::awt::XGraphics* 
>(this),
-static_cast< css::lang::XTypeProvider* 
>(this),
-static_cast< css::lang::XUnoTunnel* 
>(this) );
-return (aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ));
-}
-
 // lang::XUnoTunnel
 UNO3_GETIMPLEMENTATION_IMPL( VCLXGraphics );
 
-IMPL_IMPLEMENTATION_ID( VCLXGraphics )
-
-// lang::XTypeProvider
-css::uno::Sequence< css::uno::Type > VCLXGraphics::getTypes()
-{
-static const css::uno::Sequence< css::uno::Type > aTypeList {
-cppu::UnoType::get(),
-cppu::UnoType::get()
-};
-return aTypeList;
-}
-
 VCLXGraphics::VCLXGraphics()
 : mpOutputDevice(nullptr)
 , meRasterOp(RasterOp::OverPaint)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: icon-themes/colibre icon-themes/colibre_svg icon-themes/karasa_jaga icon-themes/karasa_jaga_svg vcl/inc vcl/osx vcl/Package_osxres.mk vcl/unx

2019-10-07 Thread Noel Grandin (via logerrit)
 dev/null  |binary
 icon-themes/colibre/vcl/res/sesize.png|binary
 icon-themes/colibre/vcl/res/swsize.png|binary
 icon-themes/colibre/vcl/res/window_nesize.png |binary
 icon-themes/colibre/vcl/res/window_nwsize.png |binary
 icon-themes/colibre/vcl/res/window_sesize.png |binary
 icon-themes/colibre/vcl/res/window_swsize.png |binary
 vcl/Package_osxres.mk |   66 --
 vcl/inc/bitmaps.hlst  |   10 
 vcl/inc/cursor_hotspots.hxx   |  169 
 vcl/osx/saldata.cxx   |  263 ++
 vcl/osx/salframe.cxx  |2 
 vcl/unx/gtk3/gtk3gtkdata.cxx  |  131 
 13 files changed, 324 insertions(+), 317 deletions(-)

New commits:
commit b3d077a9201d10f2243a7e187af93feb9bfd26ff
Author: Noel Grandin 
AuthorDate: Tue Feb 5 20:27:56 2019 +0200
Commit: Noel Grandin 
CommitDate: Mon Oct 7 22:02:12 2019 +0200

hidpi cursors for macOS

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

diff --git a/vcl/osx/res/cursors/neswsize.png 
b/icon-themes/colibre/vcl/res/nesize.png
similarity index 100%
rename from vcl/osx/res/cursors/neswsize.png
rename to icon-themes/colibre/vcl/res/nesize.png
diff --git a/vcl/osx/res/cursors/nwsesize.png 
b/icon-themes/colibre/vcl/res/nwsize.png
similarity index 100%
rename from vcl/osx/res/cursors/nwsesize.png
rename to icon-themes/colibre/vcl/res/nwsize.png
diff --git a/icon-themes/colibre/vcl/res/sesize.png 
b/icon-themes/colibre/vcl/res/sesize.png
new file mode 100644
index ..fc6a33288ef2
Binary files /dev/null and b/icon-themes/colibre/vcl/res/sesize.png differ
diff --git a/icon-themes/colibre/vcl/res/swsize.png 
b/icon-themes/colibre/vcl/res/swsize.png
new file mode 100644
index ..91b89b5803ec
Binary files /dev/null and b/icon-themes/colibre/vcl/res/swsize.png differ
diff --git a/icon-themes/colibre/vcl/res/hourglass.png 
b/icon-themes/colibre/vcl/res/wait.png
similarity index 100%
rename from icon-themes/colibre/vcl/res/hourglass.png
rename to icon-themes/colibre/vcl/res/wait.png
diff --git a/icon-themes/colibre/vcl/res/window_nesize.png 
b/icon-themes/colibre/vcl/res/window_nesize.png
new file mode 100644
index ..91b89b5803ec
Binary files /dev/null and b/icon-themes/colibre/vcl/res/window_nesize.png 
differ
diff --git a/icon-themes/colibre/vcl/res/window_nwsize.png 
b/icon-themes/colibre/vcl/res/window_nwsize.png
new file mode 100644
index ..fc6a33288ef2
Binary files /dev/null and b/icon-themes/colibre/vcl/res/window_nwsize.png 
differ
diff --git a/icon-themes/colibre/vcl/res/window_sesize.png 
b/icon-themes/colibre/vcl/res/window_sesize.png
new file mode 100644
index ..fc6a33288ef2
Binary files /dev/null and b/icon-themes/colibre/vcl/res/window_sesize.png 
differ
diff --git a/icon-themes/colibre/vcl/res/window_swsize.png 
b/icon-themes/colibre/vcl/res/window_swsize.png
new file mode 100644
index ..91b89b5803ec
Binary files /dev/null and b/icon-themes/colibre/vcl/res/window_swsize.png 
differ
diff --git a/icon-themes/colibre_svg/vcl/res/hourglass.svg 
b/icon-themes/colibre_svg/vcl/res/wait.svg
similarity index 100%
rename from icon-themes/colibre_svg/vcl/res/hourglass.svg
rename to icon-themes/colibre_svg/vcl/res/wait.svg
diff --git a/icon-themes/karasa_jaga/vcl/res/hourglass.png 
b/icon-themes/karasa_jaga/vcl/res/wait.svg
similarity index 100%
rename from icon-themes/karasa_jaga/vcl/res/hourglass.png
rename to icon-themes/karasa_jaga/vcl/res/wait.svg
diff --git a/icon-themes/karasa_jaga_svg/vcl/res/hourglass.svg 
b/icon-themes/karasa_jaga_svg/vcl/res/wait.svg
similarity index 100%
rename from icon-themes/karasa_jaga_svg/vcl/res/hourglass.svg
rename to icon-themes/karasa_jaga_svg/vcl/res/wait.svg
diff --git a/vcl/Package_osxres.mk b/vcl/Package_osxres.mk
index 10451fec779e..dfbc35a9703c 100644
--- a/vcl/Package_osxres.mk
+++ b/vcl/Package_osxres.mk
@@ -13,72 +13,6 @@ $(eval $(call 
gb_Package_add_files_with_dir,vcl_osxres,Resources,\
 MainMenu.nib/classes.nib \
 MainMenu.nib/info.nib \
 MainMenu.nib/keyedobjects.nib \
-cursors/ase.png \
-cursors/asn.png \
-cursors/asne.png \
-cursors/asns.png \
-cursors/asnswe.png \
-cursors/asnw.png \
-cursors/ass.png \
-cursors/asse.png \
-cursors/assw.png \
-cursors/asw.png \
-cursors/aswe.png \
-cursors/chain.png \
-cursors/chainnot.png \
-cursors/chart.png \
-cursors/copydata.png \
-cursors/copydlnk.png \
-cursors/copyf.png \
-cursors/copyf2.png \
-cursors/copyflnk.png \
-cursors/crook.png \
-cursors/crop.png \
-cursors/darc.png \
-cursors/dbezier.png \
-cursors/dcapt.png \
-cursors/dcirccut.png \
-cursors/dconnect.png \
-

[Libreoffice-bugs] [Bug 124270] Editing: Err:522 on copying of rows with "Calc: threaded" enabled ( steps in comment 6 )

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

--- Comment #17 from m.a.riosv  ---
Created attachment 154806
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154806=edit
Sample file showing the bug at opening.

With 'thread' enable at opening attached file shows the errors, hard recalc
works, but after that saving and reopening shows the errors again.
Disabling thread seems to solve the issue.

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

[Libreoffice-commits] core.git: 2 commits - compilerplugins/clang compilerplugins/Makefile-clang.mk config_host.mk.in configure.ac

2019-10-07 Thread Luboš Luňák (via logerrit)
 compilerplugins/Makefile-clang.mk |   49 ++-
 compilerplugins/clang/sharedvisitor/analyzer.cxx  |   17 ++---
 compilerplugins/clang/sharedvisitor/generator.cxx |2 
 config_host.mk.in |3 
 configure.ac  |   69 --
 5 files changed, 96 insertions(+), 44 deletions(-)

New commits:
commit 79ca031fb2e8802aa4383362f83306fad6895729
Author: Luboš Luňák 
AuthorDate: Sat Oct 5 16:27:48 2019 +0200
Commit: Luboš Luňák 
CommitDate: Mon Oct 7 21:57:32 2019 +0200

make the clang plugins configure check faster

Use a header which is not so expensive to parse/compile.

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

diff --git a/configure.ac b/configure.ac
index 156dca7b1ed0..7ba93a3f5247 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7036,7 +7036,7 @@ if test "$COM_IS_CLANG" = "TRUE"; then
 CXXCPP="$COMPILER_PLUGINS_CXX -E"
 CPPFLAGS="$COMPILER_PLUGINS_CXXFLAGS"
 CXXFLAGS="$COMPILER_PLUGINS_CXXFLAGS"
-AC_CHECK_HEADER(clang/AST/RecursiveASTVisitor.h,
+AC_CHECK_HEADER(clang/Basic/SourceLocation.h,
 [COMPILER_PLUGINS=TRUE],
 [
 if test "$compiler_plugins" = "yes"; then
@@ -7053,15 +7053,15 @@ if test "$COM_IS_CLANG" = "TRUE"; then
 LIBS="-lclangTooling -lclangDriver -lclangFrontend 
-lclangParse -lclangSema -lclangEdit \
  -lclangAnalysis -lclangAST -lclangLex -lclangSerialization -lclangBasic 
$COMPILER_PLUGINS_CXX_LINKFLAGS"
 AC_LINK_IFELSE([
-AC_LANG_PROGRAM([[#include "clang/Tooling/Tooling.h"]],
-[[ clang::tooling::runToolOnCode( nullptr, "some code" 
); ]])
+AC_LANG_PROGRAM([[#include 
"clang/Basic/SourceLocation.h"]],
+[[ clang::FullSourceLoc().dump(); ]])
 ],[CLANGTOOLLIBS="$LIBS"],[])
 fi
 if test -z "$CLANGTOOLLIBS"; then
 LIBS="-lclang-cpp $COMPILER_PLUGINS_CXX_LINKFLAGS"
 AC_LINK_IFELSE([
-AC_LANG_PROGRAM([[#include "clang/Tooling/Tooling.h"]],
-[[ clang::tooling::runToolOnCode( nullptr, "some code" 
); ]])
+AC_LANG_PROGRAM([[#include 
"clang/Basic/SourceLocation.h"]],
+[[ clang::FullSourceLoc().dump(); ]])
 ],[CLANGTOOLLIBS="$LIBS"],[])
 fi
 AC_MSG_RESULT([$CLANGTOOLLIBS])
commit ad5cbcf6ba0afdc1d8d7405c2641cce8de4a360b
Author: Luboš Luňák 
AuthorDate: Sun Oct 6 15:01:07 2019 +0200
Commit: Luboš Luňák 
CommitDate: Mon Oct 7 21:57:13 2019 +0200

try to autodetect flags needed to build Clang plugins

Instead of having a lot of it hardcoded, which brings problems like:
- Clang-to-be-10 has switched to -std=c++14, so our hardcoded c++11
  makes the build fail
- I cannot compile with my openSUSE-shipped clang, because it ships
  only libclang-cpp and not the other libClangSomething libs
The possibility to explicitly set the necessary variables is still there.

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

diff --git a/compilerplugins/Makefile-clang.mk 
b/compilerplugins/Makefile-clang.mk
index 14356d1548fd..a132df918b50 100644
--- a/compilerplugins/Makefile-clang.mk
+++ b/compilerplugins/Makefile-clang.mk
@@ -23,14 +23,14 @@ CLANGCXXFLAGS=/nologo /D_HAS_EXCEPTIONS=0 /wd4141 /wd4577 
/EHs-c- /GR-
 ifeq ($(CLANGDEBUG),)
 CLANGCXXFLAGS+=/O2 /Oi
 else
-CLANGCXXFLAGS+=/DEBUG
+CLANGCXXFLAGS+=/DEBUG /Od
 endif
 else # WNT
 CLANGCXXFLAGS=-Wall -Wextra -Wundef
 ifeq ($(CLANGDEBUG),)
 CLANGCXXFLAGS+=-O2
 else
-CLANGCXXFLAGS+=-g
+CLANGCXXFLAGS+=-g -O0 -UNDEBUG
 endif
 endif
 
@@ -61,20 +61,13 @@ CLANG_EXE_EXT =
 endif
 
 # Clang headers require these.
-CLANGDEFS=-D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
-ifneq ($(OS),WNT)
-CLANGDEFS += -fno-rtti
-endif
+CLANGDEFS:=$(COMPILER_PLUGINS_CXXFLAGS)
 # All include locations needed (using -isystem silences various warnings when
 # including those files):
-ifeq ($(OS),WNT)
-CLANGINCLUDES=-I$(CLANGDIR)/include
-else
-CLANGINCLUDES=$(if $(filter /usr,$(CLANGDIR)),,-isystem $(CLANGDIR)/include)
+ifneq ($(OS),WNT)
+CLANGDEFS:=$(filter-out -isystem/usr/include,$(foreach 
opt,$(CLANGDEFS),$(patsubst -I%,-isystem%,$(opt
 endif
 
-LLVMCONFIG=$(CLANGDIR)/bin/llvm-config
-
 # Clang/LLVM libraries are intentionally not linked in, they are usually built 
as static libraries, which means the resulting
 # plugin would be big (even though the clang binary already includes it all) 
and it'd be necessary to explicitly specify
 # also all the dependency 

[Libreoffice-commits] core.git: 2 commits - compilerplugins/clang compilerplugins/Makefile-clang.mk

2019-10-07 Thread Luboš Luňák (via logerrit)
 compilerplugins/Makefile-clang.mk |8 ++--
 compilerplugins/clang/constfieldsrewrite.cxx  |1 +
 compilerplugins/clang/dbgunhandledexception.cxx   |1 +
 compilerplugins/clang/dyncastvisibility.cxx   |4 ++--
 compilerplugins/clang/empty.cxx   |2 +-
 compilerplugins/clang/getimplementationname.cxx   |3 +--
 compilerplugins/clang/implicitboolconversion.cxx  |1 +
 compilerplugins/clang/nullptr.cxx |6 ++
 compilerplugins/clang/sharedvisitor/generator.cxx |1 +
 compilerplugins/clang/stringconstant.cxx  |3 +--
 compilerplugins/clang/unusedfieldsremove.cxx  |1 +
 compilerplugins/clang/unusedmethodsremove.cxx |1 +
 12 files changed, 19 insertions(+), 13 deletions(-)

New commits:
commit b1c14c30ba99ede85e41934b565195b0cbc69703
Author: Luboš Luňák 
AuthorDate: Sun Oct 6 14:22:59 2019 +0200
Commit: Luboš Luňák 
CommitDate: Mon Oct 7 21:56:55 2019 +0200

fix various warnings in compilerplugins

These are triggered when using llvm-config --cxxflags for building,
and sometimes there's -Werror. The warnings were mostly unused
variables because of being used only in assert(), or default case
in switch that covers all enums (it's better to not handle default
to get warning if a case is not handled).

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

diff --git a/compilerplugins/clang/constfieldsrewrite.cxx 
b/compilerplugins/clang/constfieldsrewrite.cxx
index 209d97423a23..03fb3d0c3609 100644
--- a/compilerplugins/clang/constfieldsrewrite.cxx
+++ b/compilerplugins/clang/constfieldsrewrite.cxx
@@ -78,6 +78,7 @@ ConstFieldsRewrite::~ConstFieldsRewrite()
 //Cleanup
 int rc = munmap(mmappedData, mmapFilesize);
 assert(rc == 0);
+(void)rc;
 close(mmapFD);
 }
 
diff --git a/compilerplugins/clang/dbgunhandledexception.cxx 
b/compilerplugins/clang/dbgunhandledexception.cxx
index 81d6126fb3af..d1406c18a9dd 100644
--- a/compilerplugins/clang/dbgunhandledexception.cxx
+++ b/compilerplugins/clang/dbgunhandledexception.cxx
@@ -59,6 +59,7 @@ bool 
DbgUnhandledException::PreTraverseCXXCatchStmt(CXXCatchStmt* catchStmt)
 bool DbgUnhandledException::PostTraverseCXXCatchStmt(CXXCatchStmt* catchStmt, 
bool)
 {
 assert(currCatchStmt.top() == catchStmt);
+(void)catchStmt;
 currCatchStmt.pop();
 return true;
 }
diff --git a/compilerplugins/clang/dyncastvisibility.cxx 
b/compilerplugins/clang/dyncastvisibility.cxx
index 0f6021101e2b..3aa66e0dc21b 100644
--- a/compilerplugins/clang/dyncastvisibility.cxx
+++ b/compilerplugins/clang/dyncastvisibility.cxx
@@ -59,6 +59,7 @@ bool isDerivedFrom(
 if (bases->insert(bd).second) {
 auto const d = isDerivedFrom(bd, base, bases, hidden);
 assert(d);
+(void)d;
 *hidden |= getTypeVisibility(bd) != DefaultVisibility;
 }
 derived = true;
@@ -75,9 +76,8 @@ StringRef vis(Visibility v) {
 return "protected";
 case DefaultVisibility:
 return "default";
-default:
-llvm_unreachable("unknown visibility");
 }
+llvm_unreachable("unknown visibility");
 }
 
 class DynCastVisibility final:
diff --git a/compilerplugins/clang/empty.cxx b/compilerplugins/clang/empty.cxx
index 6ddbf2a84a2d..108745460d0c 100644
--- a/compilerplugins/clang/empty.cxx
+++ b/compilerplugins/clang/empty.cxx
@@ -35,7 +35,7 @@ BinaryOperatorKind reverse(BinaryOperatorKind op)
 case BO_NE:
 return op;
 default:
-assert(false);
+abort();
 }
 }
 
diff --git a/compilerplugins/clang/getimplementationname.cxx 
b/compilerplugins/clang/getimplementationname.cxx
index cf234079750e..acc45acb7442 100644
--- a/compilerplugins/clang/getimplementationname.cxx
+++ b/compilerplugins/clang/getimplementationname.cxx
@@ -209,8 +209,7 @@ bool GetImplementationName::isStringConstant(
 return false;//TODO
 }
 default:
-assert(false); //TODO???
-return "BAD11";
+abort(); //TODO???
 }
 }
 
diff --git a/compilerplugins/clang/implicitboolconversion.cxx 
b/compilerplugins/clang/implicitboolconversion.cxx
index a6ff1c53c26d..84addf67f858 100644
--- a/compilerplugins/clang/implicitboolconversion.cxx
+++ b/compilerplugins/clang/implicitboolconversion.cxx
@@ -174,6 +174,7 @@ bool isBoolExpr(Expr const * expr) {
 CXXOperatorCallExpr const * op
 = dyn_cast(stack.top());
 assert(op != nullptr);
+(void)op;
 TemplateDecl const * d
 = t->getTemplateName().getAsTemplateDecl();
 if (d == nullptr
diff --git a/compilerplugins/clang/nullptr.cxx 
b/compilerplugins/clang/nullptr.cxx
index 30458d7f7f5a..89535daa9849 

[Libreoffice-commits] core.git: solenv/gbuild

2019-10-07 Thread Luboš Luňák (via logerrit)
 solenv/gbuild/platform/com_MSC_class.mk |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 336bd632f916330de73f2fe739c6640449200f32
Author: Luboš Luňák 
AuthorDate: Mon Oct 7 13:57:48 2019 +0200
Commit: Luboš Luňák 
CommitDate: Mon Oct 7 21:56:08 2019 +0200

handle more -arch: options when avoiding D9025

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

diff --git a/solenv/gbuild/platform/com_MSC_class.mk 
b/solenv/gbuild/platform/com_MSC_class.mk
index 3f2630e0eec4..3530bdf65ee9 100644
--- a/solenv/gbuild/platform/com_MSC_class.mk
+++ b/solenv/gbuild/platform/com_MSC_class.mk
@@ -45,10 +45,10 @@ endef
 
 # Avoid annoying warning D9025 about overriding command-line arguments.
 gb_Helper_remove_overriden_flags = \
-$(filter-out -W4 -w -arch:SSE -arch:AVX2 -Od -O2,$(1)) \
+$(filter-out -W4 -w -arch:SSE -arch:SSE2 -arch:AVX -arch:AVX2 -Od 
-O2,$(1)) \
 $(lastword $(filter -W4 -w,$(1))) \
 $(lastword $(filter -Od -O2,$(1))) \
-$(lastword $(filter -arch:SSE -arch:AVX2,$(1)))
+$(lastword $(filter -arch:SSE -arch:SSE2 -arch:AVX -arch:AVX2,$(1)))
 
 # $(call 
gb_CObject__command_pattern,object,flags,source,dep-file,compiler-plugins,symbols)
 define gb_CObject__command_pattern
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-10-07 Thread Caolán McNamara (via logerrit)
 cui/source/dialogs/screenshotannotationdlg.cxx |   24 +++-
 1 file changed, 15 insertions(+), 9 deletions(-)

New commits:
commit ea49b745e7c5114e1ba71ae6d6197624713924f8
Author: Caolán McNamara 
AuthorDate: Mon Oct 7 16:54:27 2019 +0100
Commit: Caolán McNamara 
CommitDate: Mon Oct 7 21:50:32 2019 +0200

use FileDialogHelper which is able to set parent easily

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

diff --git a/cui/source/dialogs/screenshotannotationdlg.cxx 
b/cui/source/dialogs/screenshotannotationdlg.cxx
index f9ed955f2afa..b99a87e9689d 100644
--- a/cui/source/dialogs/screenshotannotationdlg.cxx
+++ b/cui/source/dialogs/screenshotannotationdlg.cxx
@@ -30,6 +30,7 @@
 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -153,6 +154,7 @@ class ScreenshotAnnotationDlg_Impl
 {
 public:
 ScreenshotAnnotationDlg_Impl(
+weld::Window* pParent,
 weld::Builder& rParent,
 Dialog& rParentDialog);
 ~ScreenshotAnnotationDlg_Impl();
@@ -179,6 +181,7 @@ private:
 Point GetOffsetInPicture() const;
 
 // local variables
+weld::Window*   mpParentWindow;
 Dialog& mrParentDialog;
 BitmapExmaParentDialogBitmap;
 BitmapExmaDimmedDialogBitmap;
@@ -216,9 +219,11 @@ public:
 OUString ScreenshotAnnotationDlg_Impl::maLastFolderURL = OUString();
 
 ScreenshotAnnotationDlg_Impl::ScreenshotAnnotationDlg_Impl(
-weld::Builder& rParent,
+weld::Window* pParent,
+weld::Builder& rParentBuilder,
 Dialog& rParentDialog)
-:   mrParentDialog(rParentDialog),
+:   mpParentWindow(pParent),
+mrParentDialog(rParentDialog),
 maParentDialogBitmap(rParentDialog.createScreenshot()),
 maDimmedDialogBitmap(maParentDialogBitmap),
 maParentDialogSize(maParentDialogBitmap.GetSizePixel()),
@@ -235,11 +240,11 @@ 
ScreenshotAnnotationDlg_Impl::ScreenshotAnnotationDlg_Impl(
 assert(0 != maParentDialogBitmap.GetSizePixel().Height());
 
 // get needed widgets
-mxPicture.reset(new weld::CustomWeld(rParent, "picture", maPicture));
+mxPicture.reset(new weld::CustomWeld(rParentBuilder, "picture", 
maPicture));
 assert(mxPicture.get());
-mxText = rParent.weld_text_view("text");
+mxText = rParentBuilder.weld_text_view("text");
 assert(mxText.get());
-mxSave = rParent.weld_button("save");
+mxSave = rParentBuilder.weld_button("save");
 assert(mxSave.get());
 
 // set screenshot image at FixedImage, resize, set event listener
@@ -350,9 +355,10 @@ IMPL_LINK_NOARG(ScreenshotAnnotationDlg_Impl, 
saveButtonHandler, weld::Button&,
 } while (nIndex >= 0);
 }
 
-uno::Reference< uno::XComponentContext > xContext = 
cppu::defaultBootstrap_InitialComponentContext();
-const uno::Reference< ui::dialogs::XFilePicker3 > xFilePicker =
-ui::dialogs::FilePicker::createWithMode(xContext, 
ui::dialogs::TemplateDescription::FILESAVE_AUTOEXTENSION);
+auto xFileDlg = 
std::make_unique(ui::dialogs::TemplateDescription::FILESAVE_AUTOEXTENSION,
+ 
FileDialogFlags::NONE, mpParentWindow);
+
+const uno::Reference< ui::dialogs::XFilePicker3 > xFilePicker = 
xFileDlg->GetFilePicker();
 
 xFilePicker->setTitle(maSaveAsText);
 
@@ -641,7 +647,7 @@ bool Picture::MouseButtonUp(const MouseEvent&)
 ScreenshotAnnotationDlg::ScreenshotAnnotationDlg(weld::Window* pParent, 
Dialog& rParentDialog)
 : GenericDialogController(pParent, "cui/ui/screenshotannotationdialog.ui", 
"ScreenshotAnnotationDialog")
 {
-m_pImpl.reset(new ScreenshotAnnotationDlg_Impl(*m_xBuilder, 
rParentDialog));
+m_pImpl.reset(new ScreenshotAnnotationDlg_Impl(m_xDialog.get(), 
*m_xBuilder, rParentDialog));
 }
 
 ScreenshotAnnotationDlg::~ScreenshotAnnotationDlg()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128004] Customize: chosen category does not filter function list

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #3 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I don't reproduce this.
(Perhaps I missed something?)

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

[Libreoffice-bugs] [Bug 105537] [META] Assertion failed crashes

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

Julien Nabet  changed:

   What|Removed |Added

 Depends on||128001


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128001
[Bug 128001] Assertion when accessing animation properties from sidebar
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128001] Assertion when accessing animation properties from sidebar

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

Julien Nabet  changed:

   What|Removed |Added

 Blocks||105537


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 127759] EDITING cut/move table rows/columns in Writer tables

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

--- Comment #14 from László Németh  ---
@Cor: thanks for your kind words! :)

The comparative analysis didn't mention the visual functions of the table UI:

MSO 2016 has got a visual row insertion mode (plus sign in a circle before the
table). But the biggest difference is the quick table moving (top left corner
little square with arrow cross) and resizing (bottom right corner tiny square),
likely there is an old bug report for these.

-- 
You are receiving this mail because:
You 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/xmloff linguistic/Library_lng.mk linguistic/source xmloff/source

2019-10-07 Thread Noel Grandin (via logerrit)
 include/xmloff/xmltoken.hxx  |8 +
 linguistic/Library_lng.mk|1 
 linguistic/source/convdicxml.cxx |  181 ++-
 linguistic/source/convdicxml.hxx |   46 +++--
 xmloff/source/core/xmltoken.cxx  |8 +
 xmloff/source/token/tokens.txt   |8 +
 6 files changed, 144 insertions(+), 108 deletions(-)

New commits:
commit 36c965311f53dd9feae63ed4f8ab6de4cc449b99
Author: Noel Grandin 
AuthorDate: Sun Sep 29 19:40:09 2019 +0200
Commit: Noel Grandin 
CommitDate: Mon Oct 7 21:31:17 2019 +0200

use FastParser in linguistic

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

diff --git a/include/xmloff/xmltoken.hxx b/include/xmloff/xmltoken.hxx
index 3276d0b8b9c2..751cd423556d 100644
--- a/include/xmloff/xmltoken.hxx
+++ b/include/xmloff/xmltoken.hxx
@@ -105,6 +105,8 @@ namespace xmloff { namespace token {
 XML_N_FORM,
 XML_NP_SCRIPT,
 XML_N_SCRIPT,
+XML_NP_TCD,
+XML_N_TCD,
 XML_NP_XFORMS_1_0,
 XML_N_XFORMS_1_0,
 XML_NP_XSD,
@@ -486,6 +488,7 @@ namespace xmloff { namespace token {
 XML_CONTRAST,
 XML_CONTROL,
 XML_CONVERSION_MODE,
+XML_CONVERSION_TYPE,
 XML_COPY_BACK,
 XML_COPY_FORMULAS,
 XML_COPY_OUTLINE_LEVELS,
@@ -716,6 +719,7 @@ namespace xmloff { namespace token {
 XML_ENDNOTE_REF,
 XML_ENDNOTES_CONFIGURATION,
 XML_ENGRAVED,
+XML_ENTRY,
 XML_EQ,
 XML_EQUAL_AUTHOR,
 XML_EQUAL_COMMENT,
@@ -1095,6 +1099,7 @@ namespace xmloff { namespace token {
 XML_LABEL_STROKE_WIDTH,
 XML_LAMBDA,
 XML_LANDSCAPE,
+XML_LANG,
 XML_LANGUAGE,
 XML_LANGUAGE_ASIAN,
 XML_LANGUAGE_COMPLEX,
@@ -1107,6 +1112,7 @@ namespace xmloff { namespace token {
 XML_LEADER_CHAR,
 XML_LEFT,
 XML_LEFT_OUTSIDE,
+XML_LEFT_TEXT,
 XML_LEFT_TOP_POSITION,
 XML_LEFTARC,
 XML_LEFTCIRCLE,
@@ -1557,6 +1563,7 @@ namespace xmloff { namespace token {
 XML_RIDGE,
 XML_RIGHT,
 XML_RIGHT_OUTSIDE,
+XML_RIGHT_TEXT,
 XML_RIGHTARC,
 XML_RIGHTCIRCLE,
 XML_RING,
@@ -1869,6 +1876,7 @@ namespace xmloff { namespace token {
 XML_TEXT_COMBINE_END_CHAR,
 XML_TEXT_COMBINE_START_CHAR,
 XML_TEXT_CONTENT,
+XML_TEXT_CONVERSION_DICTIONARY,
 XML_TEXT_CROSSING_OUT,
 XML_TEXT_EMPHASIZE,
 XML_TEXT_GLOBAL,
diff --git a/linguistic/Library_lng.mk b/linguistic/Library_lng.mk
index d00f7637e52c..39a908f7bd69 100644
--- a/linguistic/Library_lng.mk
+++ b/linguistic/Library_lng.mk
@@ -38,6 +38,7 @@ $(eval $(call gb_Library_use_libraries,lng,\
cppuhelper \
i18nlangtag \
sal \
+   sax \
svl \
tl \
ucbhelper \
diff --git a/linguistic/source/convdicxml.cxx b/linguistic/source/convdicxml.cxx
index f7320100dc3b..55f51404a929 100644
--- a/linguistic/source/convdicxml.cxx
+++ b/linguistic/source/convdicxml.cxx
@@ -82,10 +82,8 @@ class ConvDicXMLImportContext :
 public SvXMLImportContext
 {
 public:
-ConvDicXMLImportContext(
-ConvDicXMLImport ,
-sal_uInt16 nPrfx, const OUString& rLName ) :
-SvXMLImportContext( rImport, nPrfx, rLName )
+ConvDicXMLImportContext( ConvDicXMLImport  ) :
+SvXMLImportContext( rImport )
 {
 }
 
@@ -96,7 +94,8 @@ public:
 
 // SvXMLImportContext
 virtual void Characters( const OUString  ) override;
-virtual SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix, 
const OUString& rLocalName, const uno::Reference< xml::sax::XAttributeList > 
) override;
+virtual css::uno::Reference SAL_CALL 
createFastChildContext(
+sal_Int32 Element, const css::uno::Reference< 
css::xml::sax::XFastAttributeList > & xAttrList ) override;
 };
 
 
@@ -107,17 +106,17 @@ class ConvDicXMLDictionaryContext_Impl :
 sal_Int16nConversionType;
 
 public:
-ConvDicXMLDictionaryContext_Impl( ConvDicXMLImport ,
-sal_uInt16 nPrefix, const OUString& rLName) :
-ConvDicXMLImportContext( rImport, nPrefix, rLName )
+ConvDicXMLDictionaryContext_Impl( ConvDicXMLImport  ) :
+ConvDicXMLImportContext( rImport )
 {
 nLanguage = LANGUAGE_NONE;
 nConversionType = -1;
 }
 
 // SvXMLImportContext
-virtual void StartElement( const css::uno::Reference< 
css::xml::sax::XAttributeList >& xAttrList ) override;
-virtual SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix, 
const OUString& rLocalName, const uno::Reference< xml::sax::XAttributeList > 
 ) override;
+virtual void SAL_CALL startFastElement( sal_Int32 nElement, const 
css::uno::Reference< css::xml::sax::XFastAttributeList >& Attribs ) override;
+virtual 

[Libreoffice-ux-advise] [Bug 127759] EDITING cut/move table rows/columns in Writer tables

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

--- Comment #14 from László Németh  ---
@Cor: thanks for your kind words! :)

The comparative analysis didn't mention the visual functions of the table UI:

MSO 2016 has got a visual row insertion mode (plus sign in a circle before the
table). But the biggest difference is the quick table moving (top left corner
little square with arrow cross) and resizing (bottom right corner tiny square),
likely there is an old bug report for these.

-- 
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: 2 commits - include/toolkit toolkit/source

2019-10-07 Thread Noel Grandin (via logerrit)
 include/toolkit/awt/vclxdevice.hxx |   20 +---
 include/toolkit/awt/vclxfont.hxx   |   19 +--
 toolkit/source/awt/vclxdevice.cxx  |   25 -
 toolkit/source/awt/vclxfont.cxx|   25 -
 4 files changed, 10 insertions(+), 79 deletions(-)

New commits:
commit be634d021229408bf9e30b4cb75be5debf9a3ffd
Author: Noel Grandin 
AuthorDate: Mon Oct 7 14:25:14 2019 +0200
Commit: Noel Grandin 
CommitDate: Mon Oct 7 21:30:44 2019 +0200

use cppu::WeakImplHelper in VCLXDevice

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

diff --git a/include/toolkit/awt/vclxdevice.hxx 
b/include/toolkit/awt/vclxdevice.hxx
index b99b5bce6b7f..07cd499cacfb 100644
--- a/include/toolkit/awt/vclxdevice.hxx
+++ b/include/toolkit/awt/vclxdevice.hxx
@@ -25,7 +25,7 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 #include 
 #include 
 
@@ -33,11 +33,10 @@
 
 /// A UNO wrapper for the VCL OutputDevice
 class TOOLKIT_DLLPUBLIC VCLXDevice :
-public css::awt::XDevice,
-public css::lang::XTypeProvider,
-public css::lang::XUnoTunnel,
-public css::awt::XUnitConversion,
-public ::cppu::OWeakObject
+public cppu::WeakImplHelper<
+css::awt::XDevice,
+css::lang::XUnoTunnel,
+css::awt::XUnitConversion>
 {
 friend class VCLXGraphics;
 friend class VCLXVirtualDevice;
@@ -52,18 +51,9 @@ public:
 voidSetOutputDevice( const VclPtr 
 ) { mpOutputDevice = pOutDev; }
 const VclPtr& GetOutputDevice() const { return 
mpOutputDevice; }
 
-// css::uno::XInterface
-css::uno::Any  SAL_CALL queryInterface( const 
css::uno::Type & rType ) override;
-voidSAL_CALL acquire() throw() 
override  { OWeakObject::acquire(); }
-voidSAL_CALL release() throw() 
override  { OWeakObject::release(); }
-
 // css::lang::XUnoTunnel
 UNO3_GETIMPLEMENTATION_DECL(VCLXDevice)
 
-// css::lang::XTypeProvider
-css::uno::Sequence< css::uno::Type >  SAL_CALL getTypes() override;
-css::uno::Sequence< sal_Int8 > SAL_CALL 
getImplementationId() override;
-
 // css::awt::XDevice,
 css::uno::Reference< css::awt::XGraphics >SAL_CALL createGraphics(  ) 
override;
 css::uno::Reference< css::awt::XDevice >  SAL_CALL createDevice( 
sal_Int32 nWidth, sal_Int32 nHeight ) override;
diff --git a/toolkit/source/awt/vclxdevice.cxx 
b/toolkit/source/awt/vclxdevice.cxx
index 2cd53e927b54..73dba634e9ff 100644
--- a/toolkit/source/awt/vclxdevice.cxx
+++ b/toolkit/source/awt/vclxdevice.cxx
@@ -50,34 +50,9 @@ VCLXDevice::~VCLXDevice()
 mpOutputDevice.reset();
 }
 
-// css::uno::XInterface
-css::uno::Any VCLXDevice::queryInterface( const css::uno::Type & rType )
-{
-css::uno::Any aRet = ::cppu::queryInterface( rType,
-static_cast< css::awt::XDevice* 
>(this),
-static_cast< css::lang::XUnoTunnel* 
>(this),
-static_cast< css::lang::XTypeProvider* 
>(this),
-static_cast< 
css::awt::XUnitConversion* >(this) );
-return (aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ));
-}
-
 // css::lang::XUnoTunnel
 UNO3_GETIMPLEMENTATION_IMPL( VCLXDevice );
 
-IMPL_IMPLEMENTATION_ID( VCLXDevice )
-
-// css::lang::XTypeProvider
-css::uno::Sequence< css::uno::Type > VCLXDevice::getTypes()
-{
-static const css::uno::Sequence< css::uno::Type > aTypeList {
-cppu::UnoType::get(),
-cppu::UnoType::get(),
-cppu::UnoType::get()
-};
-return aTypeList;
-}
-
-
 // css::awt::XDevice,
 css::uno::Reference< css::awt::XGraphics > VCLXDevice::createGraphics(  )
 {
commit 7a3509b153246a7018748d83c9fef552544eab2b
Author: Noel Grandin 
AuthorDate: Mon Oct 7 14:27:30 2019 +0200
Commit: Noel Grandin 
CommitDate: Mon Oct 7 21:30:32 2019 +0200

use cppu::WeakImplHelper in VCLXFont

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

diff --git a/include/toolkit/awt/vclxfont.hxx b/include/toolkit/awt/vclxfont.hxx
index 921da596009e..e21936f20c99 100644
--- a/include/toolkit/awt/vclxfont.hxx
+++ b/include/toolkit/awt/vclxfont.hxx
@@ -26,7 +26,7 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 #include 
 #include 
 
@@ -38,10 +38,10 @@ class FontMetric;
 //  class VCLXFont
 
 
-class TOOLKIT_DLLPUBLIC VCLXFont final : public css::awt::XFont2,
-public css::lang::XTypeProvider,
-  

[Libreoffice-ux-advise] [Bug 127759] EDITING cut/move table rows/columns in Writer tables

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

--- Comment #13 from László Németh  ---
Comparative analysis and suggestions 

In MSO Word,

1. Cut always cuts the selected column, not only its text content.

2. Rows have a text-only and a full selection with different Cut operations:

2.A Selection by mouse clicking in front of the row or in front of the text of
the first cell result "full" selection, where Cut cuts the complete table rows.
After that, Paste in the first table column results insertion of the table rows
over the actual row.

2.B Selection by mouse or text cursor movement results text-only row selection,
where Cut cuts only the text content, leaving empty cells. After that, Paste
results overwriting of the actual cell content.

Possible LO extensions

- Support MSO's full row selection mode (2.A), keeping also the recent behavior
(2.B).

- LibreOffice has already had a quick row/column insertion mode and deletion
mode (Alt-Delete). I suggest a similar quick row/column selection by extending
Ctrl-A mode with a row & column selection states or using similar
Ctrl-Shift-arrow selection as in Calc (that could work after a Ctrl-A in cells
with multiword cell content). See

https://help.libreoffice.org/Writer/Shortcut_Keys_for_Writer#Shortcut_Keys_for_Tables_in_LibreOffice_Writer

-- 
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 127759] EDITING cut/move table rows/columns in Writer tables

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

--- Comment #13 from László Németh  ---
Comparative analysis and suggestions 

In MSO Word,

1. Cut always cuts the selected column, not only its text content.

2. Rows have a text-only and a full selection with different Cut operations:

2.A Selection by mouse clicking in front of the row or in front of the text of
the first cell result "full" selection, where Cut cuts the complete table rows.
After that, Paste in the first table column results insertion of the table rows
over the actual row.

2.B Selection by mouse or text cursor movement results text-only row selection,
where Cut cuts only the text content, leaving empty cells. After that, Paste
results overwriting of the actual cell content.

Possible LO extensions

- Support MSO's full row selection mode (2.A), keeping also the recent behavior
(2.B).

- LibreOffice has already had a quick row/column insertion mode and deletion
mode (Alt-Delete). I suggest a similar quick row/column selection by extending
Ctrl-A mode with a row & column selection states or using similar
Ctrl-Shift-arrow selection as in Calc (that could work after a Ctrl-A in cells
with multiword cell content). See

https://help.libreoffice.org/Writer/Shortcut_Keys_for_Writer#Shortcut_Keys_for_Tables_in_LibreOffice_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 128001] Assertion when accessing animation properties from sidebar

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

Julien Nabet  changed:

   What|Removed |Added

 OS|Windows (All)   |All

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

[Libreoffice-bugs] [Bug 128001] Assertion when accessing animation properties from sidebar

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

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

On pc Debian x86-64 with master sources updated today, I got an assertion too.

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

[Libreoffice-bugs] [Bug 124270] Editing: Err:522 on copying of rows with "Calc: threaded" enabled ( steps in comment 6 )

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

--- Comment #16 from Dennis Francis  ---
> 
> Hi Dennis, you can easily reproduce it with this file:
> https://bugs.documentfoundation.org/attachment.cgi?id=154545 from bug
> 127789. Check columns H,I,K

Yes I checked that file, but seems it is a different problem (but could be
related) because in that document, Err:522 does not go away with a hard-recalc,
but the current bug's original reporter says the Err:522 go away with a
hard-recalc.

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

[Libreoffice-bugs] [Bug 41560] [META] Keyboard shortcuts tab of Customization dialog

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

Dieter Praas  changed:

   What|Removed |Added

 Depends on||127903


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127903
[Bug 127903] CUSTOMIZE DIALOG: Extend keyboard shortcut combination
-- 
You are receiving this mail because:
You 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 127903] CUSTOMIZE DIALOG: Extend keyboard shortcut combination

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

Dieter Praas  changed:

   What|Removed |Added

   Keywords||needsUXEval
 Blocks||41560
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
Summary|extend keyboard shortcut|CUSTOMIZE DIALOG: Extend
   |combination |keyboard shortcut
   ||combination


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=41560
[Bug 41560] [META] Keyboard shortcuts tab of Customization dialog
-- 
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 127903] CUSTOMIZE DIALOG: Extend keyboard shortcut combination

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

Dieter Praas  changed:

   What|Removed |Added

   Keywords||needsUXEval
 Blocks||41560
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
Summary|extend keyboard shortcut|CUSTOMIZE DIALOG: Extend
   |combination |keyboard shortcut
   ||combination


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=41560
[Bug 41560] [META] Keyboard shortcuts tab of Customization dialog
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-commits] core.git: compilerplugins/clang

2019-10-07 Thread Stephan Bergmann (via logerrit)
 compilerplugins/clang/empty.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 9429864a3fce4dae1e6d9387a1747a338768f316
Author: Stephan Bergmann 
AuthorDate: Mon Oct 7 13:47:54 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Mon Oct 7 20:24:56 2019 +0200

Fix function name, "revert" -> "reverse"

(See the discussion in the comments to
 "fix various warnings in
compilerplugins".)

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

diff --git a/compilerplugins/clang/empty.cxx b/compilerplugins/clang/empty.cxx
index 5cf5a023e54c..6ddbf2a84a2d 100644
--- a/compilerplugins/clang/empty.cxx
+++ b/compilerplugins/clang/empty.cxx
@@ -19,7 +19,7 @@
 
 namespace
 {
-BinaryOperatorKind revert(BinaryOperatorKind op)
+BinaryOperatorKind reverse(BinaryOperatorKind op)
 {
 switch (op)
 {
@@ -177,7 +177,7 @@ private:
 }
 else if (auto const call = 
dyn_cast(expr->getRHS()->IgnoreParenImpCasts()))
 {
-visitComparison(expr, call, expr->getLHS(), 
revert(expr->getOpcode()));
+visitComparison(expr, call, expr->getLHS(), 
reverse(expr->getOpcode()));
 }
 }
 };
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-10-07 Thread Caolán McNamara (via logerrit)
 cui/source/dialogs/screenshotannotationdlg.cxx |  299 -
 cui/source/factory/dlgfact.cxx |   10 
 cui/source/factory/dlgfact.hxx |   13 -
 cui/source/inc/screenshotannotationdlg.hxx |5 
 cui/uiconfig/ui/screenshotannotationdialog.ui  |   14 -
 include/vcl/abstdlg.hxx|3 
 sc/source/core/data/dpcache.cxx|3 
 vcl/source/window/layout.cxx   |2 
 8 files changed, 182 insertions(+), 167 deletions(-)

New commits:
commit 3a1043284b99823191ff4ee4d7285d5703288216
Author: Caolán McNamara 
AuthorDate: Mon Oct 7 09:27:23 2019 +0100
Commit: Caolán McNamara 
CommitDate: Mon Oct 7 20:24:18 2019 +0200

cid#1454630 Uninitialized scalar field

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

diff --git a/sc/source/core/data/dpcache.cxx b/sc/source/core/data/dpcache.cxx
index 8a834614f94e..e2d595a5bef4 100644
--- a/sc/source/core/data/dpcache.cxx
+++ b/sc/source/core/data/dpcache.cxx
@@ -172,7 +172,8 @@ struct Bucket
 ScDPItemData maValue;
 SCROW mnOrderIndex;
 SCROW mnDataIndex;
-Bucket() {}
+Bucket() :
+mnOrderIndex(0), mnDataIndex(0) {}
 Bucket(const ScDPItemData& rValue, SCROW nData) :
 maValue(rValue), mnOrderIndex(0), mnDataIndex(nData) {}
 };
commit d46456b07df11bf774c3a7dcbcd843bb97efbe38
Author: Caolán McNamara 
AuthorDate: Mon Oct 7 13:36:56 2019 +0100
Commit: Caolán McNamara 
CommitDate: Mon Oct 7 20:24:04 2019 +0200

weld ScreenshotAnnotationDlg

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

diff --git a/cui/source/dialogs/screenshotannotationdlg.cxx 
b/cui/source/dialogs/screenshotannotationdlg.cxx
index fb1f41d29525..f9ed955f2afa 100644
--- a/cui/source/dialogs/screenshotannotationdlg.cxx
+++ b/cui/source/dialogs/screenshotannotationdlg.cxx
@@ -29,17 +29,16 @@
 #include 
 
 #include 
-#include 
 #include 
 #include 
 #include 
+#include 
 #include 
-#include 
+#include 
 #include 
 #include 
 #include 
-#include 
-#include 
+#include 
 #include 
 #include 
 #include 
@@ -128,20 +127,39 @@ private:
 
 typedef std::vector< ControlDataEntry > ControlDataCollection;
 
+class Picture : public weld::CustomWidgetController
+{
+private:
+ScreenshotAnnotationDlg_Impl *m_pDialog;
+bool m_bMouseOver;
+private:
+virtual void Paint(vcl::RenderContext& rRenderContext, const 
tools::Rectangle&) override;
+virtual bool MouseMove(const MouseEvent& rMouseEvent) override;
+virtual bool MouseButtonUp(const MouseEvent& rMouseEvent) override;
+public:
+Picture(ScreenshotAnnotationDlg_Impl* pDialog)
+: m_pDialog(pDialog)
+, m_bMouseOver(false)
+{
+}
+
+bool IsMouseOver() const
+{
+return m_bMouseOver;
+}
+};
+
 class ScreenshotAnnotationDlg_Impl
 {
 public:
 ScreenshotAnnotationDlg_Impl(
-ScreenshotAnnotationDlg& rParent,
+weld::Builder& rParent,
 Dialog& rParentDialog);
 ~ScreenshotAnnotationDlg_Impl();
 
 private:
 // Handler for click on save
-DECL_LINK(saveButtonHandler, Button*, void);
-
-// Handler for clicks on picture frame
-DECL_LINK(pictureFrameListener, VclWindowEvent&, void);
+DECL_LINK(saveButtonHandler, weld::Button&, void);
 
 // helper methods
 void CollectChildren(
@@ -167,7 +185,7 @@ private:
 SizemaParentDialogSize;
 
 // VirtualDevice for buffered interaction paints
-VclPtr   mpVirtualBufferDevice;
+VclPtr   mxVirtualBufferDevice;
 
 // all detected children
 ControlDataCollection   maAllChildren;
@@ -178,9 +196,10 @@ private:
 maSelected;
 
 // list of detected controls
-VclPtr  mpPicture;
-VclPtrmpText;
-VclPtr  mpSave;
+Picture maPicture;
+std::unique_ptr mxPicture;
+std::unique_ptr mxText;
+std::unique_ptr mxSave;
 
 // save as text
 OUStringmaSaveAsText;
@@ -188,24 +207,26 @@ private:
 
 // folder URL
 static OUString maLastFolderURL;
+public:
+void Paint(vcl::RenderContext& rRenderContext);
+bool MouseMove(const MouseEvent& rMouseEvent);
+bool MouseButtonUp();
 };
 
 OUString ScreenshotAnnotationDlg_Impl::maLastFolderURL = OUString();
 
 ScreenshotAnnotationDlg_Impl::ScreenshotAnnotationDlg_Impl(
-ScreenshotAnnotationDlg& rParent,
+weld::Builder& rParent,
 Dialog& rParentDialog)
 :   mrParentDialog(rParentDialog),
 maParentDialogBitmap(rParentDialog.createScreenshot()),
 maDimmedDialogBitmap(maParentDialogBitmap),
 

[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-6-1+backports' - officecfg/registry vcl/source

2019-10-07 Thread Vasily Melenchuk (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |8 ++
 vcl/source/gdi/print2.cxx  |   16 +++--
 2 files changed, 22 insertions(+), 2 deletions(-)

New commits:
commit 04abaa7704dfdcbfffab7499e4d9dc69bc8ed5aa
Author: Vasily Melenchuk 
AuthorDate: Fri Jul 12 10:54:56 2019 +0300
Commit: Thorsten Behrens 
CommitDate: Mon Oct 7 20:03:52 2019 +0200

vcl: make "Reduce Transparency" parameter tweakable

"Reduce transparency" feature previously was using hardcoded
value of 0.25. If current object area to whole printing area
ratio exceeds this value, object is being written without
any extra transparency layers in order to reduce metafile size.

Right now this value can be adjusted in "Expert Configuration".
Parameter is called "ReduceTransparencyMinArea".

Reviewed-on: https://gerrit.libreoffice.org/75471
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

Conflicts:
vcl/source/gdi/print2.cxx

Change-Id: I43d5801a1dff6241de214f7b24425626dc06b4fb
Reviewed-on: https://gerrit.libreoffice.org/80393
Reviewed-by: Thorsten Behrens 
Tested-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 54af3be74603..136005d5296a 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -878,6 +878,14 @@
 
 true
   
+  
+
+   Specifies minimal area of an object for applying "Reduce 
Transparency"
+   printer configuration option (removing object transparency). This 
value
+   is counted in percents of the printable area.
+
+25
+  
 
 
   
diff --git a/vcl/source/gdi/print2.cxx b/vcl/source/gdi/print2.cxx
index e131b061557b..829d9c894bbe 100644
--- a/vcl/source/gdi/print2.cxx
+++ b/vcl/source/gdi/print2.cxx
@@ -22,10 +22,13 @@
 #include 
 #include 
 #include 
+#include 
+
+#include 
 
 #include 
 #include 
-
+#include 
 
 #include 
 #include 
@@ -722,6 +725,15 @@ bool OutputDevice::RemoveTransparenciesFromMetaFile( const 
GDIMetaFile& rInMtf,
 // nor checked for intersection against other aCCList elements
 ConnectedComponents aBackgroundComponent;
 
+// Read the configuration value of minimal object area where 
transparency will be removed
+double fReduceTransparencyMinArea = 
officecfg::Office::Common::VCL::ReduceTransparencyMinArea::get() / 100.0;
+SAL_WARN_IF(fReduceTransparencyMinArea > 1.0, "vcl",
+"Value of ReduceTransparencyMinArea config option is too high");
+SAL_WARN_IF(fReduceTransparencyMinArea < 0.0, "vcl",
+"Value of ReduceTransparencyMinArea config option is too low");
+fReduceTransparencyMinArea = boost::algorithm::clamp(
+fReduceTransparencyMinArea, 0.0, 1.0);
+
 // create an OutputDevice to record mapmode changes and the like
 ScopedVclPtrInstance< VirtualDevice > aMapModeVDev;
 aMapModeVDev->mnDPIX = mnDPIX;
@@ -1125,7 +1137,7 @@ bool OutputDevice::RemoveTransparenciesFromMetaFile( 
const GDIMetaFile& rInMtf,
 const double fOutArea( 
static_cast(aOutputRect.GetWidth()) * aOutputRect.GetHeight() );
 
 // check if output doesn't exceed given size
-if( bReduceTransparency && bTransparencyAutoMode && ( fBmpArea 
> ( 0.25 * fOutArea ) ) )
+if( bReduceTransparency && bTransparencyAutoMode && ( fBmpArea 
> ( fReduceTransparencyMinArea * fOutArea ) ) )
 {
 // output normally. Therefore, we simply clear the
 // special attribute, as everything non-special is
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128003] Outlines and transparent objects of SVG are not imported correctly in Writer

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

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

2019-10-07 Thread Andrea Gelmini (via logerrit)
 filter/source/xslt/odf2xhtml/export/xhtml/opendoc2xhtml.xsl |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 76681af6d846f9b285b4034826722766e47415e2
Author: Andrea Gelmini 
AuthorDate: Mon Oct 7 12:56:13 2019 +0200
Commit: Julien Nabet 
CommitDate: Mon Oct 7 19:50:19 2019 +0200

Fix typo

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

diff --git a/filter/source/xslt/odf2xhtml/export/xhtml/opendoc2xhtml.xsl 
b/filter/source/xslt/odf2xhtml/export/xhtml/opendoc2xhtml.xsl
index d59ea006a9be..e872d58dbdad 100644
--- a/filter/source/xslt/odf2xhtml/export/xhtml/opendoc2xhtml.xsl
+++ b/filter/source/xslt/odf2xhtml/export/xhtml/opendoc2xhtml.xsl
@@ -124,9 +124,9 @@
 
 
 
-
-
-
+
+
+
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 84837] Make show/hide comments UNO command work in Calc ( THIS BUG IS BLOCKED - DO NOT WRITE NEW COMMENTS )

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

Henry Cook  changed:

   What|Removed |Added

URL||https://www.streaming-link.
   ||com/roku-customer-support/

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

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

2019-10-07 Thread Pedro (via logerrit)
 loleaflet/css/toolbar.css |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 681c9944818bb960acec81b117a3ebbcba60a1db
Author: Pedro 
AuthorDate: Mon Oct 7 16:27:54 2019 +0200
Commit: Szymon Kłos 
CommitDate: Mon Oct 7 19:44:34 2019 +0200

Center align tb_actionbar_item_userlist via parent table

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

diff --git a/loleaflet/css/toolbar.css b/loleaflet/css/toolbar.css
index de5250b75..5dcbe05a7 100644
--- a/loleaflet/css/toolbar.css
+++ b/loleaflet/css/toolbar.css
@@ -102,6 +102,7 @@
#tb_actionbar_item_undo .w2ui-tb-image, #tb_actionbar_item_redo 
.w2ui-tb-image, #tb_actionbar_item_userlist, #tb_actionbar_item_mobile_wizard 
.w2ui-tb-image, #tb_actionbar_item_prev  .w2ui-tb-image, 
#tb_actionbar_item_next  .w2ui-tb-image, 
#tb_actionbar_item_insertion_mobile_wizard .w2ui-tb-image{
  min-width: 48px;
}
+   #tb_actionbar_item_userlist table{margin: auto !important;}
#toolbar-up .checked{
border-color: #fff;
}
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128003] Outlines and transparent objects of SVG are not imported correctly in Writer

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

--- Comment #3 from Ulrich Moser  ---
Created attachment 154804
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154804=edit
Sample document

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

[Libreoffice-bugs] [Bug 128003] Outlines and transparent objects of SVG are not imported correctly in Writer

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

--- Comment #2 from Ulrich Moser  ---
This error only occurs when printing directly through cups to PS printer. When
printing to PDF the shadow is correct and the PDF then also prints correctly.
So I assume this is a cups problem. 

If that is alos your opinion feel free to close this bug report.

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

[Libreoffice-bugs] [Bug 127990] LibreOffice Impress Remote isn't working as it should for a 1.5 years!

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

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||r...@post.cz
 Resolution|--- |DUPLICATE
Version|unspecified |2.2.3
  Component|LibreOffice |Android app
Product|LibreOffice |Impress Remote

--- Comment #1 from raal  ---
Hello,

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

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

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

[Libreoffice-commits] online.git: loleaflet/css loleaflet/images

2019-10-07 Thread Pedro (via logerrit)
 loleaflet/css/toolbar.css   |   72 
 loleaflet/images/lc_ok_white.svg|   34 +
 loleaflet/images/sc_wrapleft.svg|1 
 loleaflet/images/sc_wrapmenu.svg|1 
 loleaflet/images/sc_wrapoff.svg |1 
 loleaflet/images/sc_wrapright.svg   |1 
 loleaflet/images/sc_wrapthrough.svg |1 
 7 files changed, 111 insertions(+)

New commits:
commit a818388dad64fd8c8e93287113850dd3f52cca08
Author: Pedro 
AuthorDate: Mon Oct 7 18:37:01 2019 +0200
Commit: Szymon Kłos 
CommitDate: Mon Oct 7 19:40:08 2019 +0200

Styling WrapPropertyPanel: checkbox and radioboxes plus layout

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

diff --git a/loleaflet/css/toolbar.css b/loleaflet/css/toolbar.css
index 9aeffbb5a..de5250b75 100644
--- a/loleaflet/css/toolbar.css
+++ b/loleaflet/css/toolbar.css
@@ -1,4 +1,76 @@
 @media (max-width: 767px), (max-device-height: 767px) {
+   #buttonbefore, #buttonafter, #buttonoptimal, #buttonparallel, 
#buttonnone, #buttonthrough{
+   margin: 0;
+padding: 0;
+-webkit-appearance: none;
+-moz-appearance: none;
+appearance: none;
+   padding: 24px 32px 24px 32px;
+   background-size: 24px !important;
+   }
+   #buttonbefore:focus, #buttonafter:focus, #buttonoptimal:focus, 
#buttonparallel:focus, #buttonnone:focus, #buttonthrough:focus{
+   border-radius: 4px;
+outline: none;
+background-color: #e5f1ff;
+   }
+   #buttonbefore{background: url(images/sc_wrapleft.svg) no-repeat center;}
+   #buttonafter{background: url(images/sc_wrapright.svg) no-repeat center;}
+   #buttonoptimal{background: url(images/sc_wrapleft.svg) no-repeat 
center;}
+   #buttonparallel{background: url(images/sc_wrapmenu.svg) no-repeat 
center;}
+   #buttonnone{background: url(images/sc_wrapoff.svg) no-repeat center;}
+   #buttonthrough{background: url(images/sc_wrapthrough.svg) no-repeat 
center;}
+
+   #enablecontour{
+   float: left;
+   margin: 16px 0px;
+   }
+   input[type=checkbox]#enablecontour{
+   appearance: none;
+   width: 24px;
+   height: 24px;
+   margin: 10px 0px;
+   -webkit-appearance: none;
+-moz-appearance: none;
+-o-appearance: none;
+appearance: none;
+border-radius: 2px;
+border: 2px solid #aaa;
+outline: none;
+box-shadow: #0015 0px 0px 2px 1px;
+   }
+   input[type=checkbox]#enablecontour:checked{
+   background: url(images/lc_ok_white.svg) no-repeat center;
+   background-color: #0b87e7;
+   border-radius: 2px;
+border: 2px solid #0b87e7;
+outline: none;
+box-shadow: none;
+   }
+   input[type=checkbox]#enablecontour:before{
+   width: 20px;
+   height: 20px;
+   }
+   input[type=checkbox]#enablecontour:after{
+   top: -20px;
+   width: 16px;
+   }
+   #enablecontour + label{
+   line-height: 44px;
+   vertical-align: baseline;
+   padding-left: 24px;
+   }
+   #enablecontour + button {
+   float: right;
+   margin: 24px 0px;
+height: 38px;
+border-radius: 4px;
+color: #0b87e7;
+font-weight: bold;
+background-color: #fff;
+text-transform: uppercase;
+border: 1px solid #0b87e7;
+   }
+   #enablecontour + button + p {clear: both;}
#formulabar {
padding: 0px !important;
border-top: 1px solid #bb !important;
diff --git a/loleaflet/images/lc_ok_white.svg b/loleaflet/images/lc_ok_white.svg
new file mode 100644
index 0..9951c53a1
--- /dev/null
+++ b/loleaflet/images/lc_ok_white.svg
@@ -0,0 +1,34 @@
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns="http://www.w3.org/2000/svg;
+   id="svg4"
+   version="1.1"
+   viewBox="0 0 24 24">
+  
+
+  
+image/svg+xml
+http://purl.org/dc/dcmitype/StillImage; />
+
+  
+
+  
+  
+  
+
diff --git a/loleaflet/images/sc_wrapleft.svg b/loleaflet/images/sc_wrapleft.svg
new file mode 100644
index 0..e0119e035
--- /dev/null
+++ b/loleaflet/images/sc_wrapleft.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/loleaflet/images/sc_wrapmenu.svg b/loleaflet/images/sc_wrapmenu.svg
new file mode 100644
index 0..9ceb5190f
--- /dev/null
+++ b/loleaflet/images/sc_wrapmenu.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/loleaflet/images/sc_wrapoff.svg b/loleaflet/images/sc_wrapoff.svg
new 

[Libreoffice-bugs] [Bug 112483] Impress Remote: Slide preview is blank

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

--- Comment #18 from raal  ---
*** Bug 127990 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 126455] Ribbon menu button icons NOT showing in KDE with dark theme

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

--- Comment #10 from swipe...@gmail.com ---
Created attachment 154803
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154803=edit
LO icons breeze (default)

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

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

2019-10-07 Thread Michael Meeks (via logerrit)
 loleaflet/css/toolbar.css|3 
 loleaflet/src/control/Control.JSDialogBuilder.js |2 
 loleaflet/src/control/Control.Menubar.js |  103 +--
 loleaflet/src/control/Control.Toolbar.js |   17 +++
 4 files changed, 77 insertions(+), 48 deletions(-)

New commits:
commit 19de29462a790bca2bfdb91d8a03622674cf4af0
Author: Michael Meeks 
AuthorDate: Mon Oct 7 18:32:30 2019 +0100
Commit: Michael Meeks 
CommitDate: Mon Oct 7 18:33:29 2019 +0100

mobile: disable insert menus, and various items that create dialogs.

Change-Id: I2cc788f251a81f4acd5b0ad578dc1cf73474fffe

diff --git a/loleaflet/src/control/Control.Menubar.js 
b/loleaflet/src/control/Control.Menubar.js
index 6b9f348c7..fbeba7af1 100644
--- a/loleaflet/src/control/Control.Menubar.js
+++ b/loleaflet/src/control/Control.Menubar.js
@@ -73,17 +73,17 @@ L.Control.Menubar = L.Control.extend({
{type: 'separator'},
{name: _UNO('.uno:ShowResolvedAnnotations', 
'text'), id: 'showresolved', type: 'action'},
{type: 'separator'},
-   {uno: '.uno:Sidebar'},
+   {uno: '.uno:Sidebar', mobile: false},
{id: 'mobile-wizard',  type: 'action', name: 
_('Mobile Wizard'), mobile: true, desktop: false}
]
},
-   {name: _UNO('.uno:InsertMenu', 'text'), id: 'insert', 
type: 'menu', menu: [
+   {name: _UNO('.uno:InsertMenu', 'text'), id: 'insert', 
mobile: false, type: 'menu', menu: [
{name: _('Local Image...'), id: 
'insertgraphic', type: 'action'},
{name: _UNO('.uno:InsertGraphic', 'text'), id: 
'insertgraphicremote', type: 'action'},
{name: _UNO('.uno:InsertAnnotation', 'text'), 
id: 'insertcomment', type: 'action'},
{uno: '.uno:InsertObjectChart'},
{type: 'separator'},
-   {uno: '.uno:InsertSection', id: 
'insertsection'},
+   {uno: '.uno:InsertSection', id: 
'insertsection', mobile: false },
{name: _UNO('.uno:InsertField', 'text'), type: 
'menu', menu: [
{uno: '.uno:InsertPageNumberField'},
{uno: '.uno:InsertPageCountField'},
@@ -106,7 +106,7 @@ L.Control.Menubar = L.Control.extend({
{uno: '.uno:InsertColumnBreak'},
{type: 'separator'},
{name: _UNO('.uno:HyperlinkDialog'), id: 
'hyperlink', type: 'action'},
-   {uno: '.uno:InsertSymbol'},
+   {uno: '.uno:InsertSymbol', mobile: false},
{name: _UNO('.uno:FormattingMarkMenu', 'text'), 
type: 'menu', menu: [
{uno: '.uno:InsertNonBreakingSpace'},
{uno: '.uno:InsertHardHyphen'},
@@ -115,12 +115,12 @@ L.Control.Menubar = L.Control.extend({
{uno: '.uno:InsertZWNBSP'},
{uno: '.uno:InsertLRM'},
{uno: '.uno:InsertRLM'}]},
-{name: _UNO('.uno:IndexesMenu', 'text'), type: 
'menu', menu: [
+{name: _UNO('.uno:IndexesMenu', 'text'), type: 
'menu', mobile: false, menu: [
{uno: '.uno:InsertIndexesEntry'},
{uno: '.uno:InsertAuthoritiesEntry'},
{uno: '.uno:InsertMultiIndex'}]},
]},
-   {name: _UNO('.uno:FormatMenu', 'text'), id: 'format', 
type: 'menu', menu: [
+   {name: _UNO('.uno:FormatMenu', 'text'), id: 'format', 
mobile: false, type: 'menu', menu: [
{name: _UNO('.uno:FormatTextMenu', 'text'), 
type: 'menu', menu: [
{uno: '.uno:Bold'},
{uno: '.uno:Italic'},
@@ -205,7 +205,7 @@ L.Control.Menubar = L.Control.extend({
{type: 'separator'},
{uno: '.uno:ResetAttributes'}
]},
-   {name: _UNO('.uno:TableMenu', 'text'), type: 'menu', 
menu: [
+   {name: _UNO('.uno:TableMenu', 'text'), mobile: false, 
type: 'menu', menu: [
{name: _UNO('.uno:TableInsertMenu', 'text'), 
type: 'menu', menu: [
{uno: '.uno:InsertRowsBefore'},
  

[Libreoffice-bugs] [Bug 126455] Ribbon menu button icons NOT showing in KDE with dark theme

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

swipe...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #9 from swipe...@gmail.com ---
The icons are fine when using the LO breeze dark icon theme. 

When setting the LO icon scheme back to defaults, the icons are now somewhat
visible (unlike when I originally logged the bug when they were completely
transparent) but still not very contrasting. (see attachment)

No change to icons when disabling OpenGL

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

  1   2   3   4   >