[Libreoffice-bugs] [Bug 128488] New: sdbc postgresql stops working with postgresql 12 version

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

Bug ID: 128488
   Summary: sdbc postgresql stops working with postgresql 12
version
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kjo...@poczta.onet.pl

First of all I do not know if it is best place for this bug - but I have
nothing better.

By debian installation stops working with postgresql 12 version. A lot of
mysterious bug (table public.xxx does not exists and so on)

In postgres log I can see:
2019-10-31 05:19:16 CET LOG:  statement: SELECT pg_namespace.nspname,
pg_class.relname, pg_attribute.attname, pg_type.typname,
pg_attribute.atttypmod, pg_attribute.attnotnull, pg_type.typdefault,
pg_type.typtype, pg_attrdef.adsrc, pg_description.description,
pg_type.typbasetype, pg_attribute.attnum FROM pg_class, 
pg_attribute LEFT JOIN pg_attrdef ON pg_attribute.attrelid = pg_attrdef.adrelid
AND pg_attribute.attnum = pg_attrdef.adnum LEFT JOIN pg_description ON
pg_attribute.attrelid = pg_description.objoid AND
pg_attribute.attnum=pg_description.objsubid, pg_type, pg_namespace WHERE
pg_attribute.attrelid = pg_class.oid AND 
pg_attribute.atttypid = pg_type.oid AND pg_class.relnamespace =
pg_namespace.oid AND NOT pg_attribute.attisdropped AND pg_namespace.nspname
LIKE 'public' AND pg_class.relname LIKE 'przesylki' AND pg_attribute.attname
LIKE '%' ORDER BY pg_namespace.nspname, pg_class.relname, pg_attribute.attnum
2019-10-31 05:19:16 CET ERROR:  column pg_attrdef.adsrc does not exist at
character 173

according to postgres changelog - colum adsrc was removed and postgresql author
suggest using something like "pg_get_expr(pg_attrdef.adbin,pg_attrdef.adrelid)"

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

[Libreoffice-bugs] [Bug 128431] Synchronize padding in header borders it is not working

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

--- Comment #6 from Jim Raykowski  ---
My fault, I missed that when reviewing the patch. The same cause of the padding
sync not working is the cause of the line arrangement and line items not being
filled when the Border / Background dialog is opened from the frame menu.

Here is a link to the patch:
https://gerrit.libreoffice.org/#/c/81815/

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

[Libreoffice-bugs] [Bug 107280] [META] Issues related to the shared code between Impress and Draw

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

Bug 114175 Summary: Draw uses the label 'Slide' in various places when it 
should be 'Page'
https://bugs.documentfoundation.org/show_bug.cgi?id=114175

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 108743] [META] Find toolbar bugs and enhancements

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

Bug 113041 Summary: UI Busy indicator persists after Find all returns no key 
found
https://bugs.documentfoundation.org/show_bug.cgi?id=113041

   What|Removed |Added

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

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

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

2019-10-30 Thread Muhammet Kara (via logerrit)
 sd/inc/strings.hrc  |2 ++
 sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx |7 ++-
 sd/source/ui/view/Outliner.cxx  |4 ++--
 sd/source/ui/view/unmodpg.cxx   |5 -
 4 files changed, 14 insertions(+), 4 deletions(-)

New commits:
commit 877d0c2c211067e8c1b5fdff0f6d9703c94767e9
Author: Muhammet Kara 
AuthorDate: Thu Oct 31 00:49:40 2019 +0300
Commit: Muhammet Kara 
CommitDate: Thu Oct 31 05:45:47 2019 +0100

tdf#113041: Kill WaitCursor after FindAll in Draw and Impress

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

diff --git a/sd/source/ui/view/Outliner.cxx b/sd/source/ui/view/Outliner.cxx
index 7fab5d32c3ba..d3bd66724c7b 100644
--- a/sd/source/ui/view/Outliner.cxx
+++ b/sd/source/ui/view/Outliner.cxx
@@ -495,8 +495,8 @@ bool SdOutliner::StartSearchAndReplace (const 
SvxSearchItem* pSearchItem)
 pSearchDlg->SetSrchFlag(false);
 }
 }
-else
-mpDrawDocument->GetDocSh()->SetWaitCursor( false );
+
+mpDrawDocument->GetDocSh()->SetWaitCursor( false );
 
 return bEndOfSearch;
 }
commit 5bc12e114fec50274580005647345a5392741ded
Author: Muhammet Kara 
AuthorDate: Wed Oct 30 16:46:47 2019 +0300
Commit: Muhammet Kara 
CommitDate: Thu Oct 31 05:45:33 2019 +0100

tdf#114175: No slides in Draw

In the past in Draw and Impress the same term 'slide' was used.
Although it was decided to use 'page' in Draw and 'slide' in Impress;
in several locations of the user interface this has been changed but not 
everywhere.

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

diff --git a/sd/inc/strings.hrc b/sd/inc/strings.hrc
index cb345f59cd17..1eeb0c178976 100644
--- a/sd/inc/strings.hrc
+++ b/sd/inc/strings.hrc
@@ -84,6 +84,7 @@
 #define STR_IMPRESS NC_("STR_IMPRESS", 
"StarImpress 4.0")
 #define STR_LAYER   NC_("STR_LAYER", 
"Layer")
 #define STR_UNDO_DELETEPAGES
NC_("STR_UNDO_DELETEPAGES", "Delete slides")
+#define STR_UNDO_DELETEPAGES_DRAW   
NC_("STR_UNDO_DELETEPAGES_DRAW", "Delete pages")
 #define STR_UNDO_INSERTPAGES
NC_("STR_UNDO_INSERTPAGES", "Insert slides")
 #define STR_ASK_DELETE_LAYER
NC_("STR_ASK_DELETE_LAYER", "Are you sure you want to delete the level 
\"$\"?\nNote: All objects on this level will be deleted!")
 #define STR_ASK_DELETE_ALL_PICTURES 
NC_("STR_ASK_DELETE_ALL_PICTURES", "Do you really want to delete all images?")
@@ -122,6 +123,7 @@
 #define STR_ASK_FOR_CONVERT_TO_BEZIER   
NC_("STR_ASK_FOR_CONVERT_TO_BEZIER", "Convert selected object to curve?")
 #define STR_UNDO_CHANGE_PRES_OBJECT 
NC_("STR_UNDO_CHANGE_PRES_OBJECT", "Modify presentation object '$'")
 #define STR_UNDO_MODIFY_PAGE
NC_("STR_UNDO_MODIFY_PAGE", "Slide layout")
+#define STR_UNDO_MODIFY_PAGE_DRAW   
NC_("STR_UNDO_MODIFY_PAGE_DRAW", "Page layout")
 #define STR_UNDO_INSERT_FILE
NC_("STR_UNDO_INSERT_FILE", "Insert file")
 #define STR_UNDO_INSERT_SPECCHAR
NC_("STR_UNDO_INSERT_SPECCHAR", "Insert special character")
 #define STR_UNDO_SET_PRESLAYOUT 
NC_("STR_UNDO_SET_PRESLAYOUT", "Apply presentation layout")
diff --git a/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx 
b/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx
index 04c5d8270250..ca0cbad1bf51 100644
--- a/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx
+++ b/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx
@@ -107,10 +107,15 @@ void SelectionManager::DeleteSelectedPages (const bool 
bSelectFollowingPage)
 if (pDrawView)
 pDrawView->BlockPageOrderChangedHint(true);
 
+// Proper naming for the undo action
+OUString sUndoComment(SdResId(STR_UNDO_DELETEPAGES));
+if (mrSlideSorter.GetView().GetDoc().GetDocumentType() == 
DocumentType::Draw)
+sUndoComment = SdResId(STR_UNDO_DELETEPAGES_DRAW);
+
 // The actual deletion of the selected pages is done in one of two
 // helper functions.  They are specialized for normal respectively for
 // master pages.
-mrSlideSorter.GetView().BegUndo (SdResId(STR_UNDO_DELETEPAGES));
+mrSlideSorter.GetView().BegUndo (sUndoComment);
 if (mrSlideSorter.GetModel().GetEditMode() == EditMode::Page)
 DeleteSelectedNormalPages(aSelectedPages);
 else
diff --git a/sd/source/ui/view/unmodpg.cxx b/sd/source/ui/view/unmodpg.cxx
index 06272b0b8d9b..5885e346db48 100644

[Libreoffice-bugs] [Bug 128150] FILEOPEN: Shape in master slide is white using useBgFill=1

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

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 123029] EDITING; Crash when I choose some slide transition in Impress

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

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 128182] Set last replace value in Find and Replace (Ctrl + H)

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

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 128161] Save after the file is opened, the ppt line spacing is reduced until 0

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

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 123891] Keyboard QWERTY - bad characters in LibreOffice aplications

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

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 103704] [META] Slide transition bugs and enhancements

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

Bug 123029 Summary: EDITING; Crash when I choose some slide transition in 
Impress
https://bugs.documentfoundation.org/show_bug.cgi?id=123029

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 128172] When opening a grouped set of object for editing, the rest of the slide is no more grayed out

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

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 123891] Keyboard QWERTY - bad characters in LibreOffice aplications

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

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

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 121416] Add more layout variants

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

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

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 121791] Can't insert avi file into slide

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

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

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 108363] [META] Slide layout bugs and enhancements

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

Bug 121416 Summary: Add more layout variants
https://bugs.documentfoundation.org/show_bug.cgi?id=121416

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 104781] FILEOPEN DOCX: Time to open file has increased compared to LibO4463

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

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 107322] [META] Media (audio / video) bugs and enhancements

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

Bug 121791 Summary: Can't insert avi file into slide
https://bugs.documentfoundation.org/show_bug.cgi?id=121791

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103610] [META] Slide show (presentation mode) bugs and enhancements

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

Bug 122068 Summary: Broken slide preview when opening .pptx if picture mostly 
fills the slide
https://bugs.documentfoundation.org/show_bug.cgi?id=122068

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 121392] Can't edit notes to slides

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

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

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 121416] Add more layout variants

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

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 102283] [META] Slide/page pane bugs and enhancements

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

Bug 122068 Summary: Broken slide preview when opening .pptx if picture mostly 
fills the slide
https://bugs.documentfoundation.org/show_bug.cgi?id=122068

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 122068] Broken slide preview when opening .pptx if picture mostly fills the slide

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

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 127988] LibreOffice crash on trying to set language

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

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

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

[Libreoffice-bugs] [Bug 108226] [META] PPTX (OOXML) bug tracker

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

Bug 122068 Summary: Broken slide preview when opening .pptx if picture mostly 
fills the slide
https://bugs.documentfoundation.org/show_bug.cgi?id=122068

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 127988] LibreOffice crash on trying to set language

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

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 123029] EDITING; Crash when I choose some slide transition in Impress

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

--- Comment #4 from QA Administrators  ---
Dear Hiromi Kuramoto,

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 128171] macOS langpack install script no longer finds parallel LO installations - Catalina 10.15

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

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 122068] Broken slide preview when opening .pptx if picture mostly fills the slide

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

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

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 121791] Can't insert avi file into slide

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

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 104781] FILEOPEN DOCX: Time to open file has increased compared to LibO4463

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

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

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 108381] [META] Notes and Master Notes view/mode bugs and enhancements

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

Bug 121392 Summary: Can't edit notes to slides
https://bugs.documentfoundation.org/show_bug.cgi?id=121392

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 120811] FORMATTING: I want more slides on a single handout page

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

--- Comment #3 from QA Administrators  ---
Dear Takeshi Teshima,

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 124433] LibreOffice crashed

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

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

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 112597] [META] Handout and Master Handout view bugs and enhancements

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

Bug 120811 Summary: FORMATTING: I want more slides on a single handout page
https://bugs.documentfoundation.org/show_bug.cgi?id=120811

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 123784] Istruction for remove all direct Formatting on a impress document doesn't work

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

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 121392] Can't edit notes to slides

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

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 124433] LibreOffice crashed

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

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 121193] In slide show, the presentation always shows a split screen

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

--- Comment #3 from QA Administrators  ---
Dear John Ross,

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 104450] [META] DOCX (OOXML) file opening issues

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

Bug 104781 Summary: FILEOPEN DOCX: Time to open file has increased compared to 
LibO4463
https://bugs.documentfoundation.org/show_bug.cgi?id=104781

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103610] [META] Slide show (presentation mode) bugs and enhancements

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

Bug 121193 Summary: In slide show, the presentation always shows a split screen
https://bugs.documentfoundation.org/show_bug.cgi?id=121193

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 123784] Istruction for remove all direct Formatting on a impress document doesn't work

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

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

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 120894] “Navigate by” Function does not Work Correctly if Form Control are Used

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 120989] Free rotation in Writer creates a frame around it. Page wrap is useless that way

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

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

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 120811] FORMATTING: I want more slides on a single handout page

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

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 122064] In impress the text when running slideshow gets randomly cut off and diplays different cut offs each time the same file is played.

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

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103610] [META] Slide show (presentation mode) bugs and enhancements

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

Bug 122064 Summary: In impress the text when running slideshow gets randomly 
cut off and diplays different cut offs each time the same file is played.
https://bugs.documentfoundation.org/show_bug.cgi?id=122064

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 92234] Custom table autoformat ignores background colors under certain circumstances

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

--- Comment #7 from QA Administrators  ---
Dear Axel Bock,

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 122064] In impress the text when running slideshow gets randomly cut off and diplays different cut offs each time the same file is played.

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

--- Comment #4 from QA Administrators  ---
Dear Khiron Samerotti,

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 89754] using autofill on dates is wrong when increment should be 0

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

--- Comment #12 from QA Administrators  ---
Dear almos,

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 121193] In slide show, the presentation always shows a split screen

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

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103726] Undo of disable contour applies auto-contour

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 58244] Impossible to display non numeric values (labels) in bubble charts axis (for categorized data)

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

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

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 113489] Fill color of placeholder textbox doesnt appear in slide pane preview

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 118842] Pasting text from webpage then cancelling, lines are not reset to default size

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

--- Comment #8 from QA Administrators  ---
Dear Julien ROPE,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

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

2019-10-30 Thread Justin Luth (via logerrit)
 oox/source/vml/vmlinputstream.cxx   |6 ++
 sc/qa/unit/data/xlsx/tdf120301_xmlSpaceParsing.xlsx |binary
 2 files changed, 6 insertions(+)

New commits:
commit 32efd4529aba776eca9456e96656d542267874f3
Author: Justin Luth 
AuthorDate: Wed Oct 30 11:11:45 2019 +0300
Commit: Justin Luth 
CommitDate: Thu Oct 31 04:32:49 2019 +0100

tdf#128447 sc/vml: accept  xml prolog

... or processing instruction, or text directive.

The inability to parse this was exposed in LO 6.2
with commit 2cae2ecfef47d8dd10647c10f9577392c1887d3a

I added 
to the top of vmlDrawing1.vml from the unit test,
which invalidates the entire .vml file and the two
controls are lost without this fix.

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

diff --git a/oox/source/vml/vmlinputstream.cxx 
b/oox/source/vml/vmlinputstream.cxx
index 215eff35f621..2fc17ee84ea7 100644
--- a/oox/source/vml/vmlinputstream.cxx
+++ b/oox/source/vml/vmlinputstream.cxx
@@ -169,6 +169,12 @@ void lclProcessElement( OStringBuffer& rBuffer, const 
OString& rElement )
 // do nothing
 }
 
+// just append any xml prolog (text directive) or processing instructions: 

+else if( (nElementLen >= 4) && (pcOpen[ 1 ] == '?') && (pcClose[ -1 ] == 
'?') )
+{
+rBuffer.append( rElement );
+}
+
 // replace '' element with newline
 else if( (nElementLen >= 4) && (pcOpen[ 1 ] == 'b') && (pcOpen[ 2 ] == 
'r') && (lclFindNonWhiteSpace( pcOpen + 3, pcClose ) == pcClose) )
 {
diff --git a/sc/qa/unit/data/xlsx/tdf120301_xmlSpaceParsing.xlsx 
b/sc/qa/unit/data/xlsx/tdf120301_xmlSpaceParsing.xlsx
index 0677a0cf2eb2..b28c4dd71643 100644
Binary files a/sc/qa/unit/data/xlsx/tdf120301_xmlSpaceParsing.xlsx and 
b/sc/qa/unit/data/xlsx/tdf120301_xmlSpaceParsing.xlsx differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128439] Fileopen ODT: Long post-processing of a file containing a large table

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

Terrence Enger  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected

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

[Libreoffice-bugs] [Bug 60616] Chapter info doesn't support more than one appearance in an Alphabetical index entry and only the last chapter

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

--- Comment #17 from Lee <92ma...@gmail.com> ---
I haven't yet been able to check out the bug on current release due to
difficulties installing a later version of libreoffice. I run on Ubuntu 16.04
using X11 rdp (remote). Releases taken directly from libreoffice downloads
present a blank initial page except the toolbar "File Tools Help".  I stumbled
on a work-around which presents the whole thing as expected if I first select
Tools then Options - I don't have to do anything else.  I plan to get a current
version then try this bug, using the work-around just described.

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

[Libreoffice-bugs] [Bug 128439] Fileopen ODT: Long post-processing of a file containing a large table

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

Terrence Enger  changed:

   What|Removed |Added

 CC||lo_b...@iseries-guru.com

--- Comment #2 from Terrence Enger  ---
Created attachment 155414
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155414=edit
tail of terminal output, bibisect-linux-64-6.4

Working in bibisect-linux-64-6.4 repository on debian-buster with
VCL=gtk3, I see that the bug entered LibreOffice in

commit 058c406c1610df7e557b9405619388465d3f056b
Author: Corentin Noël 
Date:   Fri Sep 20 18:30:15 2019 +0200

gtk3: Depend on the window stylecontext

Make all GtkStyleContext children of the one from the current toplevel
and ensures that the scale factor is the same as the parent.
Also make sure to load images using the right scaling factor.

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

The CPU times I deemed good for probed versions ranged from 8.71 to
10.938 seconds, and for versions I deemed bad from 15.06 to 17.553
seconds.

I am removing keyword bibisectRequest and adding keywords bibisected
and bisected.

-- 
You are receiving this mail because:
You 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: icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_svg icon-themes/sifr icon-themes/sifr_dark icon-themes/sifr_svg

2019-10-30 Thread rizmut (via logerrit)
 icon-themes/breeze/chart2/res/barpercent_52x60.png |binary
 icon-themes/breeze/chart2/res/columnpercent_52x60.png  |binary
 icon-themes/breeze/chart2/res/donut3dexploded_52x60.png|binary
 icon-themes/breeze_dark/chart2/res/areas3d_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/areas_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/areasfull3d_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/areasfull_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/areaspiled3d_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/areaspiled_52x60.png|binary
 icon-themes/breeze_dark/chart2/res/bar3d_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/bar3ddeep_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/bar_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/barpercent3d_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/barpercent_52x60.png|binary
 icon-themes/breeze_dark/chart2/res/barstack3d_52x60.png|binary
 icon-themes/breeze_dark/chart2/res/barstack_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/bubble_52x60.png|binary
 icon-themes/breeze_dark/chart2/res/columnline_52x60.png|binary
 icon-themes/breeze_dark/chart2/res/columnpercent3d_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/columnpercent_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/columns3d_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/columns3ddeep_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/columns_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/columnstack3d_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/columnstack_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/columnstackline_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/cone_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/conedeep_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/conehori_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/conehorideep_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/conehoripercent_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/conehoristack_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/conepercent_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/conestack_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/cylinder_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/cylinderdeep_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/cylinderhori_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/cylinderhorideep_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/cylinderhoriprocent_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/cylinderhoristack_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/cylinderpercent_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/cylinderstack_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/donut3d_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/donut3dexploded_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/donut_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/donutexploded_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/errorbothhori_30.png|binary
 icon-themes/breeze_dark/chart2/res/errorbothverti_30.png   |binary
 icon-themes/breeze_dark/chart2/res/errordown_30.png|binary
 icon-themes/breeze_dark/chart2/res/errorleft_30.png|binary
 icon-themes/breeze_dark/chart2/res/errorright_30.png   |binary
 icon-themes/breeze_dark/chart2/res/errorup_30.png  |binary
 icon-themes/breeze_dark/chart2/res/net_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/netfill_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/netlinepoint_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/netlinepointstack_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/netpoint_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/netpointstack_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/netstack_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/netstackfill_52x60.png  |binary
 icon-themes/breeze_dark/chart2/res/nostackdirect3d_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/nostackdirectboth_52x60.png |binary
 icon-themes/breeze_dark/chart2/res/nostackdirectlines_52x60.png|binary
 icon-themes/breeze_dark/chart2/res/nostackdirectpoints_52x60.png   |binary
 icon-themes/breeze_dark/chart2/res/nostacksmooth3d_52x60.png   |binary
 

[Libreoffice-bugs] [Bug 126796] Percent Stacked image in Chart Wizard is wrong for most Icon styles

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

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

https://git.libreoffice.org/core/commit/5d0bfad6c9e8200f90e02da749b71eff04a0794d

Breeze & Sifr: fix for tdf#126796 wrong percent stacked chart images

It will be available in 6.4.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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

[Libreoffice-bugs] [Bug 128487] New: Eng-US forces Libreoffice to use Letter paper size instead of A4

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

Bug ID: 128487
   Summary: Eng-US forces Libreoffice to use Letter paper size
instead of A4
   Product: LibreOffice
   Version: 6.4.0.0.alpha1+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kbs.offic...@gmail.com

Description:
Using language option Eng-US causes Libreoffice to assume Letter paper size.
There are very many users who need to use Eng-US for UI and spellchecking who
for a variety of reasons need to use metric and very importantly A4 size paper.
Using Eng-UK is not a valid option for many reasons. Using some other country's
version of English would be a trial and error process that doesn't work in an
office environment where the company needs to provide computers to employees
who then need to trust that the IT department already set it up correctly. On
Linux systems there is an easy way to get around this but on Windows 10 systems
there is no easy way to do this.  Please create an option to use Eng-US
language option with Metric and must more importantly A4 paper size. 

Actual Results:
Eng-US forces us to use Letter paper size.

Expected Results:
We should be ale to switch to a4.


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit 7c059125f7bc076f7055ae8bc9fbfb65735daaad
Author: Olivier Hallot 
AuthorDate: Wed Oct 30 21:15:22 2019 -0300
Commit: Gerrit Code Review 
CommitDate: Thu Oct 31 01:21:20 2019 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - Update icon replacement table in XSLT

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

diff --git a/helpcontent2 b/helpcontent2
index 2ba8d7ab8af8..ce502938b6ee 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 2ba8d7ab8af821da34117ecb61bf8bd87e731b53
+Subproject commit ce502938b6ee2e2e0ca1e8b9bf0c1f75ddf9c4a2
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit 33da9d55299e8d585f67a90b2829d0e75dfa6b78
Author: Olivier Hallot 
AuthorDate: Wed Oct 30 15:59:18 2019 -0300
Commit: Gerrit Code Review 
CommitDate: Thu Oct 31 01:21:01 2019 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - tdf#127716 Add GlobalScope object description

Also add BasicLibraries and DialogLibraries
Refactor page
Add entry in tree

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

diff --git a/helpcontent2 b/helpcontent2
index ec3711dbe4d9..2ba8d7ab8af8 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit ec3711dbe4d9cee407cbf7e6707cfaf15860c490
+Subproject commit 2ba8d7ab8af821da34117ecb61bf8bd87e731b53
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] help.git: help3xsl/links.txt.xsl

2019-10-30 Thread Olivier Hallot (via logerrit)
 help3xsl/links.txt.xsl |   11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

New commits:
commit ce502938b6ee2e2e0ca1e8b9bf0c1f75ddf9c4a2
Author: Olivier Hallot 
AuthorDate: Wed Oct 30 21:15:22 2019 -0300
Commit: Olivier Hallot 
CommitDate: Thu Oct 31 01:21:20 2019 +0100

Update icon replacement table in XSLT

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

diff --git a/help3xsl/links.txt.xsl b/help3xsl/links.txt.xsl
index 7a8cbada1..05100239f 100644
--- a/help3xsl/links.txt.xsl
+++ b/help3xsl/links.txt.xsl
@@ -380,9 +380,9 @@
 cmd/lc_closepreview.png
 cmd/sc_closepreview.png
 cmd/lc_closedoc.png
-cmd/lc_closedoc.png
+cmd/lc_closepreview.png
 cmd/sc_closedoc.png
-cmd/sc_closedoc.png
+cmd/sc_closepreview.png
 cmd/lc_cancel.png
 cmd/sc_cancel.png
 cmd/sc_cancel.png
@@ -1045,7 +1045,7 @@
 sw/res/sc20234.png
 cmd/sc_ok.png
 cmd/sc_dbviewtablenames.png
-cmd/sc_dataranges.png
+cmd/sc_label.png
 cmd/sc_viewdatasourcebrowser.png
 cmd/sc_insertgraphic.png
 cmd/sc_insertobject.png
@@ -1312,14 +1312,11 @@
 cmd/sc_inserthyperlinkcontrol.png
 cmd/sc_insertbookmark.png
 cmd/sc_copy.png
-cmd/sc_insertdraw.png
-cmd/sc_insertbookmark.png
-cmd/sc_save.png
+cmd/sc_dataimport.png
 cmd/sc_navigator.png
 cmd/sc_dbviewfunctions.png
 cmd/sc_cancel.png
 cmd/sc_ok.png
-cmd/sc_dataimport.png
 cmd/sc_controlcodes.png
 cmd/sc_charfontname.png
 cmd/sc_insertframe.png
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 127716] Add GlobalScope & BasicLibraries UNO object help pages

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

--- Comment #2 from Commit Notification 
 ---
Olivier Hallot committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/2ba8d7ab8af821da34117ecb61bf8bd87e731b53

tdf#127716 Add GlobalScope object description

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

[Libreoffice-bugs] [Bug 127716] Add GlobalScope & BasicLibraries UNO object help pages

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.4.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] help.git: source/auxiliary source/text

2019-10-30 Thread Olivier Hallot (via logerrit)
 source/auxiliary/sbasic.tree  |3 +
 source/text/sbasic/shared/03131900.xhp|   47 ++
 source/text/sbasic/shared/03132200.xhp|6 +--
 source/text/sbasic/shared/uno_objects.xhp |2 +
 4 files changed, 24 insertions(+), 34 deletions(-)

New commits:
commit 2ba8d7ab8af821da34117ecb61bf8bd87e731b53
Author: Olivier Hallot 
AuthorDate: Wed Oct 30 15:59:18 2019 -0300
Commit: Olivier Hallot 
CommitDate: Thu Oct 31 01:21:01 2019 +0100

tdf#127716 Add GlobalScope object description

Also add BasicLibraries and DialogLibraries
Refactor page
Add entry in tree

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

diff --git a/source/auxiliary/sbasic.tree b/source/auxiliary/sbasic.tree
index 5a6fc17a2..cce09691c 100644
--- a/source/auxiliary/sbasic.tree
+++ b/source/auxiliary/sbasic.tree
@@ -60,6 +60,7 @@
 Asc 
Function
 AscW 
Function [VBA]
 Atn 
Function
+BasicLibraries
 Beep 
Statement
 Blue 
Function
 CBool 
Function
@@ -118,6 +119,7 @@
 DefLng 
Statement
 DefObj 
Statement
 DefVar 
Statement
+DialogLibraries
 DimArray Function
 Dim 
Statement
 Dir 
Function
@@ -274,6 +276,7 @@
 Switch 
Function
 SYD 
Function [VBA]
 Tan 
Function
+ThisComponent
 TimeSerial Function
 TimeValue Function
 Time 
Statement
diff --git a/source/text/sbasic/shared/03131900.xhp 
b/source/text/sbasic/shared/03131900.xhp
index ec885a29b..fbeb284fa 100644
--- a/source/text/sbasic/shared/03131900.xhp
+++ b/source/text/sbasic/shared/03131900.xhp
@@ -28,44 +28,29 @@
 Sun Microsystems, Inc.
 
 
-
 
 
 GlobalScope function
 library systems
 LibraryContainer
-BasicLibraries (LibraryContainer)
-DialogLibraries (LibraryContainer)
+GlobalScope
+BasicLibraries; library container
+DialogLibraries; library container
 
-GlobalScope
-Basic source 
code and dialogs are organized in a library system.
+GlobalScope
+To call a global 
library container (%PRODUCTNAME Macros or My Macros) 
from within a document, use the keyword 
GlobalScope.
 
-
-
-The 
LibraryContainer contains libraries
-
-
-Libraries can 
contain modules and dialogs
-
-
-In 
Basic:
-
-
-The 
LibraryContainer is called BasicLibraries.
-
-
-In 
dialogs:
-
-
-The 
LibraryContainer is called DialogLibraries.
-
-
-Both 
LibraryContainers exist in an application level and within every document. In 
the document Basic, the document's LibraryContainers are called automatically. 
If you want to call the global LibraryContainers from within a document, you 
must use the keyword GlobalScope.
-Syntax:
-
-GlobalScope
-
-Example:
+
+Basic 
source code and dialogs are organized in library containers. Libraries can 
contain modules and dialogs.
+
+In Basic:
+A Basic 
library is called with BasicLibraries keyword.
+In dialogs:
+A dialog 
library is called with DialogLibraries keyword.
+Both 
containers exist in an application level and within every document. In the 
document Basic, the document's library containers are called automatically. If 
you want to call a global library container (located in %PRODUCTNAME 
Macros or My Macros) from within a document, you must use 
the keyword GlobalScope.
+
+GlobalScope
+
 Example in the 
document Basic
 
 ' calling 
Dialog1 in the document library Standard
diff --git a/source/text/sbasic/shared/03132200.xhp 
b/source/text/sbasic/shared/03132200.xhp
index a4f19ddae..6c53deb3b 100644
--- a/source/text/sbasic/shared/03132200.xhp
+++ b/source/text/sbasic/shared/03132200.xhp
@@ -20,7 +20,7 @@
 
 
   
-ThisComponent Statement
+ThisComponent Object
 /text/sbasic/shared/03132200.xhp
   
 
@@ -28,10 +28,10 @@
 
 
 
-  ThisComponent property
+  ThisComponent object
   components;addressing
 
-ThisComponent Statement
+ThisComponent Object
 Addresses the 
active component so that its properties can be read and set. ThisComponent is 
used from document Basic, where it represents the document the Basic belongs 
to. The type of object accessed by ThisComponent depends on the document 
type.see i60932
 
 
diff --git a/source/text/sbasic/shared/uno_objects.xhp 
b/source/text/sbasic/shared/uno_objects.xhp
index 1b671523a..760fcd8f5 100644
--- a/source/text/sbasic/shared/uno_objects.xhp
+++ b/source/text/sbasic/shared/uno_objects.xhp
@@ -36,6 +36,8 @@
 
 
 
+BasicLibrearies and DialogLibraries
+
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

[Libreoffice-commits] core.git: cui/source cui/uiconfig include/svx sd/inc sd/source

2019-10-30 Thread Muhammet Kara (via logerrit)
 cui/source/inc/page.hxx   |1 +
 cui/source/tabpages/page.cxx  |5 +
 cui/uiconfig/ui/pageformatpage.ui |6 +++---
 include/svx/strings.hrc   |3 +++
 include/svx/svxids.hrc|4 +++-
 sd/inc/sdabstdlg.hxx  |2 +-
 sd/inc/strings.hrc|1 +
 sd/source/ui/dlg/dlgpage.cxx  |   16 +++-
 sd/source/ui/dlg/sddlgfact.cxx|4 ++--
 sd/source/ui/dlg/sddlgfact.hxx|2 +-
 sd/source/ui/func/fupage.cxx  |4 +++-
 sd/source/ui/inc/dlgpage.hxx  |3 ++-
 12 files changed, 40 insertions(+), 11 deletions(-)

New commits:
commit 57ba3d1d16df86d2393a8110620738e57265e19c
Author: Muhammet Kara 
AuthorDate: Wed Oct 30 19:49:57 2019 +0300
Commit: Muhammet Kara 
CommitDate: Thu Oct 31 01:02:02 2019 +0100

tdf#84257: Consistent 'slide' naming in Impress UI

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

diff --git a/cui/source/inc/page.hxx b/cui/source/inc/page.hxx
index 04648e4342ac..1019a9fbc214 100644
--- a/cui/source/inc/page.hxx
+++ b/cui/source/inc/page.hxx
@@ -109,6 +109,7 @@ private:
 // layout settings
 std::unique_ptr m_xPageText;
 std::unique_ptr m_xLayoutBox;
+std::unique_ptr m_xNumberFormatText;
 std::unique_ptr m_xNumberFormatBox;
 //Extras Calc
 std::unique_ptr m_xTblAlignFT;
diff --git a/cui/source/tabpages/page.cxx b/cui/source/tabpages/page.cxx
index 9ba650f5ffea..99d1fcb67bcd 100644
--- a/cui/source/tabpages/page.cxx
+++ b/cui/source/tabpages/page.cxx
@@ -164,6 +164,7 @@ SvxPageDescPage::SvxPageDescPage(weld::Container* pPage, 
weld::DialogController*
 , m_xBottomMarginEdit(m_xBuilder->weld_metric_spin_button("spinMargBot", 
FieldUnit::CM))
 , m_xPageText(m_xBuilder->weld_label("labelPageLayout"))
 , m_xLayoutBox(m_xBuilder->weld_combo_box("comboPageLayout"))
+, m_xNumberFormatText(m_xBuilder->weld_label("labelPageNumbers"))
 , m_xNumberFormatBox(new 
SvxPageNumberListBox(m_xBuilder->weld_combo_box("comboLayoutFormat")))
 , m_xTblAlignFT(m_xBuilder->weld_label("labelTblAlign"))
 , m_xHorzBox(m_xBuilder->weld_check_button("checkbuttonHorz"))
@@ -1524,6 +1525,7 @@ void SvxPageDescPage::PageCreated(const SfxAllItemSet& 
aSet)
 const SfxUInt16Item* pPaperEndItem = aSet.GetItem(SID_PAPER_END, false);
 const SfxStringListItem* pCollectListItem = 
aSet.GetItem(SID_COLLECT_LIST, false);
 const SfxBoolItem* pSupportDrawingLayerFillStyleItem = 
aSet.GetItem(SID_DRAWINGLAYER_FILLSTYLES, false);
+const SfxBoolItem* pIsImpressDoc = 
aSet.GetItem(SID_IMPRESS_DOC, false);
 
 if (pModeItem)
 {
@@ -1546,6 +1548,9 @@ void SvxPageDescPage::PageCreated(const SfxAllItemSet& 
aSet)
 
 mbEnableDrawingLayerFillStyles = bNew;
 }
+
+if (pIsImpressDoc)
+m_xNumberFormatText->set_label(SvxResId(STR_SLIDE_NUMBERS));
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/cui/uiconfig/ui/pageformatpage.ui 
b/cui/uiconfig/ui/pageformatpage.ui
index 61ae2fca7fe1..0135d61e7457 100644
--- a/cui/uiconfig/ui/pageformatpage.ui
+++ b/cui/uiconfig/ui/pageformatpage.ui
@@ -517,11 +517,11 @@
   
 
 
-  
+  
 True
 False
 True
-Page numbers:
+Page numbers:
 True
 comboLayoutFormat
 0
@@ -753,7 +753,7 @@ Do you still want to apply these settings?
 
   
   
-  
+  
   
 
   
diff --git a/include/svx/strings.hrc b/include/svx/strings.hrc
index 2ad744afa29e..d6d8c510ec03 100644
--- a/include/svx/strings.hrc
+++ b/include/svx/strings.hrc
@@ -1388,6 +1388,9 @@
 
 #define STR_COLORTABLE  
NC_("STR_COLORTABLE", "Color Palette")
 
+// Used in the Slide Setup dialog of Impress
+#define STR_SLIDE_NUMBERS   
NC_("STR_SLIDE_NUMBERS", "Slide numbers:")
+
 // String for saving modified image (instead of original)
 #define RID_SVXSTR_SAVE_MODIFIED_IMAGE  
NC_("RID_SVXSTR_SAVE_MODIFIED_IMAGE", "The image has been modified. By default 
the original image will be saved.\nDo you want to save the modified version 
instead?")
 
diff --git a/include/svx/svxids.hrc b/include/svx/svxids.hrc
index 1045ec364044..28d95b7ff6dd 100644
--- a/include/svx/svxids.hrc
+++ b/include/svx/svxids.hrc
@@ -987,8 +987,10 @@ class SvxSetItem;
 #define SID_EDIT_QRCODE ( SID_SVX_START + 1192 
)
 #define SID_COPY_HYPERLINK_LOCATION ( SID_SVX_START + 1193 
)
 
+#define SID_IMPRESS_DOC 
TypedWhichId( SID_SVX_START + 1194 )
+
 // IMPORTANT NOTE: 

[Libreoffice-bugs] [Bug 107280] [META] Issues related to the shared code between Impress and Draw

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

Bug 84257 Summary: Menus, dialogs and sidebar having the word 'page' rather 
than 'slide'
https://bugs.documentfoundation.org/show_bug.cgi?id=84257

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 107817] [META] Impress UI/UX bugs and enhancements

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

Bug 84257 Summary: Menus, dialogs and sidebar having the word 'page' rather 
than 'slide'
https://bugs.documentfoundation.org/show_bug.cgi?id=84257

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 92406] STATUSBAR: Making the statusbar configurable in Writer

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

--- Comment #13 from Ron Johnson  ---
I agree with Tom Colley in comment #7.  Being able to hide items that are of no
use to me (which would make items that I DO care about appear, since they
disappear when I use narrow windows) would be a great boon.

-- 
You are receiving this mail because:
You 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 92406] STATUSBAR: Making the statusbar configurable in Writer

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

--- Comment #13 from Ron Johnson  ---
I agree with Tom Colley in comment #7.  Being able to hide items that are of no
use to me (which would make items that I DO care about appear, since they
disappear when I use narrow windows) would be a great boon.

-- 
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 126872] Textbox: Cannot change "Line color" or "Fill color" through toolbar buttons

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

Gerhard Weydt  changed:

   What|Removed |Added

 CC||gerhard.we...@t-online.de

--- Comment #2 from Gerhard Weydt  ---
I think this is the normal behaviour, it's the same in Writer and Calc (and
Draw, but that's no surprise).
The reason is that there is a second attribute for both the filling and the
line, namely Line style and Area style/Filling, which are set to "- none -" and
"None", respectively, in the case of a text field. You must set these to
"continuous" (for example) and "Color", to be able to see the line and fill
color you set. Do it before you set the color!
Unfortunately, the line and filling toolbar seems not to be active
automatically for Impress, otherwise you would have noticed that. Instead of
activating this toolbar, you can also use the context menu, or Format -> Object
and shape, where you can also set these attributes via the menu entries Line
and Area.
So the problem boils down to a possible request that the two symbols in the
Drawing toolbar should be inactive if the second attributes named above have
these none attributes.
I propose that you set the status to RESOLVED and WORKSFORME or NOTABUG, and
file a new bug with importance "enhancement" for the suggested request, if you
think it worthwhile.

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

[Libreoffice-bugs] [Bug 128479] New SpellNumber function

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

m.a.riosv  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from m.a.riosv  ---
The option is implemented, try
=TEXT(2;"[NatNum12 cardinal]0")

Look at the end of the page
https://help.libreoffice.org/6.3/en-US/text/shared/01/05020301.html?DbPAR=SHARED#bm_id3153514
Released notes for 6.1
https://wiki.documentfoundation.org/ReleaseNotes/6.1#New_.E2.80.9Cspell_out.E2.80.9D_NatNum_modifier

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

[Libreoffice-bugs] [Bug 90921] FOOTNOTES: Allow to place footnotes at the bottom of the text

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|REOPENED|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 90921] FOOTNOTES: Allow to place footnotes at the bottom of the text

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

--- Comment #21 from V Stuart Foote  ---
Created attachment 155413
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155413=edit
text (double spaced) and reflinked footnotes into a single section

You are missing something... and, the attachment here has your latest text and
referenced footnotes copied to a new document into a single section 'Collect
footnotes at end of text', and paragraphs formatted with double line space.

Within a section with appropriate formatting it works as requested. The
footnotes are collected on the page their reflink occurs in text, and can run
over to the next page if not enough room to hold the footnote.

Back => WFM

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

[Libreoffice-bugs] [Bug 91219] FILESAVE: Crash when anchoring a shape with a textbox to a frame that is anchored to that shape

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

--- Comment #8 from sdc.bla...@youmail.dk ---
Here is link for the 6.3.3.1 crashreport from comment #7

http://crashreport.libreoffice.org/stats/crash_details/d5ac2352-5b03-4ca8-ba39-0a4f1bce6e00

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

[Libreoffice-bugs] [Bug 62851] UI: Shapes without name cannot be selected via Navigator

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

Muhammet Kara  changed:

   What|Removed |Added

 CC||muhammet.k...@collabora.com

--- Comment #13 from Muhammet Kara  ---
After taking a quick look into this, I would see it as a real bug rather than
an enhancement request.

Dev notes for anyone interested to take this on:

The unnamed shapes cannot be selected because the inner implementation uses the
shape name as a reference, and constructs & uses a bookmark out of it. So if a
shape is unnamed, it is displayed with a name like "Shape X", which is not
actually its name, and this results in a broken link/bookmark.

One of the possible solutions might be sending the pointer of the object (after
converting it into a string, and wrapping in an SfxStringItem) instead of its
name. And getting the pointer to the object at the destination, by converting
it back to a pointer.

This is where the bookmark is constructed: sd/source/ui/view/drviewsd.cxx:124
(else if (nSId == SID_NAVIGATOR_OBJECT))

You may check sfx2/source/doc/autoredactdialog.cxx for examples of the pointer
mechanics described above. (grep/search for toInt64(), and OUString::number
inside the source file)

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

[Libreoffice-ux-advise] [Bug 62851] UI: Shapes without name cannot be selected via Navigator

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

Muhammet Kara  changed:

   What|Removed |Added

 CC||muhammet.k...@collabora.com

--- Comment #13 from Muhammet Kara  ---
After taking a quick look into this, I would see it as a real bug rather than
an enhancement request.

Dev notes for anyone interested to take this on:

The unnamed shapes cannot be selected because the inner implementation uses the
shape name as a reference, and constructs & uses a bookmark out of it. So if a
shape is unnamed, it is displayed with a name like "Shape X", which is not
actually its name, and this results in a broken link/bookmark.

One of the possible solutions might be sending the pointer of the object (after
converting it into a string, and wrapping in an SfxStringItem) instead of its
name. And getting the pointer to the object at the destination, by converting
it back to a pointer.

This is where the bookmark is constructed: sd/source/ui/view/drviewsd.cxx:124
(else if (nSId == SID_NAVIGATOR_OBJECT))

You may check sfx2/source/doc/autoredactdialog.cxx for examples of the pointer
mechanics described above. (grep/search for toInt64(), and OUString::number
inside the source file)

-- 
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: libreofficekit/source

2019-10-30 Thread Ashod Nakashian (via logerrit)
 libreofficekit/source/gtk/lokdocview.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 369eac81d4a5aa629762d04f1a9b9696ffec8f1f
Author: Ashod Nakashian 
AuthorDate: Mon Jul 29 09:21:27 2019 -0400
Commit: Michael Meeks 
CommitDate: Wed Oct 30 22:50:46 2019 +0100

gtktiledviewer: always load with en-US language

This is the default for Online, so makes sense
to have the same in the gtktiledviewer as well.

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

diff --git a/libreofficekit/source/gtk/lokdocview.cxx 
b/libreofficekit/source/gtk/lokdocview.cxx
index 122c6dcc4149..0e710d5faf27 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -2227,7 +2227,7 @@ openDocumentInThread (gpointer data)
 }
 
 priv->m_pOffice->pClass->registerCallback(priv->m_pOffice, 
globalCallbackWorker, pDocView);
-priv->m_pDocument = priv->m_pOffice->pClass->documentLoad( 
priv->m_pOffice, priv->m_aDocPath.c_str() );
+priv->m_pDocument = priv->m_pOffice->pClass->documentLoadWithOptions( 
priv->m_pOffice, priv->m_aDocPath.c_str(), "en-US" );
 if ( !priv->m_pDocument )
 {
 char *pError = priv->m_pOffice->pClass->getError( priv->m_pOffice );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-10-30 Thread Ashod Nakashian (via logerrit)
 libreofficekit/source/gtk/lokdocview.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 19901a9795bdcf0673f67009d32509bec534c09b
Author: Ashod Nakashian 
AuthorDate: Mon Jul 29 09:21:27 2019 -0400
Commit: Michael Meeks 
CommitDate: Wed Oct 30 22:50:32 2019 +0100

gtktiledviewer: always load with en-US language

This is the default for Online, so makes sense
to have the same in the gtktiledviewer as well.

Change-Id: I8c4729aa301069e246554b06671ad86bbe50c441
Reviewed-on: https://gerrit.libreoffice.org/81777
Reviewed-by: Michael Meeks 
Tested-by: Michael Meeks 

diff --git a/libreofficekit/source/gtk/lokdocview.cxx 
b/libreofficekit/source/gtk/lokdocview.cxx
index 833c0c25d642..1e989d03f5ae 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -,7 +,7 @@ openDocumentInThread (gpointer data)
 }
 
 priv->m_pOffice->pClass->registerCallback(priv->m_pOffice, 
globalCallbackWorker, pDocView);
-priv->m_pDocument = priv->m_pOffice->pClass->documentLoad( 
priv->m_pOffice, priv->m_aDocPath.c_str() );
+priv->m_pDocument = priv->m_pOffice->pClass->documentLoadWithOptions( 
priv->m_pOffice, priv->m_aDocPath.c_str(), "en-US" );
 if ( !priv->m_pDocument )
 {
 char *pError = priv->m_pOffice->pClass->getError( priv->m_pOffice );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 113041] UI Busy indicator persists after Find all returns no key found

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

Muhammet Kara  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |muhammet.k...@collabora.com
   |desktop.org |

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

[Libreoffice-bugs] [Bug 91219] FILESAVE: Crash when anchoring a shape with a textbox to a frame that is anchored to that shape

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

--- Comment #7 from sdc.bla...@youmail.dk ---
(misunderstood the instructions before.) 

Can reproduce now both with:

Version: 6.3.3.1 (x64)
Build ID: f41f4c7f9507aeca13cb9df51f34d80e8ba30a99
CPU threads: 8; OS: Windows 10.0; UI render: default; VCL: win; 

and

Version: 6.4.0.0.alpha1 (x64)
Build ID: cc57df8f942f239d29cb575ea5a7cb01405db787
CPU threads: 8; OS: Windows 10.0 Build 18362; UI render: GL; VCL: win; 
Locale: en-US (en_DK); UI-Language: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 128486] CPU consumption on rpi4

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

--- Comment #1 from Pan Ther  ---
soffice.bin use all the ressource of CPU core

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

[Libreoffice-bugs] [Bug 128486] New: CPU consumption on rpi4

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

Bug ID: 128486
   Summary: CPU consumption on rpi4
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: ARM
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: panther50...@hotmail.com

Description:
Hi, I use libreoffice on raspberry pi 4 and raspbian and after a while, when
openoffice is minimilized one core of the CPU is at 100%.

Steps to Reproduce:
1.open libreoffice-writer
2.minimized it
3.wait 10-15 mins

Actual Results:
1.open libreoffice-writer
2.minimized it
3.wait 10-15 mins

Expected Results:
one core of the CPU is at 100%


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-bugs] [Bug 103164] [META] Footnote and Endnote bugs and enhancements

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

Bug 90921 Summary: FOOTNOTES: Allow to place footnotes at the bottom of the text
https://bugs.documentfoundation.org/show_bug.cgi?id=90921

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---

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

[Libreoffice-bugs] [Bug 90921] FOOTNOTES: Allow to place footnotes at the bottom of the text

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

ad...@email.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---

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

[Libreoffice-bugs] [Bug 128438] Writer: Cannot remove tab marks in paragraph using the Paragraph dialog

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

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #6 from Dieter Praas  ---
(In reply to Eduardo Sanchez from comment #5)
> Hi Dieter:
> That is exactly the same behavior.

=> NEW

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

[Libreoffice-bugs] [Bug 128443] when using master document, images in inserted documents do not appear and aren't exported

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

--- Comment #9 from erikmjac...@gmail.com  ---
I was asking about the settings, not the specific image used.

I am wondering if this is an "anchor to page" problem.

If you are just using plain image insert, IIRC that results in "anchor as
character" or something to that effect.

Can you double check what type of anchoring and other settings you are using
specifically on the image that you are not seeing a problem?

Or, open my files and make sure to match the anchoring and etc. in the document
you create.

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

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

2019-10-30 Thread Miklos Vajna (via logerrit)
 sw/qa/extras/ooxmlexport/data/tdf125038b.docx |binary
 sw/qa/extras/ooxmlexport/ooxmlexport14.cxx|   17 +
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |   15 +++
 3 files changed, 32 insertions(+)

New commits:
commit 97f9af714ea1c46e498fa99f7ca34fc1708d38a6
Author: Miklos Vajna 
AuthorDate: Wed Oct 30 16:02:35 2019 +0100
Commit: Miklos Vajna 
CommitDate: Wed Oct 30 22:02:15 2019 +0100

Related: tdf#125038 DOCX import: fix unexpected linebreak inside IF 
condition

Writer body text is expected to only contain the result of the field. So
in case both the field command and the field result contains a
linebreak, we need to make sure that linebreaks are ignored in the field
command for field types where the Writer field implementation expects a
single string.

With this, the number of paragraphs in the bugdoc is now correct.

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

diff --git a/sw/qa/extras/ooxmlexport/data/tdf125038b.docx 
b/sw/qa/extras/ooxmlexport/data/tdf125038b.docx
new file mode 100644
index ..3aa189daded8
Binary files /dev/null and b/sw/qa/extras/ooxmlexport/data/tdf125038b.docx 
differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
index 6dd91d44960a..82237bffa368 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
@@ -49,6 +49,23 @@ DECLARE_OOXMLIMPORT_TEST(testTdf125038, "tdf125038.docx")
 CPPUNIT_ASSERT_EQUAL(OUString("phone: \t1234567890"), aActual);
 }
 
+DECLARE_OOXMLIMPORT_TEST(testTdf125038b, "tdf125038b.docx")
+{
+// Load a document with an IF field, where the IF field command contains a 
paragraph break.
+uno::Reference xTextDocument(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xParagraphAccess(xTextDocument->getText(), uno::UNO_QUERY);
+uno::Reference xParagraphs = 
xParagraphAccess->createEnumeration();
+CPPUNIT_ASSERT(xParagraphs->hasMoreElements());
+xParagraphs->nextElement();
+CPPUNIT_ASSERT(xParagraphs->hasMoreElements());
+xParagraphs->nextElement();
+
+// Without the accompanying fix in place, this test would have failed with:
+// - Expression: !xParagraphs->hasMoreElements()
+// i.e. the document had 3 paragraphs, while only 2 was expected.
+CPPUNIT_ASSERT(!xParagraphs->hasMoreElements());
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 276f408451f3..c0492804e119 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -1250,6 +1250,21 @@ void DomainMapper_Impl::finishParagraph( const 
PropertyMapPtr& pPropertyMap, con
 {
 if (m_bDiscardHeaderFooter)
 return;
+
+if (!m_aFieldStack.empty())
+{
+FieldContextPtr pFieldContext = m_aFieldStack.back();
+if (pFieldContext && !pFieldContext->IsCommandCompleted())
+{
+std::vector aCommandParts = 
pFieldContext->GetCommandParts();
+if (!aCommandParts.empty() && aCommandParts[0] == "IF")
+{
+// Conditional text field conditions don't support linebreaks 
in Writer.
+return;
+}
+}
+}
+
 #ifdef DBG_UTIL
 TagLogger::getInstance().startElement("finishParagraph");
 #endif
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126785] All libreoffice programs are duplicating the inputs

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

--- Comment #34 from Victor Silva  ---
Just found a anther report on the manjaro forum with an important behaviour:
https://forum.manjaro.org/t/libreoffice-double-typing/83379/19

Quoting:
"Just to add: I'm also using the Brazilian locale and had this problem since I
was previously using Antergos, when libreoffice-fresh was 6.2. At the time, my
workaround was to install libreoffice-still, which was 6.1.
Recently I tried again with Manjaro, Plasma, and the issue does happen every
time.
I then installed some other DE to test - Budgie. If i login to Budgie, the
error is not present.
The funny thing is that after logging into Budgie, if I logout and login to
Plasma, the issue is gone. But, rebooting the PC and logging in to Plasma again
shows the issue again.
As a workaround I've switched to Gnome, but I want to use Plasma again!
Will try those env variables."

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

[Libreoffice-bugs] [Bug 126324] PPTX: FILEOPEN: what's shown as a past year in MSO is shown as today's date in LO

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

--- Comment #15 from Jean-Baptiste Faure  ---
(In reply to Xisco Faulí from comment #12)
> [...]
> At least we see the unittest works xD.

Indeed :-)

> Pushed the fix to 6-3 too

Thank you very much. Build OK now.

Best regards. JBF

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

[Libreoffice-bugs] [Bug 126785] All libreoffice programs are duplicating the inputs

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

--- Comment #33 from Victor Silva  ---
https://ask.libreoffice.org/en/question/192896/double-letters-in-manjaro/

At this point I believe this is a manjaro issue. But what?

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

[Libreoffice-bugs] [Bug 128485] New: Writer cannot track changes made to equations

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

Bug ID: 128485
   Summary: Writer cannot track changes made to equations
   Product: LibreOffice
   Version: 6.3.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sab...@msn.com

Description:
Assume you have a document with text and equations and you are collaborating
with someone. When  he made change to the text I can see it. However, if he
made change to equation, There are two cases:
1-If the equation is edited using Libreoffice, I can see only the last version
of the equation and I cannot revert back to the old equation (reject changes). 
2-If the equation is edited using Microsoft word, I can see only the bracket of
the last version of the equation, but not the letters and symbols.

In summary, writer cannot track changes made to equations. 


Steps to Reproduce:
1. Open A new writer document
2. Write some text and equation.
3. Record changes (Review --> Record)
4. Edit the text and edit the equation.
5. Turn off the Recording (Review --> Record).
6. reject all changes.


Actual Results:
The text will revert back to what you wrote in step 2, however the equation
does not.

Expected Results:
The text and equation should return back to what you wrote in step 2.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
should keep track of changes to equations and record them and allow you to
reject changes made to text as well as "equations".

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

[Libreoffice-bugs] [Bug 91219] FILESAVE: Crash when anchoring a shape with a textbox to a frame that is anchored to that shape

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

--- Comment #6 from Buovjaga  ---
I can still repro with attachment 115492.

To be clear on what I did (and this is even one step less than in the desc):
I clicked the blue rectangle.
I clicked'n'dragged its anchor into the frame that says "test".
I saved the document.

Arch Linux 64-bit
Version: 6.4.0.0.alpha1+
Build ID: fa79e8df02a082cd4967bf7a1c61aa925dc7b101
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: kf5; 
Locale: fi-FI (fi_FI.UTF-8); UI-Language: en-US
Calc: threaded
Built on 30 October 2019

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

[Libreoffice-bugs] [Bug 128484] New: Writer Tools.Autocorrect.Apply and Apply and Edit changes doesn't work correctly

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

Bug ID: 128484
   Summary: Writer Tools.Autocorrect.Apply and Apply and Edit
changes doesn't work correctly
   Product: LibreOffice
   Version: 6.2.7.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: c6786...@urhen.com

Description:
This tool doesn't conform to Tools.Autocorrect.Autocorrect options. If only Use
replacement table is selected and all other options are deselected, it doesn't
apply all items in replacement table and it applies some styles, and not even
includes all style changes into list of changes (for Apply and Edit changes
command).

Steps to Reproduce:
1. Deselect all autocorrect options, except for Use replacement table
2. Add some item into replacement table for all languages, e.g. x to xx,
including one that changes => to special character ⇒
3. Write text with While typing checked to check if it works, e.g. x => x
4. Uncheck While typing and write the same text, e.g. x => x
5. Use command Tools.Autocorrect.Apply and Edit changes 

Actual Results:
xx => xx
Default style is changed to Text body style or Heading 3
list of changes contains only change from x to xx, but not style change

Expected Results:
xx ⇒ xx
without any changes in styles (should remain Default style)
all changes are in the list of changes


Reproducible: Always


User Profile Reset: No



Additional Info:

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

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

2019-10-30 Thread Caolán McNamara (via logerrit)
 vcl/source/window/builder.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 07d78b38fb9f62d533bf76f9d061134dc862438c
Author: Caolán McNamara 
AuthorDate: Wed Oct 30 10:40:13 2019 +
Commit: Caolán McNamara 
CommitDate: Wed Oct 30 21:05:28 2019 +0100

honour closeable flag

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

diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index 67f96160165b..1823601b5331 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -1748,9 +1748,11 @@ VclPtr VclBuilder::makeObject(vcl::Window 
*pParent, const OString &
 // WB_ALLOWMENUBAR because we don't know in advance if we will 
encounter
 // a menubar, and menubars need a BorderWindow in the toplevel, and
 // such border windows need to be in created during the dialog ctor
-WinBits nBits = WB_MOVEABLE|WB_3DLOOK|WB_CLOSEABLE|WB_ALLOWMENUBAR;
+WinBits nBits = WB_MOVEABLE|WB_3DLOOK|WB_ALLOWMENUBAR;
 if (extractResizable(rMap))
 nBits |= WB_SIZEABLE;
+if (extractCloseable(rMap))
+nBits |= WB_CLOSEABLE;
 Dialog::InitFlag eInit = !pParent ? Dialog::InitFlag::NoParent : 
Dialog::InitFlag::Default;
 if (name == "GtkAssistant")
 xWindow = VclPtr::Create(pParent, nBits, 
eInit);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128051] PRINTING: Epson XP-455 prints images but not text

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

--- Comment #4 from Doug Bainbridge  ---
6.3.2 has the same problem, alas.

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

[Libreoffice-bugs] [Bug 128470] Export PDF always produces blank PDF

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

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

   What|Removed |Added

 Blocks||102495


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102495
[Bug 102495] [META] KDE VCL backend 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

  1   2   3   4   >