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

2021-01-30 Thread Mike Kaganski (via logerrit)
 cppu/source/typelib/typelib.cxx |   55 
 1 file changed, 23 insertions(+), 32 deletions(-)

New commits:
commit 0752de6850e4396a0138428d7ced2287a4902874
Author: Mike Kaganski 
AuthorDate: Sat Jan 30 19:20:32 2021 +0100
Commit: Mike Kaganski 
CommitDate: Sun Jan 31 08:43:21 2021 +0100

Don't use global mutex here for local mutex initialization

Change-Id: I06b0856ac5559aca472daf241771a2ef57b44912
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110147
Tested-by: Mike Kaganski 
Reviewed-by: Mike Kaganski 

diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx
index 85a393534f07..b5f960aa345a 100644
--- a/cppu/source/typelib/typelib.cxx
+++ b/cppu/source/typelib/typelib.cxx
@@ -175,10 +175,6 @@ struct TypeDescriptor_Init_Impl
 std::unique_ptr pCallbacks;
 // A cache to hold descriptions
 std::unique_ptr pCache;
-// The mutex to guard all type library accesses
-std::unique_ptr  pMutex;
-
-inline Mutex & getMutex();
 
 inline void callChain( typelib_TypeDescription ** ppRet, rtl_uString * 
pName );
 
@@ -201,17 +197,6 @@ struct TypeDescriptor_Init_Impl
 
 }
 
-inline Mutex & TypeDescriptor_Init_Impl::getMutex()
-{
-if( !pMutex )
-{
-MutexGuard aGuard( Mutex::getGlobalMutex() );
-if( !pMutex )
-pMutex.reset(new Mutex());
-}
-return * pMutex;
-}
-
 inline void TypeDescriptor_Init_Impl::callChain(
 typelib_TypeDescription ** ppRet, rtl_uString * pName )
 {
@@ -295,7 +280,13 @@ TypeDescriptor_Init_Impl::~TypeDescriptor_Init_Impl()
 pCallbacks.reset();
 };
 
-namespace { struct Init : public rtl::Static< TypeDescriptor_Init_Impl, Init > 
{}; }
+namespace
+{
+// The mutex to guard all type library accesses, goes before Init to be 
available in its dtor
+osl::Mutex s_Mutex;
+
+struct Init : public rtl::Static< TypeDescriptor_Init_Impl, Init > {};
+}
 
 extern "C" void SAL_CALL typelib_typedescription_registerCallback(
 void * pContext, typelib_typedescription_Callback pCallback )
@@ -303,7 +294,7 @@ extern "C" void SAL_CALL 
typelib_typedescription_registerCallback(
 {
 // todo mt safe: guard is no solution, can not acquire while calling 
callback!
 TypeDescriptor_Init_Impl  = Init::get();
-//  OslGuard aGuard( rInit.getMutex() );
+//  OslGuard aGuard( s_Mutex );
 if( !rInit.pCallbacks )
 rInit.pCallbacks.reset(new CallbackSet_Impl);
 rInit.pCallbacks->push_back( CallbackEntry( pContext, pCallback ) );
@@ -318,7 +309,7 @@ extern "C" void SAL_CALL 
typelib_typedescription_revokeCallback(
 if( rInit.pCallbacks )
 {
 // todo mt safe: guard is no solution, can not acquire while calling 
callback!
-//  OslGuard aGuard( rInit.getMutex() );
+//  OslGuard aGuard( s_Mutex );
 CallbackEntry aEntry( pContext, pCallback );
 rInit.pCallbacks->erase(std::remove(rInit.pCallbacks->begin(), 
rInit.pCallbacks->end(), aEntry),
 rInit.pCallbacks->end());
@@ -351,7 +342,7 @@ static void typelib_typedescription_initTables(
 }
 }
 
-MutexGuard aGuard( Init::get().getMutex() );
+MutexGuard aGuard(s_Mutex);
 if( pTD->bComplete )
 return;
 
@@ -465,7 +456,7 @@ bool complete(typelib_TypeDescription ** ppTypeDescr, bool 
initTables) {
 OSL_ASSERT( pTD == *ppTypeDescr ); // has to merge into existing 
one
 
 // insert into the cache
-MutexGuard aGuard( rInit.getMutex() );
+MutexGuard aGuard(s_Mutex);
 if( !rInit.pCache )
 rInit.pCache.reset( new TypeDescriptionList_Impl );
 if( static_cast(rInit.pCache->size()) >= nCacheSize )
@@ -1364,7 +1355,7 @@ extern "C" void SAL_CALL typelib_typedescription_release(
 if( pTD->pWeakRef )
 {
 {
-MutexGuard aGuard( rInit.getMutex() );
+MutexGuard aGuard(s_Mutex);
 // remove this description from the weak reference
 pTD->pWeakRef->pType = nullptr;
 }
@@ -1376,7 +1367,7 @@ extern "C" void SAL_CALL typelib_typedescription_release(
 // this description is a reference too, so remove it from the hash 
table
 if( rInit.pWeakMap )
 {
-MutexGuard aGuard( rInit.getMutex() );
+MutexGuard aGuard(s_Mutex);
 WeakMap_Impl::iterator aIt = rInit.pWeakMap->find( 
pTD->pTypeName->buffer );
 if( aIt != rInit.pWeakMap->end() && static_cast((*aIt).second) == static_cast(pTD) )
 {
@@ -1426,7 +1417,7 @@ extern "C" void SAL_CALL typelib_typedescription_register(
 {
 // connect the description with the weak reference
 TypeDescriptor_Init_Impl  = Init::get();
-ClearableMutexGuard aGuard( rInit.getMutex() );
+ClearableMutexGuard aGuard(s_Mutex);
 
 typelib_TypeDescriptionReference * pTDR = nullptr;
 

[Libreoffice-bugs] [Bug 139664] After "back" the animation effect, the reproduction of the animation effect is broken.

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139664

Buovjaga  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEW |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-commits] core.git: Branch 'libreoffice-7-1' - icon-themes/sukapura icon-themes/sukapura_svg

2021-01-30 Thread Rizal Muttaqin (via logerrit)
 icon-themes/sukapura/links.txt| 5547 +-
 icon-themes/sukapura/svx/res/listview.png |binary
 icon-themes/sukapura_svg/svx/res/listview.svg |1 
 3 files changed, 2775 insertions(+), 2773 deletions(-)

New commits:
commit d7a0544c90767c618a7a0299a427ee906b5d6267
Author: Rizal Muttaqin 
AuthorDate: Sun Jan 31 10:34:26 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Sun Jan 31 07:39:23 2021 +0100

Sukapura: tdf#140026 new List View icon

Change-Id: I2793a8f36d357422e29d292ff9c19efad6daaf0c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110197
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/sukapura/links.txt b/icon-themes/sukapura/links.txt
index 9a16d6feb5aa..371368985ba8 100644
--- a/icon-themes/sukapura/links.txt
+++ b/icon-themes/sukapura/links.txt
@@ -1,2773 +1,2774 @@
-# avmedia
-# ==
-avmedia/res/av02048.png cmd/sc_open.png
-avmedia/res/av02049.png cmd/sc_runbasic.png
-avmedia/res/av02050.png cmd/sc_mediapause.png
-avmedia/res/av02051.png cmd/sc_basicstop.png
-avmedia/res/av02052.png cmd/sc_mediarepeat.png
-avmedia/res/av02053.png cmd/sc_ok.png
-avmedia/res/av02054.png cmd/sc_mediamute.png
-avmedia/res/avl02048.png cmd/lc_open.png
-avmedia/res/avl02049.png cmd/lc_runbasic.png
-avmedia/res/avl02050.png cmd/lc_mediapause.png
-avmedia/res/avl02051.png cmd/lc_basicstop.png
-avmedia/res/avl02052.png cmd/lc_mediarepeat.png
-avmedia/res/avl02053.png cmd/lc_ok.png
-avmedia/res/avl02054.png cmd/lc_mediamute.png
-
-# arrangement
-# ==
-cmd/32/objectbackone.png cmd/32/backward.png
-cmd/32/objectforwardone.png cmd/32/forward.png
-
-cmd/lc_objectbackone.png cmd/lc_backward.png
-cmd/lc_objectforwardone.png cmd/lc_forward.png
-
-cmd/sc_objectbackone.png cmd/sc_backward.png
-cmd/sc_objectforwardone.png cmd/sc_forward.png
-
-# chart2
-# ==
-chart2/res/dataeditor_icon01.png cmd/sc_insertrowsafter.png
-chart2/res/dataeditor_icon02.png cmd/sc_insertcolumnsafter.png
-chart2/res/dataeditor_icon03.png cmd/sc_deleterows.png
-chart2/res/dataeditor_icon04.png cmd/sc_deletecolumns.png
-chart2/res/selectrange.png formula/res/refinp1.png
-
-cmd/32/charttitlemenu.png cmd/32/toggletitle.png
-cmd/32/diagramaxisall.png cmd/32/diagramaxisxyz.png
-cmd/32/diagramaxismenu.png cmd/32/diagramaxis.png
-cmd/32/diagramgridmenu.png cmd/32/togglegridhorizontal.png
-cmd/32/insertmenuaxes.png cmd/32/diagramaxis.png
-cmd/32/insertmenugrids.png cmd/32/togglegridhorizontal.png
-cmd/32/insertmenulegend.png cmd/32/legend.png
-
-cmd/lc_charttitlemenu.png cmd/lc_toggletitle.png
-cmd/lc_diagramaxisall.png cmd/lc_diagramaxisxyz.png
-cmd/lc_diagramaxismenu.png cmd/lc_diagramaxis.png
-cmd/lc_diagramgridmenu.png cmd/lc_togglegridhorizontal.png
-cmd/lc_insertmenuaxes.png cmd/lc_diagramaxis.png
-cmd/lc_insertmenugrids.png cmd/lc_togglegridhorizontal.png
-cmd/lc_insertmenulegend.png cmd/lc_legend.png
-
-cmd/sc_charttitlemenu.png cmd/sc_toggletitle.png
-cmd/sc_diagramaxisall.png cmd/sc_diagramaxisxyz.png
-cmd/sc_diagramaxismenu.png cmd/sc_diagramaxis.png
-cmd/sc_diagramgridmenu.png cmd/sc_togglegridhorizontal.png
-cmd/sc_insertmenuaxes.png cmd/sc_diagramaxis.png
-cmd/sc_insertmenugrids.png cmd/sc_togglegridhorizontal.png
-cmd/sc_insertmenulegend.png cmd/sc_legend.png
-
-# cmd
-# ==
-
-# Add
-cmd/32/adddatefield.png cmd/32/datefield.png
-cmd/32/addons.png cmd/32/insertplugin.png
-
-cmd/lc_adddatefield.png cmd/lc_datefield.png
-cmd/lc_addons.png cmd/lc_insertplugin.png
-
-cmd/sc_adddatefield.png cmd/sc_datefield.png
-cmd/sc_addons.png cmd/sc_insertplugin.png
-
-# tooltips
-cmd/32/autoformatmenu.png cmd/32/autocorrectdlg.png
-cmd/32/showinlinetooltips.png cmd/32/shownote.png
-
-cmd/lc_autoformatmenu.png cmd/lc_autocorrectdlg.png
-cmd/lc_showinlinetooltips.png cmd/lc_shownote.png
-
-cmd/sc_autoformatmenu.png cmd/sc_autocorrectdlg.png
-cmd/sc_showinlinetooltips.png cmd/sc_shownote.png
-
-# Insert
-cmd/32/charactermenu.png cmd/32/fontdialog.png
-cmd/32/fieldmenu.png cmd/32/addfield.png
-cmd/32/graphicmenu.png cmd/32/avmediaplayer.png
-cmd/32/insertauthorfield.png cmd/32/dbviewaliases.png
-cmd/32/insertavmedia.png cmd/32/avmediaplayer.png
-cmd/32/insertctrl.png cmd/32/inserttable.png
-cmd/32/insertcurrencyfield.png cmd/32/currencyfield.png
-cmd/32/insertdatefield.png cmd/32/datefield.png
-cmd/32/insertedit.png cmd/32/edit.png
-cmd/32/insertfield.png cmd/32/addfield.png
-cmd/32/insertfilecontrol.png cmd/32/filecontrol.png
-cmd/32/insertfilefield.png cmd/32/filefield.png
-cmd/32/insertformattedfield.png cmd/32/formattedfield.png
-cmd/32/insertformcheck.png cmd/32/checkbox.png
-cmd/32/insertformcombo.png cmd/32/combobox.png
-cmd/32/insertformlist.png cmd/32/listbox.png
-cmd/32/insertformmenu.png cmd/32/choosecontrols.png
-cmd/32/insertformradio.png cmd/32/radiobutton.png

[Libreoffice-bugs] [Bug 139681] CALC AUTOFILL EDIT applies existing pattern inconsistently when source cell range contents are formulae

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139681

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 139685] Formatting changes to different style after deletion with recording track & changes & show changes enabled

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139685

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 139683] Shortcuts: Specify PDF functions in customise dialog

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139683

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 139285] Cut of table only selection not allowed depending on the distribution (also formatting of all cells disallowed)

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139285

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 139680] Assert: Undoing fly paste

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139680

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 139672] UI: Ctrl+Tab switch to most recently used tab

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139672

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 139669] Image anchored to paragraph doesn't move with text when pressing Enter

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139669

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 139918] Page Format Size set to A4 instead of Letter for US users

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139918

--- Comment #7 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 139670] Select text frame in header jumps view to previous page

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139670

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 139661] ms word compatibility- image is displaced from top right corner

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139661

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 139673] EDITING: Selection of words by double click and mouse move in Calc comments

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139673

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 139677] Install worked on another machine which didn't have Visio 2007 installed

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139677

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 139668] Anchor to paragraph no included in selection when selecting a full paragraph

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139668

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 139665] Direct paste in comment box using context menu not possible, disappears

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139665

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 139675] Undo moving in header not working in certain consternation (picking the wrong object)

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139675

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 139662] ms word compatibility- vertical recipient adress text is getting cut off

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139662

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 139918] Page Format Size set to A4 instead of Letter for US users

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139918

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 139660] Paragraph panel alignment buttons should not be toggle buttons

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139660

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 139656] Writer needs a nudge to reformat

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139656

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 139634] Writer: Selection of words by double click and mouse move in comments

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139634

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 134474] not able to type kannada unicode some words like ಯರ್‍ರಿಸ್ವಾಮಿ

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134474

--- Comment #3 from QA Administrators  ---
Dear Director dsert,

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 130723] FORMATTING:hyperlinks broken into 2 after saving

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130723

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 134474] not able to type kannada unicode some words like ಯರ್‍ರಿಸ್ವಾಮಿ

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134474

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 107733] [META] Hyperlink bugs and enhancements

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107733
Bug 107733 depends on bug 130723, which changed state.

Bug 130723 Summary: FORMATTING:hyperlinks broken into 2 after saving
https://bugs.documentfoundation.org/show_bug.cgi?id=130723

   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 129031] distorted lines

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129031

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 130723] FORMATTING:hyperlinks broken into 2 after saving

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130723

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

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 129031] distorted lines

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129031

--- Comment #19 from QA Administrators  ---
Dear Jochen,

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 127190] FILESAVE: math crashes when export to pdf (steps: comment 8, not always reproducible)

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127190

--- Comment #30 from QA Administrators  ---
Dear VincentYu,

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 135404] LibreOffice_6.4.5_Win_x64 failed to open

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135404

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

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 127190] FILESAVE: math crashes when export to pdf (steps: comment 8, not always reproducible)

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127190

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 135397] Perpetual saving of document after opening– writer, 6.4.2.2

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135397

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

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 135399] Cierre inesperado en LO Writer

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135399

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

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 135361] Crash in: svx::DocRecovery::PluginProgress::start::FILESAVE

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135361

--- Comment #3 from QA Administrators  ---
Dear Ernesto Bosch,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 135396] EDITING Crash when cutting a newly created chart

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135396

--- Comment #2 from QA Administrators  ---
Dear Dave Youngman,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 135363] Crash in: svx::DocRecovery::PluginProgress::start::REPORTBUILDER::FILESAVE

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135363

--- Comment #2 from QA Administrators  ---
Dear Ernesto Bosch,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 98972] Writer table: changing data changes cell format; changing format changes cell data

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98972

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

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
https://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 98265] Poor formatting in Table of Contents with Multiple Fonts

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98265

--- Comment #10 from QA Administrators  ---
Dear Tim Chambers,

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
https://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 97310] AutoCorrect Doesn't Work with Zero-width Space

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97310

--- Comment #4 from QA Administrators  ---
Dear Nathan Wells,

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
https://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 95037] Tabulation in twocolumn mode

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95037

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

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
https://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 114814] EDITING: Form Table control Field Copy disfunctional

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114814

--- Comment #5 from QA Administrators  ---
Dear Howard Johnson,

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
https://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - icon-themes/sifr icon-themes/sifr_dark icon-themes/sifr_dark_svg icon-themes/sifr_svg

2021-01-30 Thread Rizal Muttaqin (via logerrit)
 icon-themes/sifr/links.txt |1 +
 icon-themes/sifr/svx/res/listview.png  |binary
 icon-themes/sifr_dark/links.txt|1 +
 icon-themes/sifr_dark/svx/res/listview.png |binary
 icon-themes/sifr_dark_svg/svx/res/listview.svg |1 +
 icon-themes/sifr_svg/svx/res/listview.svg  |1 +
 6 files changed, 4 insertions(+)

New commits:
commit 9ff3f9b8acb7e4a072cefd53acb92bbeaacf93bf
Author: Rizal Muttaqin 
AuthorDate: Sun Jan 31 10:28:09 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Sun Jan 31 05:17:27 2021 +0100

Sifr: tdf#140026 new List View icon

Change-Id: I7be57359a4bef34a08567b5d88a760dc6582c27d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110196
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/sifr/links.txt b/icon-themes/sifr/links.txt
index 948cfa0143df..b4e84ee26828 100644
--- a/icon-themes/sifr/links.txt
+++ b/icon-themes/sifr/links.txt
@@ -2365,6 +2365,7 @@ svx/res/fontworkalignstretch_26.png 
cmd/lc_text_marquee.png
 svx/res/fw07.png cmd/sc_alignleft.png
 svx/res/fw08.png cmd/sc_alignhorizontalcenter.png
 svx/res/fw09.png cmd/sc_alignright.png
+svx/res/gallist.png svx/res/galdetail.png
 svx/res/galdefl.png cmd/lc_gallery.png
 svx/res/galdefs.png cmd/sc_gallery.png
 svx/res/galnorl.png cmd/lc_gallery.png
diff --git a/icon-themes/sifr/svx/res/gallist.png 
b/icon-themes/sifr/svx/res/galdetail.png
similarity index 100%
rename from icon-themes/sifr/svx/res/gallist.png
rename to icon-themes/sifr/svx/res/galdetail.png
diff --git a/icon-themes/sifr/svx/res/listview.png 
b/icon-themes/sifr/svx/res/listview.png
new file mode 100644
index ..184d7a4ecba9
Binary files /dev/null and b/icon-themes/sifr/svx/res/listview.png differ
diff --git a/icon-themes/sifr_dark/links.txt b/icon-themes/sifr_dark/links.txt
index 948cfa0143df..b4e84ee26828 100644
--- a/icon-themes/sifr_dark/links.txt
+++ b/icon-themes/sifr_dark/links.txt
@@ -2365,6 +2365,7 @@ svx/res/fontworkalignstretch_26.png 
cmd/lc_text_marquee.png
 svx/res/fw07.png cmd/sc_alignleft.png
 svx/res/fw08.png cmd/sc_alignhorizontalcenter.png
 svx/res/fw09.png cmd/sc_alignright.png
+svx/res/gallist.png svx/res/galdetail.png
 svx/res/galdefl.png cmd/lc_gallery.png
 svx/res/galdefs.png cmd/sc_gallery.png
 svx/res/galnorl.png cmd/lc_gallery.png
diff --git a/icon-themes/sifr_dark/svx/res/gallist.png 
b/icon-themes/sifr_dark/svx/res/galdetail.png
similarity index 100%
rename from icon-themes/sifr_dark/svx/res/gallist.png
rename to icon-themes/sifr_dark/svx/res/galdetail.png
diff --git a/icon-themes/sifr_dark/svx/res/listview.png 
b/icon-themes/sifr_dark/svx/res/listview.png
new file mode 100644
index ..9b9198be7b93
Binary files /dev/null and b/icon-themes/sifr_dark/svx/res/listview.png differ
diff --git a/icon-themes/sifr_dark_svg/svx/res/gallist.svg 
b/icon-themes/sifr_dark_svg/svx/res/galdetail.svg
similarity index 100%
rename from icon-themes/sifr_dark_svg/svx/res/gallist.svg
rename to icon-themes/sifr_dark_svg/svx/res/galdetail.svg
diff --git a/icon-themes/sifr_dark_svg/svx/res/listview.svg 
b/icon-themes/sifr_dark_svg/svx/res/listview.svg
new file mode 100644
index ..db2b3a27a87c
--- /dev/null
+++ b/icon-themes/sifr_dark_svg/svx/res/listview.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/sifr_svg/svx/res/gallist.svg 
b/icon-themes/sifr_svg/svx/res/galdetail.svg
similarity index 100%
rename from icon-themes/sifr_svg/svx/res/gallist.svg
rename to icon-themes/sifr_svg/svx/res/galdetail.svg
diff --git a/icon-themes/sifr_svg/svx/res/listview.svg 
b/icon-themes/sifr_svg/svx/res/listview.svg
new file mode 100644
index ..f1d17841e6ce
--- /dev/null
+++ b/icon-themes/sifr_svg/svx/res/listview.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 139664] After "back" the animation effect, the reproduction of the animation effect is broken.

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139664

hiro yamamoto  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #8 from hiro yamamoto  ---
I built a test version to try it out.
Version: 7.2.0.alpha0+ (x64) / LibreOffice Community
Build ID: 6ca7be8f10deb75399377f25277b943af40f72f1
CPU threads: 6; OS: Windows 10.0 Build 19041; UI render: Skia/Vulkan; VCL: win
Locale: ja-JP (ja_JP); UI: ja-JP
Calc: threaded

As expected, there was no improvement in the symptoms.
I will report back.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - icon-themes/karasa_jaga icon-themes/karasa_jaga_svg

2021-01-30 Thread Rizal Muttaqin (via logerrit)
 dev/null|binary
 icon-themes/karasa_jaga/links.txt   | 4250 ++--
 icon-themes/karasa_jaga_svg/sfx2/res/actiontemplates020.svg |1 
 icon-themes/karasa_jaga_svg/sfx2/res/actionview010.svg  |1 
 4 files changed, 2126 insertions(+), 2126 deletions(-)

New commits:
commit a2d4a3c9987ee966b326d36de6ed9e90f1c800f2
Author: Rizal Muttaqin 
AuthorDate: Fri Jan 29 09:57:45 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Sun Jan 31 04:04:30 2021 +0100

make Export and Import icon in Template Manager defined in links.txt

Change-Id: Ibfbea62c1890d72d5b7b4611d9c09d49e67a85ef
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110116
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 
(cherry picked from commit 977f66ccd6161da8ec37d4eac0f85515e0cf1df0)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110133

diff --git a/icon-themes/karasa_jaga/links.txt 
b/icon-themes/karasa_jaga/links.txt
index fcfe3ec6038a..aea37d5694bc 100644
--- a/icon-themes/karasa_jaga/links.txt
+++ b/icon-themes/karasa_jaga/links.txt
@@ -1,2124 +1,2126 @@
-avmedia/res/av02048.png cmd/sc_open.png
-avmedia/res/av02049.png cmd/sc_datastreamsplay.png
-avmedia/res/av02050.png cmd/sc_mediapause.png
-avmedia/res/av02051.png cmd/sc_datastreamsstop.png
-avmedia/res/av02052.png cmd/sc_mediarepeat.png
-avmedia/res/av02053.png cmd/sc_ok.png
-avmedia/res/av02054.png cmd/sc_mediamute.png
-avmedia/res/avl02048.png cmd/lc_open.png
-avmedia/res/avl02049.png cmd/lc_datastreamsplay.png
-avmedia/res/avl02050.png cmd/lc_mediapause.png
-avmedia/res/avl02051.png cmd/lc_datastreamsstop.png
-avmedia/res/avl02052.png cmd/lc_mediarepeat.png
-avmedia/res/avl02053.png cmd/lc_ok.png
-avmedia/res/avl02054.png cmd/lc_mediamute.png
-chart2/res/dataeditor_icon01.png cmd/sc_insertrowsafter.png
-chart2/res/dataeditor_icon02.png cmd/sc_insertcolumnsafter.png
-chart2/res/dataeditor_icon03.png cmd/sc_deleterows.png
-chart2/res/dataeditor_icon04.png cmd/sc_deletecolumns.png
-chart2/res/typecolumn_16.png cmd/sc_insertobjectchartfromfile.png
-chart2/res/typecolumnline_16.png cmd/sc_statisticsmenu.png
-chart2/res/typepie_16.png cmd/sc_drawchart.png
-cmd/32/acceptchanges.png cmd/32/accepttrackedchanges.png
-cmd/32/accepttracedchange.png cmd/32/accepttrackedchange.png
-cmd/32/adddatefield.png cmd/32/datefield.png
-cmd/32/addtextbox.png cmd/32/insertfixedtext.png
-cmd/32/adjust.png cmd/32/zoomoptimal.png
-cmd/32/advancedmode.png cmd/32/toggleobjectrotatemode.png
-cmd/32/alignframemenu.png cmd/32/objectalign.png
-cmd/32/alignvcenter.png cmd/32/alignverticalcenter.png
-cmd/32/anchormenu.png cmd/32/toggleanchortype.png
-cmd/32/ar/bulletliststyle.png cmd/32/ar/defaultbullet.png
-cmd/32/ar/linenumberdialog.png cmd/32/ar/linenumberingdialog.png
-cmd/32/ar/numberliststyle.png cmd/32/ar/defaultnumbering.png
-cmd/32/arrangeframemenu.png cmd/32/bringtofront.png
-cmd/32/arrangemenu.png cmd/32/bringtofront.png
-cmd/32/arrowshapes.png cmd/32/arrowshapes.left-right-arrow.png
-cmd/32/arrowstoolbox.png cmd/32/linearrowend.png
-cmd/32/authoritiesentrydialog.png cmd/32/insertauthorfield.png
-cmd/32/autofilter.png cmd/32/datafilterautofilter.png
-cmd/32/autoformatmenu.png cmd/32/autocorrectdlg.png
-cmd/32/availabletoolbars.png cmd/32/showtoolbar.png
-cmd/32/backgroundcolor.png cmd/32/formatarea.png
-cmd/32/backgroundpatterncontroller.png cmd/32/formatarea.png
-cmd/32/badcellstyle.png cmd/32/badcellstyles.png
-cmd/32/basicshapes.png cmd/32/basicshapes.diamond.png
-cmd/32/bg/autoformatmenu.png cmd/32/bg/autocorrectdlg.png
-cmd/32/bg/spelldialog.png cmd/32/bg/spelling.png
-cmd/32/bg/spellingandgrammardialog.png cmd/32/bg/spelling.png
-cmd/32/bg/underline.png cmd/32/ca/underline.png
-cmd/32/bg/underlinedouble.png cmd/32/hu/underlinedouble.png
-cmd/32/bg/underlinesimple.png cmd/32/hu/underline.png
-cmd/32/bg/underlinesingle.png cmd/32/hu/underline.png
-cmd/32/break.png cmd/32/polygon_unfilled.png
-cmd/32/browsebackward.png cmd/32/navigateback.png
-cmd/32/browseforward.png cmd/32/navigateforward.png
-cmd/32/bulletliststyle.png cmd/32/defaultbullet.png
-cmd/32/ca/underlinesimple.png cmd/32/ca/underline.png
-cmd/32/ca/underlinesingle.png cmd/32/ca/underline.png
-cmd/32/calloutshapes.png cmd/32/calloutshapes.round-rectangular-callout.png
-cmd/32/cellcontentsmenu.png cmd/32/calculate.png
-cmd/32/cellprotection.png cmd/32/protect.png
-cmd/32/cellvertbottom.png cmd/32/alignbottom.png
-cmd/32/cellvertcenter.png cmd/32/alignverticalcenter.png
-cmd/32/cellverttop.png cmd/32/aligntop.png
-cmd/32/centerpara.png cmd/32/alignhorizontalcenter.png
-cmd/32/changesmenu.png cmd/32/accepttrackedchange.png
-cmd/32/charactermenu.png cmd/32/fontdialog.png
-cmd/32/charbackcolor.png cmd/32/backcolor.png
-cmd/32/charmapcontrol.png cmd/32/insertsymbol.png
-cmd/32/charttitlemenu.png cmd/32/toggletitle.png
-cmd/32/checkboxformfield.png cmd/32/checkbox.png
-cmd/32/circle.png cmd/32/basicshapes.circle.png

[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - icon-themes/elementary icon-themes/elementary_svg

2021-01-30 Thread Rizal Muttaqin (via logerrit)
 dev/null |binary
 icon-themes/elementary/links.txt |1 +
 icon-themes/elementary/svx/res/galdetail.png |binary
 icon-themes/elementary/svx/res/galicon.png   |binary
 icon-themes/elementary/svx/res/listview.png  |binary
 icon-themes/elementary_svg/svx/res/galdetail.svg |1 +
 icon-themes/elementary_svg/svx/res/galicon.svg   |2 +-
 icon-themes/elementary_svg/svx/res/gallist.svg   |1 -
 icon-themes/elementary_svg/svx/res/listview.svg  |1 +
 9 files changed, 4 insertions(+), 2 deletions(-)

New commits:
commit d7b67705e35cbba50568355bbc803d36a307e854
Author: Rizal Muttaqin 
AuthorDate: Sun Jan 31 07:12:27 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Sun Jan 31 04:04:00 2021 +0100

elementary: tdf#140026 new List View icon

Change-Id: Ic09c00456df605d21cd14bf400317d127cba1646
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110194
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/elementary/links.txt b/icon-themes/elementary/links.txt
index 8086bab6c140..3add4ded606a 100644
--- a/icon-themes/elementary/links.txt
+++ b/icon-themes/elementary/links.txt
@@ -2265,6 +2265,7 @@ svx/res/fontworkalignstretch_16.png 
cmd/sc_text_marquee.png
 svx/res/fw07.png cmd/sc_alignleft.png
 svx/res/fw08.png cmd/sc_alignhorizontalcenter.png
 svx/res/fw09.png cmd/sc_alignright.png
+svx/res/gallist.png svx/res/galdetail.png
 svx/res/galrdos.png formula/res/fapclose.png
 svx/res/id01.png cmd/sc_ok.png
 svx/res/id018.png cmd/sc_controlproperties.png
diff --git a/icon-themes/elementary/svx/res/galdetail.png 
b/icon-themes/elementary/svx/res/galdetail.png
new file mode 100644
index ..a6bb651d7a31
Binary files /dev/null and b/icon-themes/elementary/svx/res/galdetail.png differ
diff --git a/icon-themes/elementary/svx/res/galicon.png 
b/icon-themes/elementary/svx/res/galicon.png
index b8100279fd24..2e9519f363c4 100644
Binary files a/icon-themes/elementary/svx/res/galicon.png and 
b/icon-themes/elementary/svx/res/galicon.png differ
diff --git a/icon-themes/elementary/svx/res/gallist.png 
b/icon-themes/elementary/svx/res/gallist.png
deleted file mode 100644
index 9fda4cd3aeaa..
Binary files a/icon-themes/elementary/svx/res/gallist.png and /dev/null differ
diff --git a/icon-themes/elementary/svx/res/listview.png 
b/icon-themes/elementary/svx/res/listview.png
new file mode 100644
index ..1a7fae4e0ed9
Binary files /dev/null and b/icon-themes/elementary/svx/res/listview.png differ
diff --git a/icon-themes/elementary_svg/svx/res/galdetail.svg 
b/icon-themes/elementary_svg/svx/res/galdetail.svg
new file mode 100644
index ..7106eb7bc3f5
--- /dev/null
+++ b/icon-themes/elementary_svg/svx/res/galdetail.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>id="e" gradientTransform="matrix(.50256996 0 0 .39304699 77.341608 
 >-14.357632)" gradientUnits="userSpaceOnUse" x1="-162.6788" x2="-162.6788" 
 >y1="58.56691" y2="80.030975">offset="1" stop-color="#e7c591"/>gradientUnits="userSpaceOnUse" x1="3.317061" x2="3.487793" xlink:href="#e" 
 >y1="19.176836" y2="21.750013"/>gradientUnits="userSpaceOnUse" x1="3.658526" x2="3.731697" xlink:href="#e" 
 >y1="15.182923" y2="18.04"/>ry="1.125003" width="15.750039" x=".124981" y="1.37498"/>transform="translate(.01 -.02)"/>stroke-linecap="round" stroke-linejoin="round
 " stroke-width=".750002">
\ No newline at end of file
diff --git a/icon-themes/elementary_svg/svx/res/galicon.svg 
b/icon-themes/elementary_svg/svx/res/galicon.svg
index 3289f85c2b43..576cf5cf1ba5 100644
--- a/icon-themes/elementary_svg/svx/res/galicon.svg
+++ b/icon-themes/elementary_svg/svx/res/galicon.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
 
\ No newline at end of file
diff --git a/icon-themes/elementary_svg/svx/res/gallist.svg 
b/icon-themes/elementary_svg/svx/res/gallist.svg
deleted file mode 100644
index 190fa164b296..
--- a/icon-themes/elementary_svg/svx/res/gallist.svg
+++ /dev/null
@@ -1 +0,0 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
 
\ No newline at end of file
diff --git a/icon-themes/elementary_svg/svx/res/listview.svg 
b/icon-themes/elementary_svg/svx/res/listview.svg
new file mode 100644
index ..496ca70002e7
--- /dev/null
+++ b/icon-themes/elementary_svg/svx/res/listview.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>transform="matrix(1.3 0 0 1.3 1.59 .98)">height="14.250035" rx="1.125002" ry="1.125003" width="15.750039" x=".124981" 
 >y="1.37498"/>fill="url(#d)" transform="translate(.01 -.02)"/>stroke-linecap="round" stroke-linejoin="round" stroke-width=".750002">height="14.250035" opacity=".3" rx="1" stroke="#0e141f" 

[Libreoffice-bugs] [Bug 139285] Cut of table only selection not allowed depending on the distribution (also formatting of all cells disallowed)

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139285

--- Comment #4 from suryarajendran...@gmail.com ---
Hello Telesto,

Can you provide clearer set of step by step instructions to reproduce the bug?

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


[Libreoffice-bugs] [Bug 139285] Cut of table only selection not allowed depending on the distribution (also formatting of all cells disallowed)

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139285

--- Comment #3 from suryarajendran...@gmail.com ---
Hello Telesto,

Can you provide clearer set of step by step instructions to reproduce the bug?

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


[Libreoffice-bugs] [Bug 139285] Cut of table only selection not allowed depending on the distribution (also formatting of all cells disallowed)

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139285

suryarajendran...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

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


[Libreoffice-bugs] [Bug 140028] Export to PDF changes SAVE to directory of PDF location thereafter

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140028

nospa...@gmail.com changed:

   What|Removed |Added

Summary|Export to PDF changes SAVE  |Export to PDF changes SAVE
   |to directory to PDF |to directory of PDF
   |location thereafter |location thereafter

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


[Libreoffice-bugs] [Bug 140028] Export to PDF changes SAVE to directory to PDF location thereafter

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140028

nospa...@gmail.com changed:

   What|Removed |Added

Summary|Export to PDF changes SAVE  |Export to PDF changes SAVE
   |to directory of PDF |to directory to PDF
   |thereafter  |location thereafter

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


[Libreoffice-bugs] [Bug 140028] Export to PDF changes SAVE to directory of PDF thereafter

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140028

nospa...@gmail.com changed:

   What|Removed |Added

Summary|FILESAVE, PDF: Export to|Export to PDF changes SAVE
   |PDF changes SAVE to |to directory of PDF
   |directory of PDF thereafter |thereafter

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


[Libreoffice-bugs] [Bug 140028] FILESAVE, PDF: Export to PDF changes SAVE to directory of PDF thereafter

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140028

nospa...@gmail.com changed:

   What|Removed |Added

Summary|Export to PDF changes SAVE  |FILESAVE, PDF: Export to
   |to directory of PDF |PDF changes SAVE to
   |thereafter  |directory of PDF thereafter

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


[Libreoffice-bugs] [Bug 140028] Export to PDF changes SAVE to directory of PDF thereafter

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140028

nospa...@gmail.com changed:

   What|Removed |Added

Summary|Export to PDF change SAVE   |Export to PDF changes SAVE
   |to directory of PDF |to directory of PDF
   |thereafter  |thereafter

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


[Libreoffice-bugs] [Bug 140028] Export to PDF change SAVE to directory of PDF thereafter

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140028

nospa...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |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 140028] New: Export to PDF change SAVE to directory of PDF thereafter

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140028

Bug ID: 140028
   Summary: Export to PDF change SAVE to directory of PDF
thereafter
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nospa...@gmail.com

Reproduce:
#1. Create document, save as odt.
#2. Export as pdf, change directory to different from saved odt and export.
#3. Hit save. New saved document is created in pdf directory in #2.

Result: You will now have 2 same named odt documents. One in the directory from
#1 and one in the directory from #2.

I tagged as critical as this could lead to data loss through deletion of the
latest version of the document in the unintended pdf directory.

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

2021-01-30 Thread Christian Lohmaier (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 367b22e793aa94e7263c041c8e60a90250c780a4
Author: Christian Lohmaier 
AuthorDate: Sun Jan 31 02:48:13 2021 +0100
Commit: Gerrit Code Review 
CommitDate: Sun Jan 31 02:48:13 2021 +0100

Update git submodules

* Update translations from branch 'master'
  to 8cb8b0716a18bd866fed08dc3c72a895b46e4cd4
  - update translations for master

and force-fix errors using pocheck

Change-Id: I2454bc37899ebd56225f182c520bd212d4eca5de

diff --git a/translations b/translations
index 62c93fad7354..8cb8b0716a18 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 62c93fad7354fe52c7d8b7e34fbca550b3dd9ac0
+Subproject commit 8cb8b0716a18bd866fed08dc3c72a895b46e4cd4
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_dark_svg icon-themes/breeze_svg icon-themes/elementary icon-themes/elementary_svg

2021-01-30 Thread Rizal Muttaqin (via logerrit)
 dev/null |binary
 icon-themes/breeze/svx/res/listview.png  |binary
 icon-themes/breeze_dark/svx/res/listview.png |binary
 icon-themes/breeze_dark_svg/svx/res/listview.svg |1 +
 icon-themes/breeze_svg/svx/res/listview.svg  |1 +
 icon-themes/elementary/svx/res/galdetail.png |binary
 icon-themes/elementary/svx/res/galicon.png   |binary
 icon-themes/elementary/svx/res/listview.png  |binary
 icon-themes/elementary_svg/svx/res/galdetail.svg |1 +
 icon-themes/elementary_svg/svx/res/galicon.svg   |2 +-
 icon-themes/elementary_svg/svx/res/gallist.svg   |1 -
 icon-themes/elementary_svg/svx/res/listview.svg  |1 +
 12 files changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 1c2e398d107a9f08aaec52f334907d0520232955
Author: Rizal Muttaqin 
AuthorDate: Sun Jan 31 06:54:29 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Sun Jan 31 02:09:17 2021 +0100

Breeze & elementary: tdf#140026 new List View icon

Change-Id: I56edc2ab3d44ba6e0d19d1322cc5e061621a4fe2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110193
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/breeze/svx/res/gallist.png 
b/icon-themes/breeze/svx/res/galdetail.png
similarity index 100%
rename from icon-themes/breeze/svx/res/gallist.png
rename to icon-themes/breeze/svx/res/galdetail.png
diff --git a/icon-themes/breeze/svx/res/listview.png 
b/icon-themes/breeze/svx/res/listview.png
new file mode 100644
index ..57c5fb5e36c1
Binary files /dev/null and b/icon-themes/breeze/svx/res/listview.png differ
diff --git a/icon-themes/breeze_dark/svx/res/gallist.png 
b/icon-themes/breeze_dark/svx/res/galdetail.png
similarity index 100%
rename from icon-themes/breeze_dark/svx/res/gallist.png
rename to icon-themes/breeze_dark/svx/res/galdetail.png
diff --git a/icon-themes/breeze_dark/svx/res/listview.png 
b/icon-themes/breeze_dark/svx/res/listview.png
new file mode 100644
index ..59967ef9a310
Binary files /dev/null and b/icon-themes/breeze_dark/svx/res/listview.png differ
diff --git a/icon-themes/breeze_dark_svg/svx/res/gallist.svg 
b/icon-themes/breeze_dark_svg/svx/res/galdetail.svg
similarity index 100%
rename from icon-themes/breeze_dark_svg/svx/res/gallist.svg
rename to icon-themes/breeze_dark_svg/svx/res/galdetail.svg
diff --git a/icon-themes/breeze_dark_svg/svx/res/listview.svg 
b/icon-themes/breeze_dark_svg/svx/res/listview.svg
new file mode 100644
index ..9c17b13c9b8a
--- /dev/null
+++ b/icon-themes/breeze_dark_svg/svx/res/listview.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_svg/svx/res/gallist.svg 
b/icon-themes/breeze_svg/svx/res/galdetail.svg
similarity index 100%
rename from icon-themes/breeze_svg/svx/res/gallist.svg
rename to icon-themes/breeze_svg/svx/res/galdetail.svg
diff --git a/icon-themes/breeze_svg/svx/res/listview.svg 
b/icon-themes/breeze_svg/svx/res/listview.svg
new file mode 100644
index ..7279ea20df0e
--- /dev/null
+++ b/icon-themes/breeze_svg/svx/res/listview.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/elementary/svx/res/galdetail.png 
b/icon-themes/elementary/svx/res/galdetail.png
new file mode 100644
index ..a6bb651d7a31
Binary files /dev/null and b/icon-themes/elementary/svx/res/galdetail.png differ
diff --git a/icon-themes/elementary/svx/res/galicon.png 
b/icon-themes/elementary/svx/res/galicon.png
index b8100279fd24..2e9519f363c4 100644
Binary files a/icon-themes/elementary/svx/res/galicon.png and 
b/icon-themes/elementary/svx/res/galicon.png differ
diff --git a/icon-themes/elementary/svx/res/gallist.png 
b/icon-themes/elementary/svx/res/gallist.png
deleted file mode 100644
index 9fda4cd3aeaa..
Binary files a/icon-themes/elementary/svx/res/gallist.png and /dev/null differ
diff --git a/icon-themes/elementary/svx/res/listview.png 
b/icon-themes/elementary/svx/res/listview.png
new file mode 100644
index ..1a7fae4e0ed9
Binary files /dev/null and b/icon-themes/elementary/svx/res/listview.png differ
diff --git a/icon-themes/elementary_svg/svx/res/galdetail.svg 
b/icon-themes/elementary_svg/svx/res/galdetail.svg
new file mode 100644
index ..7106eb7bc3f5
--- /dev/null
+++ b/icon-themes/elementary_svg/svx/res/galdetail.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>id="e" gradientTransform="matrix(.50256996 0 0 .39304699 77.341608 
 >-14.357632)" gradientUnits="userSpaceOnUse" x1="-162.6788" x2="-162.6788" 
 >y1="58.56691" y2="80.030975">offset="1" stop-color="#e7c591"/>gradientUnits="userSpaceOnUse" x1="3.317061" x2="3.487793" xlink:href="#e" 
 >y1="19.176836" y2="21.750013"/>gradientUnits="userSpaceOnUse" x1="3.658526" x2="3.731697" xlink:href="#e" 
 >y1="15.182923" y2="18.04"/>ry="1.125003" width="15.750039" x=".124981" 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_dark_svg icon-themes/breeze_svg

2021-01-30 Thread Rizal Muttaqin (via logerrit)
 icon-themes/breeze/links.txt  |1 +
 icon-themes/breeze/svx/res/galdetail.png  |binary
 icon-themes/breeze/svx/res/listview.png   |binary
 icon-themes/breeze_dark/links.txt |1 +
 icon-themes/breeze_dark/svx/res/galdetail.png |binary
 icon-themes/breeze_dark/svx/res/listview.png  |binary
 icon-themes/breeze_dark_svg/svx/res/galdetail.svg |1 +
 icon-themes/breeze_dark_svg/svx/res/listview.svg  |1 +
 icon-themes/breeze_svg/svx/res/galdetail.svg  |1 +
 icon-themes/breeze_svg/svx/res/listview.svg   |1 +
 10 files changed, 6 insertions(+)

New commits:
commit 86616a694b511b369e7324d92d3f8aa0af1e5f49
Author: Rizal Muttaqin 
AuthorDate: Sun Jan 31 06:33:22 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Sun Jan 31 01:55:39 2021 +0100

Breeze: tdf#140026 new List View icon

Change-Id: Ibe388fb669355740676b9d30aa840e4f04546eed
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110192
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/breeze/links.txt b/icon-themes/breeze/links.txt
index 51b63fca88bf..4357dd974e7a 100644
--- a/icon-themes/breeze/links.txt
+++ b/icon-themes/breeze/links.txt
@@ -2592,6 +2592,7 @@ svx/res/fontworkalignstretch_26.png 
cmd/lc_text_marquee.png
 svx/res/fw07.png cmd/sc_alignleft.png
 svx/res/fw08.png cmd/sc_alignhorizontalcenter.png
 svx/res/fw09.png cmd/sc_alignright.png
+svx/res/gallist.png svx/res/galdetail.png
 svx/res/graphic.png cmd/lc_graphic.png
 
 svx/res/id01.png cmd/sc_ok.png
diff --git a/icon-themes/breeze/svx/res/galdetail.png 
b/icon-themes/breeze/svx/res/galdetail.png
new file mode 100644
index ..8adf06422ea0
Binary files /dev/null and b/icon-themes/breeze/svx/res/galdetail.png differ
diff --git a/icon-themes/breeze/svx/res/listview.png 
b/icon-themes/breeze/svx/res/listview.png
new file mode 100644
index ..57c5fb5e36c1
Binary files /dev/null and b/icon-themes/breeze/svx/res/listview.png differ
diff --git a/icon-themes/breeze_dark/links.txt 
b/icon-themes/breeze_dark/links.txt
index 51b63fca88bf..4357dd974e7a 100644
--- a/icon-themes/breeze_dark/links.txt
+++ b/icon-themes/breeze_dark/links.txt
@@ -2592,6 +2592,7 @@ svx/res/fontworkalignstretch_26.png 
cmd/lc_text_marquee.png
 svx/res/fw07.png cmd/sc_alignleft.png
 svx/res/fw08.png cmd/sc_alignhorizontalcenter.png
 svx/res/fw09.png cmd/sc_alignright.png
+svx/res/gallist.png svx/res/galdetail.png
 svx/res/graphic.png cmd/lc_graphic.png
 
 svx/res/id01.png cmd/sc_ok.png
diff --git a/icon-themes/breeze_dark/svx/res/galdetail.png 
b/icon-themes/breeze_dark/svx/res/galdetail.png
new file mode 100644
index ..e3706aba7f31
Binary files /dev/null and b/icon-themes/breeze_dark/svx/res/galdetail.png 
differ
diff --git a/icon-themes/breeze_dark/svx/res/listview.png 
b/icon-themes/breeze_dark/svx/res/listview.png
new file mode 100644
index ..59967ef9a310
Binary files /dev/null and b/icon-themes/breeze_dark/svx/res/listview.png differ
diff --git a/icon-themes/breeze_dark_svg/svx/res/galdetail.svg 
b/icon-themes/breeze_dark_svg/svx/res/galdetail.svg
new file mode 100644
index ..0fa3d3a177de
--- /dev/null
+++ b/icon-themes/breeze_dark_svg/svx/res/galdetail.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_dark_svg/svx/res/listview.svg 
b/icon-themes/breeze_dark_svg/svx/res/listview.svg
new file mode 100644
index ..9c17b13c9b8a
--- /dev/null
+++ b/icon-themes/breeze_dark_svg/svx/res/listview.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_svg/svx/res/galdetail.svg 
b/icon-themes/breeze_svg/svx/res/galdetail.svg
new file mode 100644
index ..28405f7303d6
--- /dev/null
+++ b/icon-themes/breeze_svg/svx/res/galdetail.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_svg/svx/res/listview.svg 
b/icon-themes/breeze_svg/svx/res/listview.svg
new file mode 100644
index ..7279ea20df0e
--- /dev/null
+++ b/icon-themes/breeze_svg/svx/res/listview.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - fpicker/uiconfig icon-themes/colibre icon-themes/colibre_svg svx/uiconfig

2021-01-30 Thread Rizal Muttaqin (via logerrit)
 fpicker/uiconfig/ui/remotefilesdialog.ui |2 +-
 icon-themes/colibre/links.txt|1 +
 icon-themes/colibre/svx/res/listview.png |binary
 icon-themes/colibre_svg/svx/res/listview.svg |1 +
 svx/uiconfig/ui/sidebargallery.ui|2 +-
 5 files changed, 4 insertions(+), 2 deletions(-)

New commits:
commit d1f2cecf96251eee25aadd04dcab24dbcaa685b9
Author: Rizal Muttaqin 
AuthorDate: Sun Jan 31 05:44:22 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Sun Jan 31 01:55:13 2021 +0100

tdf#140013 change icon for list view in Remote Files dialog

Change-Id: Ia91e17e6afeac56f5f770cee030ed63db6605529
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110191
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/fpicker/uiconfig/ui/remotefilesdialog.ui 
b/fpicker/uiconfig/ui/remotefilesdialog.ui
index fd2d72f12d17..c98e3d65b797 100644
--- a/fpicker/uiconfig/ui/remotefilesdialog.ui
+++ b/fpicker/uiconfig/ui/remotefilesdialog.ui
@@ -10,7 +10,7 @@
   
 True
 False
-svx/res/gallist.png
+svx/res/listview.png
   
   
 True
diff --git a/icon-themes/colibre/links.txt b/icon-themes/colibre/links.txt
index 6ac7a68f0abe..7aa77f52bae7 100644
--- a/icon-themes/colibre/links.txt
+++ b/icon-themes/colibre/links.txt
@@ -2439,6 +2439,7 @@ svx/res/fontworkalignstretch_26.png 
cmd/lc_text_marquee.png
 svx/res/fw07.png cmd/sc_alignleft.png
 svx/res/fw08.png cmd/sc_alignhorizontalcenter.png
 svx/res/fw09.png cmd/sc_alignright.png
+svx/res/gallist.png svx/res/galdetail.png
 svx/res/graphic.png cmd/sc_graphic.png
 svx/res/id01.png cmd/sc_ok.png
 svx/res/id018.png cmd/sc_choosemacro.png
diff --git a/icon-themes/colibre/svx/res/gallist.png 
b/icon-themes/colibre/svx/res/galdetail.png
similarity index 100%
rename from icon-themes/colibre/svx/res/gallist.png
rename to icon-themes/colibre/svx/res/galdetail.png
diff --git a/icon-themes/colibre/svx/res/listview.png 
b/icon-themes/colibre/svx/res/listview.png
new file mode 100644
index ..ec07c4b9b4e7
Binary files /dev/null and b/icon-themes/colibre/svx/res/listview.png differ
diff --git a/icon-themes/colibre_svg/svx/res/gallist.svg 
b/icon-themes/colibre_svg/svx/res/galdetail.svg
similarity index 100%
rename from icon-themes/colibre_svg/svx/res/gallist.svg
rename to icon-themes/colibre_svg/svx/res/galdetail.svg
diff --git a/icon-themes/colibre_svg/svx/res/listview.svg 
b/icon-themes/colibre_svg/svx/res/listview.svg
new file mode 100644
index ..a66dc34456af
--- /dev/null
+++ b/icon-themes/colibre_svg/svx/res/listview.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/svx/uiconfig/ui/sidebargallery.ui 
b/svx/uiconfig/ui/sidebargallery.ui
index 9ed2de601a90..800f42476519 100644
--- a/svx/uiconfig/ui/sidebargallery.ui
+++ b/svx/uiconfig/ui/sidebargallery.ui
@@ -10,7 +10,7 @@
   
 True
 False
-svx/res/gallist.png
+svx/res/galdetail.png
   
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140014] Calc crashes when using COUNTIF, SUMIF, etc. on columns "far away" without data

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140014

m.a.riosv  changed:

   What|Removed |Added

Crash report or||e2f7bf68-65c3-4a39-a916-3e8
crash signature||10cb6710c
 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #5 from m.a.riosv  ---
Added crash signature
Repro
Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 66013201749df7d5ac5ddaf377a7b3732518a93b
CPU threads: 4; OS: Windows 10.0 Build 21296; UI render: default; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL

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


[Libreoffice-bugs] [Bug 140027] EDITING inserting rows before pivot table in row 1 copies format and images from headings

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140027

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Repro at least with the format.
Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 66013201749df7d5ac5ddaf377a7b3732518a93b
CPU threads: 4; OS: Windows 10.0 Build 21296; UI render: default; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL

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


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

2021-01-30 Thread Mike Kaganski (via logerrit)
 sal/osl/w32/dllentry.cxx |4 
 sal/osl/w32/thread.cxx   |   35 ++-
 sal/osl/w32/thread.hxx   |2 --
 3 files changed, 10 insertions(+), 31 deletions(-)

New commits:
commit 396c2ad2daad6fe6a11703d0ae1593929834afe2
Author: Mike Kaganski 
AuthorDate: Sat Jan 30 19:56:46 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sun Jan 31 00:50:34 2021 +0100

Use C++ thread_local instead of Tls* WinAPI

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

diff --git a/sal/osl/w32/dllentry.cxx b/sal/osl/w32/dllentry.cxx
index a36e6cda8840..81139a05852b 100644
--- a/sal/osl/w32/dllentry.cxx
+++ b/sal/osl/w32/dllentry.cxx
@@ -84,8 +84,6 @@ static BOOL WINAPI RawDllMain( HINSTANCE, DWORD fdwReason, 
LPVOID )
 SetErrorMode( SEM_NOOPENFILEERRORBOX | SEM_FAILCRITICALERRORS 
);
 #endif
 
-g_dwTLSTextEncodingIndex = TlsAlloc();
-
 //We disable floating point exceptions. This is the usual 
state at program startup
 //but on Windows 98 and ME this is not always the case.
 _control87(_MCW_EM, _MCW_EM);
@@ -95,8 +93,6 @@ static BOOL WINAPI RawDllMain( HINSTANCE, DWORD fdwReason, 
LPVOID )
 case DLL_PROCESS_DETACH:
 WSACleanup( );
 
-TlsFree( g_dwTLSTextEncodingIndex );
-
 /*
 
 On a product build memory management finalization might
diff --git a/sal/osl/w32/thread.cxx b/sal/osl/w32/thread.cxx
index f11c17668371..c10950e9151f 100644
--- a/sal/osl/w32/thread.cxx
+++ b/sal/osl/w32/thread.cxx
@@ -520,36 +520,21 @@ sal_Bool SAL_CALL osl_setThreadKeyData(oslThreadKey Key, 
void *pData)
 return false;
 }
 
-DWORD   g_dwTLSTextEncodingIndex = DWORD(-1);
-
-rtl_TextEncoding SAL_CALL osl_getThreadTextEncoding(void)
+namespace
 {
-DWORD_PTR   dwEncoding;
-rtl_TextEncoding_encoding;
-boolgotACP;
-
-if ( DWORD(-1) == g_dwTLSTextEncodingIndex )
-g_dwTLSTextEncodingIndex = TlsAlloc();
-
-dwEncoding = reinterpret_cast(TlsGetValue( 
g_dwTLSTextEncodingIndex ));
-_encoding = LOWORD(dwEncoding);
-gotACP = HIWORD(dwEncoding);
-
-if ( !gotACP )
-{
-_encoding = rtl_getTextEncodingFromWindowsCodePage( GetACP() );
-TlsSetValue( g_dwTLSTextEncodingIndex, 
reinterpret_cast(static_cast(MAKELONG( _encoding, TRUE ))) );
-}
-
-return _encoding;
+rtl_TextEncoding& getThreadTextEncodingImpl()
+{
+static thread_local rtl_TextEncoding s_enc = 
rtl_getTextEncodingFromWindowsCodePage(GetACP());
+return s_enc;
+}
 }
 
+rtl_TextEncoding SAL_CALL osl_getThreadTextEncoding(void) { return 
getThreadTextEncodingImpl(); }
+
 rtl_TextEncoding SAL_CALL osl_setThreadTextEncoding( rtl_TextEncoding Encoding 
)
 {
-rtl_TextEncoding oldEncoding = osl_getThreadTextEncoding();
-
-TlsSetValue( g_dwTLSTextEncodingIndex, 
reinterpret_cast(static_cast(MAKELONG( Encoding, TRUE))) );
-
+rtl_TextEncoding oldEncoding = getThreadTextEncodingImpl();
+getThreadTextEncodingImpl() = Encoding;
 return oldEncoding;
 }
 
diff --git a/sal/osl/w32/thread.hxx b/sal/osl/w32/thread.hxx
index 03491a8341c1..8740fb72cc56 100644
--- a/sal/osl/w32/thread.hxx
+++ b/sal/osl/w32/thread.hxx
@@ -16,8 +16,6 @@
 
 void osl_callThreadKeyCallbackOnThreadDetach(void);
 
-extern DWORD g_dwTLSTextEncodingIndex;
-
 #endif
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140027] New: EDITING inserting rows before pivot table in row 1 copies format and images from headings

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140027

Bug ID: 140027
   Summary: EDITING inserting rows before pivot table in row 1
copies format and images from headings
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ralacr...@hydro.mb.ca

Description:
Rows inserted above a pivot table that starts in row 1 replicate the format and
dropdown button images of the pivot table headings.

Steps to Reproduce:
1. Create a pivot table with one or more row fields and one data field,
destination: new sheet.
2. Select entire rows (one or more) starting from row 1.
2. Insert Rows Above.

Actual Results:
The format and images from the heading cells of the pivot table are replicated
in the new rows above the pivot table. Cells in the columns above row fields
are protected. The result is that the pivot table appears to extend into the
rows above it.

Expected Results:
Cells inserted above pivot tables which start in row 1 should have default
formatting, no images, and no cell protection. This is a special case of
inserting rows above row 1. It is otherwise normal for cells inserted above row
1 to inherit the format of cells in row 1.



Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.1.5.2
Build ID: 1:6.1.5-3+deb10u6
CPU threads: 12; OS: Linux 4.19; UI render: default; VCL: x11; 
Locale: en-CA (en_CA.utf8); Calc: group threaded

Also occurs in

Version: 7.0.4.2
Build ID: dcf040e67528d9187c66b2379df5ea4407429775
CPU threads: 12; OS: Linux 4.19; UI render: default; VCL: gtk3
Locale: en-CA (en_CA.utf8); UI: en-US
Calc: threaded

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


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

2021-01-30 Thread Marco Pinto (via logerrit)
 extras/source/autocorr/lang/pt/DocumentList.xml |   48 +---
 1 file changed, 34 insertions(+), 14 deletions(-)

New commits:
commit b4110d60ba7457b1c0ff246d511c1425b579f85a
Author: Marco Pinto 
AuthorDate: Sat Jan 16 07:08:29 2021 +0100
Commit: Aron Budea 
CommitDate: Sun Jan 31 00:16:13 2021 +0100

[pt-PT] Added 20 words to autocorrect

Change-Id: I5c6ca3de61fb02787f19cd922f64ed2d059e20b1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109395
Tested-by: Jenkins
Tested-by: Aron Budea 
Reviewed-by: Aron Budea 

diff --git a/extras/source/autocorr/lang/pt/DocumentList.xml 
b/extras/source/autocorr/lang/pt/DocumentList.xml
index dc847f39cbdd..30d6434cb988 100644
--- a/extras/source/autocorr/lang/pt/DocumentList.xml
+++ b/extras/source/autocorr/lang/pt/DocumentList.xml
@@ -47,6 +47,7 @@
 
 
 
+
 
 
 
@@ -61,6 +62,7 @@
 
 
 
+
 
 
 
@@ -100,18 +102,23 @@
 
 
 
+
+
+
+
 
 
 
 
 
-  
+
 
 
 
 
 
 
+
 
 
 
@@ -166,6 +173,8 @@
 
 
 
+
+
 
 
 
@@ -226,6 +235,8 @@
 
 
 
+
+
 
 
 
@@ -236,6 +247,7 @@
 
 
 
+
 
 
 
@@ -244,7 +256,7 @@
 
 
 
-  
+
 
 
 
@@ -368,6 +380,7 @@
 
 
 
+
 
 
 
@@ -507,7 +520,7 @@
 
 
 
-  
+
 
 
 
@@ -652,10 +665,11 @@
 
 
 
-  
+
 
-
+
 
+
 
 
 
@@ -695,7 +709,7 @@
 
 
 
-  
+
 
 
 
@@ -835,6 +849,7 @@
 
 
 
+
 
 
 
@@ -1251,6 +1266,8 @@
 
 
 
+
+
 
 
 
@@ -1466,7 +1483,7 @@
 
 
 
-  
+
 
 
 
@@ -1476,7 +1493,7 @@
 
 
 
-  
+
 
 
 
@@ -1497,7 +1514,7 @@
 
 
 
-  
+
 
 
 
@@ -1585,7 +1602,7 @@
 
 
 
-  
+
 
 
 
@@ -1986,7 +2003,7 @@
 
 
 
-  
+
 
 
 
@@ -2068,7 +2085,7 @@
 
 
 
-  
+
 
 
 
@@ -2084,7 +2101,7 @@
 
 
 
-  
+
 
 
 
@@ -2301,6 +2318,7 @@
 
 
 
+
 
 
 
@@ -2378,6 +2396,8 @@
 
 
 
+
+
 
 
 
@@ -2431,7 +2451,7 @@
 
 
 
-  
+
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'private/timar/fontconfigcrash' - vcl/unx

2021-01-30 Thread Andras Timar (via logerrit)
 vcl/unx/generic/fontmanager/fontconfig.cxx |   11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

New commits:
commit 21c0aab3a710fd917d6ec6435dcb1ef5885f79e6
Author: Andras Timar 
AuthorDate: Sun Jan 31 00:07:01 2021 +0100
Commit: Andras Timar 
CommitDate: Sun Jan 31 00:07:01 2021 +0100

debug 15

Change-Id: If11d784ffb38038f587a62358f15babb29e2ce3e

diff --git a/vcl/unx/generic/fontmanager/fontconfig.cxx 
b/vcl/unx/generic/fontmanager/fontconfig.cxx
index 7684763c0cca..5405d54ca08b 100644
--- a/vcl/unx/generic/fontmanager/fontconfig.cxx
+++ b/vcl/unx/generic/fontmanager/fontconfig.cxx
@@ -20,7 +20,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -91,14 +90,12 @@ FontCfgWrapper::FontCfgWrapper()
 {
 std::cerr << "next: FcInit()" << std::endl;
 setenv("FC_DEBUG", "1024", 1);
-std::ifstream conf("/etc/fonts/fonts.conf");
-if(!conf)
+if(getenv("SNAP"))
 {
-std::cerr << "/etc/fonts/fonts.conf is not readable from LO core" << 
std::endl;
-std::cerr << "Snap: " << getenv("SNAP") << std::endl;
+std::string fontconfigPath(getenv("SNAP"));
+fontconfigPath += "/etc/fonts";
+setenv("FONTCONFIG_PATH", fontconfigPath.c_str(), 1);
 }
-else
-std::cerr << "/etc/fonts/fonts.conf is readable from LO core" << 
std::endl;
 FcInit();
 std::cerr << "FcInit() OK" << std::endl;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2021-01-30 Thread Seth Chaiklin (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fd2ff66f81819087a3f9553886ca0f541a1a7e4c
Author: Seth Chaiklin 
AuthorDate: Sat Jan 30 23:54:37 2021 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Jan 30 23:54:37 2021 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 3bbed7c67947b8cb09343eb05a31a42aeff4a9c0
  - Relevant to: tdf#59034  which [M] options use non-Default PS

   * clarify how to use [M] options
   + add header to indicate "only" [M] options
   + improve accuracy of "Replace blank paragraphs" description
   * improve accuracy of "Replace custom styles" description
   * "Replace bullets with" only works with "Default Paragraph Style"

Change-Id: I882470af22b9a701f967d915a2df7c8e85256d02
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/110146
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin 

diff --git a/helpcontent2 b/helpcontent2
index ec4eee5be0f9..3bbed7c67947 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit ec4eee5be0f97d8664d4b6651613b4fe7e67b68c
+Subproject commit 3bbed7c67947b8cb09343eb05a31a42aeff4a9c0
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 59034] EDITING AutoCorrect's "Replace while modifying existing text" works only for Default style

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59034

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

https://git.libreoffice.org/help/commit/3bbed7c67947b8cb09343eb05a31a42aeff4a9c0

Relevant to: tdf#59034  which [M] options use non-Default PS

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

2021-01-30 Thread Seth Chaiklin (via logerrit)
 source/text/shared/01/06040100.xhp |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

New commits:
commit 3bbed7c67947b8cb09343eb05a31a42aeff4a9c0
Author: Seth Chaiklin 
AuthorDate: Sat Jan 30 13:55:28 2021 +0100
Commit: Seth Chaiklin 
CommitDate: Sat Jan 30 23:54:37 2021 +0100

Relevant to: tdf#59034  which [M] options use non-Default PS

   * clarify how to use [M] options
   + add header to indicate "only" [M] options
   + improve accuracy of "Replace blank paragraphs" description
   * improve accuracy of "Replace custom styles" description
   * "Replace bullets with" only works with "Default Paragraph Style"

Change-Id: I882470af22b9a701f967d915a2df7c8e85256d02
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/110146
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin 

diff --git a/source/text/shared/01/06040100.xhp 
b/source/text/shared/01/06040100.xhp
index 75d30685d..09feacca0 100644
--- a/source/text/shared/01/06040100.xhp
+++ b/source/text/shared/01/06040100.xhp
@@ -58,7 +58,8 @@
   
 
 
-In text 
documents, you can choose to apply the AutoCorrect corrections while you type 
[T], or by choosing Tools - AutoCorrect - Apply to modify 
existing text [M]. The [M] options are applied only to paragraphs with Default 
Paragraph Style.
+In text 
documents, you can choose to apply [T] AutoCorrect options while you type. 
Enable this feature by using Tools - AutoCorrect - While 
Typing.
+You can also apply [M] 
AutoCorrect options to a selection or a whole document of existing text by 
using Tools - AutoCorrect - Apply. In general, [M] options 
are applied only to paragraphs with Default Paragraph Style.
   All non-empty paragraphs with 
"Default Paragraph Style" are converted to "Text Body" paragraph style when 
Tools - AutoCorrect - Apply is used. see 
i72339Don't use inline switches for notes, tips and 
warnings. The icon will still show up.
 
 
@@ -243,16 +244,17 @@
   This feature works only with "Default 
Paragraph Style", "Text Body" and "Text Body Indent" paragraph styles, and 
there must be one empty paragraph before the text, if the text is not at the 
top of a page.
 
 
+[M] options only
   Remove blank paragraphs
 
-Removes empty paragraphs from the 
current document when you choose Tools - AutoCorrect - 
Apply.
+Removes empty paragraphs and 
paragraphs that contain only spaces or tabs from the current document. This 
option works for any paragraph style.
   Replace Custom Styles
 
-  Replaces the custom paragraph styles in the current document 
with the "Default", the "Text Body", or the "Text Body Indent" paragraph style.
+  Replaces custom paragraph styles applied in the current 
document to "Text Body", "Text Body Indent", "First Line Indent" or "Hanging 
Indent" paragraph style.
 
   Replace bullets with
 
-  Converts paragraphs that start with a hyphen (-), a plus sign 
(+), or an asterisk (*) directly followed by a space or a tab, to bulleted 
lists. This option only works on paragraphs that are formatted with the 
"Default", "Text Body", or "Text Body Indent" paragraph styles. To change the 
bullet style that is used, select this option, and then click Edit.
+  Converts paragraphs that start with a hyphen (-), a plus sign 
(+), or an asterisk (*) directly followed by a space or a tab, to bulleted 
lists. This option only works on paragraphs that are formatted with the 
"Default Paragraph Style". To change the bullet style that is used, select this 
option, and then click Edit.
 
 removed "replace standard quotes..." cws cbosdo01
 Combine single line paragraphs if length greater than...
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 122247] [META] Icon requests

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122247

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||140026


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=140026
[Bug 140026] Need an icon for List View
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 140026] Need an icon for List View

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140026

Rizal Muttaqin  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |riz...@libreoffice.org
   |desktop.org |
 Blocks||122247
 Depends on||140013


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122247
[Bug 122247] [META] Icon requests
https://bugs.documentfoundation.org/show_bug.cgi?id=140013
[Bug 140013] Change icon for List View in Template Manager and Remotes File
dialog to be real list view, not detailed view
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 140026] New: Need an icon for List View

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140026

Bug ID: 140026
   Summary: Need an icon for List View
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: riz...@libreoffice.org

With the change that come with tdf#140013 every LibreOffice icon theme need an
icon for List View:

icon-theme//svx/res/listview.png
icon-theme//svx/res/listview.svg

-- 
You are receiving this mail because:
You 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: fpicker/uiconfig icon-themes/colibre icon-themes/colibre_svg sfx2/uiconfig svx/uiconfig

2021-01-30 Thread Rizal Muttaqin (via logerrit)
 fpicker/uiconfig/ui/remotefilesdialog.ui |2 +-
 icon-themes/colibre/svx/res/listview.png |binary
 icon-themes/colibre_svg/svx/res/listview.svg |1 +
 sfx2/uiconfig/ui/templatedlg.ui  |2 +-
 svx/uiconfig/ui/sidebargallery.ui|2 +-
 5 files changed, 4 insertions(+), 3 deletions(-)

New commits:
commit 890bcba4a1239c9001736485ef3a4dc4879a91f5
Author: Rizal Muttaqin 
AuthorDate: Sun Jan 31 00:12:24 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Sat Jan 30 23:27:40 2021 +0100

tdf#140013 change icon for list view in Template Manager & Remote Files 
dialog

Change-Id: I37b04d39efa7b328cff0df54a5b187876db8ba5e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110171
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/fpicker/uiconfig/ui/remotefilesdialog.ui 
b/fpicker/uiconfig/ui/remotefilesdialog.ui
index fb360af65a7d..9f4034deefc7 100644
--- a/fpicker/uiconfig/ui/remotefilesdialog.ui
+++ b/fpicker/uiconfig/ui/remotefilesdialog.ui
@@ -10,7 +10,7 @@
   
 True
 False
-svx/res/gallist.png
+svx/res/listview.png
   
   
 True
diff --git a/icon-themes/colibre/svx/res/gallist.png 
b/icon-themes/colibre/svx/res/galdetail.png
similarity index 100%
rename from icon-themes/colibre/svx/res/gallist.png
rename to icon-themes/colibre/svx/res/galdetail.png
diff --git a/icon-themes/colibre/svx/res/listview.png 
b/icon-themes/colibre/svx/res/listview.png
new file mode 100644
index ..ec07c4b9b4e7
Binary files /dev/null and b/icon-themes/colibre/svx/res/listview.png differ
diff --git a/icon-themes/colibre_svg/svx/res/gallist.svg 
b/icon-themes/colibre_svg/svx/res/galdetail.svg
similarity index 100%
rename from icon-themes/colibre_svg/svx/res/gallist.svg
rename to icon-themes/colibre_svg/svx/res/galdetail.svg
diff --git a/icon-themes/colibre_svg/svx/res/listview.svg 
b/icon-themes/colibre_svg/svx/res/listview.svg
new file mode 100644
index ..a66dc34456af
--- /dev/null
+++ b/icon-themes/colibre_svg/svx/res/listview.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/sfx2/uiconfig/ui/templatedlg.ui b/sfx2/uiconfig/ui/templatedlg.ui
index 2f266cff1596..2ae5bc539c8f 100644
--- a/sfx2/uiconfig/ui/templatedlg.ui
+++ b/sfx2/uiconfig/ui/templatedlg.ui
@@ -43,7 +43,7 @@
   
 True
 False
-svx/res/gallist.png
+svx/res/listview.png
   
   
 True
diff --git a/svx/uiconfig/ui/sidebargallery.ui 
b/svx/uiconfig/ui/sidebargallery.ui
index 9ed2de601a90..800f42476519 100644
--- a/svx/uiconfig/ui/sidebargallery.ui
+++ b/svx/uiconfig/ui/sidebargallery.ui
@@ -10,7 +10,7 @@
   
 True
 False
-svx/res/gallist.png
+svx/res/galdetail.png
   
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 139296] scrolling document canvas down & up can cause a line of text to "tear" with loss of registration, it clears when the line moves out of view far enough or view passes to

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139296

--- Comment #41 from spokanemagn...@gmail.com ---
(In reply to Telesto from comment #40)
> (In reply to spokanemagneto from comment #39)
> It's likely in 4.3 too, have seen it happen on macOS. However never got a
> hold on it.. but looks like GDI isn't affected.. so needs testing on
> Linux/macOS.
> 
> I speculate it can not be seen in 4.4.7.2 with OpenGL enabled because some
> weird timer madness.. Timer logic changed with 4.4.7.2 - 5.1 branch. Causing
> the issue to be more prominent.. but lingering around earlier on.
> 
> It appears mouse clicks are triggering a (full?) layout refresh or something
> like that at some point.. With different offset of few pixels or even
> rounding?? Where the backend holding a different image of the page
> (shifting) compared to the 'paint buffer'. And clicking around triggers a
> paint buffer invalidation/ repaint) Where the difference shows up and
> incrementally resolved as screen refreshes in parts.. Leaving sometimes
> artifacts. 
> 
> But well that's my invented story of someone who has actually no knowledge
> the matter.



Well, it sounds plausible to me, but I'm an electronic technician by vocation
and only a software programmer by avocation. I have more reading to do on
OpenGL as initially I came away with the notion that it was primarily used for
heavy graphics usage, which I would not think would affect a word processor, so
I put that aside for the time being, but maybe I should look into downloading
OpenGL.

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


[Libreoffice-commits] core.git: Branch 'private/timar/fontconfigcrash' - vcl/unx

2021-01-30 Thread Andras Timar (via logerrit)
 vcl/unx/generic/fontmanager/fontconfig.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 0135cdee768fcea2e628452509e380c39bafc8ec
Author: Andras Timar 
AuthorDate: Sat Jan 30 23:21:34 2021 +0100
Commit: Andras Timar 
CommitDate: Sat Jan 30 23:21:34 2021 +0100

debug 14

Change-Id: I41767cd3b9e519b82d5d16d659b760ed1bb29701

diff --git a/vcl/unx/generic/fontmanager/fontconfig.cxx 
b/vcl/unx/generic/fontmanager/fontconfig.cxx
index 3a99196b347b..7684763c0cca 100644
--- a/vcl/unx/generic/fontmanager/fontconfig.cxx
+++ b/vcl/unx/generic/fontmanager/fontconfig.cxx
@@ -95,6 +95,7 @@ FontCfgWrapper::FontCfgWrapper()
 if(!conf)
 {
 std::cerr << "/etc/fonts/fonts.conf is not readable from LO core" << 
std::endl;
+std::cerr << "Snap: " << getenv("SNAP") << std::endl;
 }
 else
 std::cerr << "/etc/fonts/fonts.conf is readable from LO core" << 
std::endl;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 139520] LO base (HSQLDB & FIREBIRD): crashes frequently during creation and editing a report design

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139520

--- Comment #6 from Richard Demattio  ---
Created attachment 169314
  --> https://bugs.documentfoundation.org/attachment.cgi?id=169314=edit
The database to the comment 5 (I discarded the recovery)

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


[Libreoffice-bugs] [Bug 139520] LO base (HSQLDB & FIREBIRD): crashes frequently during creation and editing a report design

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139520

--- Comment #5 from Richard Demattio  ---
I created a HSQLDB from scratch (I will send it as attachment)
I created the table from the suggestion
I created the report with the wizard
After saving I entered editing mode again and only resized two fields and moved
them back and forward, up and down for a few minutes.

I also moved them over the borders between for example header and details

Here is the crash.  8a513d7d-0c7c-47be-96cf-79ce25753a15

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


[Libreoffice-bugs] [Bug 139129] FILEOPEN: on arm platform: lowriter does not start, circles through crashes and offers to reconstruct the last file

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139129

--- Comment #1 from pe...@web.de ---
I've now managed to find a way to get some more info:

$ lowriter  --norestore
Application Error


Fatal exception: Signal 6
Stack:
/usr/lib/libreoffice/program/libuno_sal.so.3(+0x39f8c)[0xb6efff8c]
/usr/lib/libreoffice/program/libuno_sal.so.3(+0x3a154)[0xb6f00154]
/usr/lib/libc.so.6(__default_rt_sa_restorer+0x0)[0xb6ca6df0]
/usr/lib/libc.so.6(gsignal+0xbc)[0xb6ca5aa0]

Hope that helps.

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


[Libreoffice-bugs] [Bug 139520] LO base (HSQLDB & FIREBIRD): crashes frequently during creation and editing a report design

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139520

--- Comment #4 from Richard Demattio  ---
I continue producing crashes when moving fields in reports with mouse.

It happens more frequently when I select two fields and try to move them with
mouse
The report: a981da97-b521-4fa8-b823-67f99f74aafe

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


[Libreoffice-bugs] [Bug 139296] scrolling document canvas down & up can cause a line of text to "tear" with loss of registration, it clears when the line moves out of view far enough or view passes to

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139296

--- Comment #40 from Telesto  ---
(In reply to spokanemagneto from comment #39)
It's likely in 4.3 too, have seen it happen on macOS. However never got a hold
on it.. but looks like GDI isn't affected.. so needs testing on Linux/macOS.

I speculate it can not be seen in 4.4.7.2 with OpenGL enabled because some
weird timer madness.. Timer logic changed with 4.4.7.2 - 5.1 branch. Causing
the issue to be more prominent.. but lingering around earlier on.

It appears mouse clicks are triggering a (full?) layout refresh or something
like that at some point.. With different offset of few pixels or even
rounding?? Where the backend holding a different image of the page (shifting)
compared to the 'paint buffer'. And clicking around triggers a paint buffer
invalidation/ repaint) Where the difference shows up and incrementally resolved
as screen refreshes in parts.. Leaving sometimes artifacts. 

But well that's my invented story of someone who has actually no knowledge the
matter.

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

2021-01-30 Thread Mike Kaganski (via logerrit)
 cppu/source/threadpool/current.cxx |   49 -
 1 file changed, 6 insertions(+), 43 deletions(-)

New commits:
commit ef6a57ed4e8984bed06e2911b07436498710d80d
Author: Mike Kaganski 
AuthorDate: Fri Jan 29 14:58:02 2021 +0100
Commit: Mike Kaganski 
CommitDate: Sat Jan 30 22:14:36 2021 +0100

Don't use global mutex here for static initialization

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

diff --git a/cppu/source/threadpool/current.cxx 
b/cppu/source/threadpool/current.cxx
index 7dbfc9050488..6acad514cac7 100644
--- a/cppu/source/threadpool/current.cxx
+++ b/cppu/source/threadpool/current.cxx
@@ -81,47 +81,6 @@ static typelib_InterfaceTypeDescription * 
get_type_XCurrentContext()
 return s_type_XCurrentContext;
 }
 
-namespace {
-
-class ThreadKey
-{
-bool _bInit;
-oslThreadKey _hThreadKey;
-oslThreadKeyCallbackFunction _pCallback;
-
-public:
-oslThreadKey getThreadKey()
-{
-if (! _bInit)
-{
-MutexGuard aGuard( Mutex::getGlobalMutex() );
-if (! _bInit)
-{
-_hThreadKey = ::osl_createThreadKey( _pCallback );
-_bInit = true;
-}
-}
-return _hThreadKey;
-}
-
-explicit ThreadKey( oslThreadKeyCallbackFunction pCallback )
-: _bInit(false)
-, _hThreadKey(nullptr)
-, _pCallback(pCallback)
-{
-}
-
-~ThreadKey()
-{
-if (_bInit)
-{
-::osl_destroyThreadKey( _hThreadKey );
-}
-}
-};
-
-}
-
 extern "C" {
 
 static void delete_IdContainer( void * p )
@@ -149,8 +108,12 @@ static void delete_IdContainer( void * p )
 
 IdContainer * getIdContainer()
 {
-static ThreadKey s_key( delete_IdContainer );
-oslThreadKey aKey = s_key.getThreadKey();
+struct ThreadKey
+{
+oslThreadKey _hThreadKey;
+~ThreadKey() { osl_destroyThreadKey(_hThreadKey); }
+} static const s_key{ osl_createThreadKey(delete_IdContainer) };
+oslThreadKey aKey = s_key._hThreadKey;
 
 IdContainer * pId = static_cast< IdContainer * >( ::osl_getThreadKeyData( 
aKey ) );
 if (! pId)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 139296] scrolling document canvas down & up can cause a line of text to "tear" with loss of registration, it clears when the line moves out of view far enough or view passes to

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139296

--- Comment #39 from spokanemagn...@gmail.com ---
(In reply to Telesto from comment #38)
> Created attachment 169306 [details]
> Screenshot 7200 master
> 
> Double (or triple) clicking.. before starting selection.. after the
> selection done.. to deselect rather good in triggering the problem

Thanks for the series of observations you've made, especially that it also
occurs in earlier versions.

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


[Libreoffice-bugs] [Bug 139918] Page Format Size set to A4 instead of Letter for US users

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139918

--- Comment #6 from spokanemagn...@gmail.com ---
(In reply to BogdanB from comment #4)
> spokanemagneto, what version are you using? Maybe you are using an old
> version, and the problem is solved in a new version.
> 
> Go to Help - About LibreOffice and copy that techincal info from there. And
> paste here in the bug report.
> 
> Thanks

Please take note of the version listed above, directly below Product and then
Component. This is the latest release version.

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


[Libreoffice-bugs] [Bug 139918] Page Format Size set to A4 instead of Letter for US users

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139918

--- Comment #5 from spokanemagn...@gmail.com ---
(In reply to Xisco Faulí from comment #3)
> Thanks for reporting this issue.
> Could you please paste the info from Help - about LibreOffice ?
> 
> I have set the bug's status to 'NEEDINFO'. Please change it back to
> 'UNCONFIRMED' once the information has been provided


I am not sure I understand what you are getting at. Of what importance is the
content of the help menu in resolving this issue? And, why can't you simply
look at it yourself without me having to copy and paste it here? The fact is
that the default paper size for the United States is Letter--not A4, which is a
problem in and of itself, but I believe it is also a possible root cause of the
incorrect margin issue (especially in the Normal(0.75") setting).

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


[Libreoffice-bugs] [Bug 130677] Support for Basic literals is incomplete

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130677

Shubham Jain  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |shubham656j...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 140010] Export as CSV should always "quote" Text fields

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140010

BogdanB  changed:

   What|Removed |Added

 Resolution|INVALID |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 140025] Tabbed User Interface in Libreoffice shows white space in macOS Big Sur

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140025

--- Comment #1 from bones  ---
Created attachment 169313
  --> https://bugs.documentfoundation.org/attachment.cgi?id=169313=edit
white spot on active selected tab

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


[Libreoffice-bugs] [Bug 140025] New: Tabbed User Interface in Libreoffice shows white space in macOS Big Sur

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140025

Bug ID: 140025
   Summary: Tabbed User Interface in Libreoffice shows white space
in macOS Big Sur
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: Other
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@live.de

Description:
Every time when I use LO sinc updating to macOS Big Sur, in the tabbed view the
selected field is white.
It is still present in the 7.1 rc2 version.

Steps to Reproduce:
1. select View, 
2. select User Interface
3. select Tabbed

Actual Results:
a white field in the selected tab, fonts are not viewable

Expected Results:
viewable fonts


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 7.0.4.2
Build ID: dcf040e67528d9187c66b2379df5ea4407429775
CPU threads: 16; OS: Mac OS X 10.16; UI render: default; VCL: osx
Locale: de-DE (de_DE.UTF-8); UI: de-DE
Calc: threaded

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


[Libreoffice-bugs] [Bug 140010] Export as CSV should always "quote" Text fields

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140010

Jim Avera  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|NEEDINFO|RESOLVED

--- Comment #4 from Jim Avera  ---
Right you are.  I mis-read that option as "quote all cells".  Thanks for the
correction.

Closing

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


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - sd/source

2021-01-30 Thread Xisco Fauli (via logerrit)
 sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit d71f7138d664b62604a4e4e7fc6e1b1073df1899
Author: Xisco Fauli 
AuthorDate: Fri Jan 29 12:42:09 2021 +0100
Commit: Caolán McNamara 
CommitDate: Sat Jan 30 20:17:01 2021 +0100

tdf#139996: do not crash if no slide is selected

when no slide is selected, SyncPageSelectionToDocument(xSelection).first
returns SAL_MAX_UINT16, which is greater than 0
Change-Id: I20225dc3c89a34358949f991d1548e11803c3131

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

diff --git a/sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx 
b/sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx
index 028d8f2a4266..2cfbddcaa998 100644
--- a/sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx
+++ b/sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx
@@ -763,6 +763,11 @@ void SlideSorterViewShell::ExecMovePageUp (SfxRequest& 
/*rReq*/)
 // SdDrawDocument MovePages is based on SdPage IsSelected, so
 // transfer the SlideSorter selection to SdPages
 sal_uInt16 firstSelectedPageNo = 
SyncPageSelectionToDocument(xSelection).first;
+
+// In case no slide is selected
+if (firstSelectedPageNo == SAL_MAX_UINT16)
+return;
+
 // Now compute human page number from internal page number
 firstSelectedPageNo = (firstSelectedPageNo - 1) / 2;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140015] CONFIGURATION: JNI exception occurred with Zotero OpenOffice Integration

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140015

--- Comment #3 from Diarmuid O'Briain  ---
I went for the nuclear option and I have reinstalled Linux Mint 20.1 Ulyssa
from scratch as against the upgrade from Mint 20.0 Ulyana I had previously
carried out. Zotero connects fine with LibreOffice now and the integration was
successful.

[code]$ java --version
openjdk 11.0.9.1 2020-11-04

Version: 6.4.6.2
Build ID: 1:6.4.6-0ubuntu0.20.04.1
CPU threads: 12; OS: Linux 5.4; UI render: default; VCL: gtk3;
Locale: en-IE (en_IE.UTF-8); UI-Language: en-US
Calc: CL[/code]

Something happened in the upgrade process from Linux Mint 20.0 Ulyana that was
causing the problem, presumably with Java?

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


[Libreoffice-bugs] [Bug 140015] CONFIGURATION: JNI exception occurred with Zotero OpenOffice Integration

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140015

Diarmuid O'Briain  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 39674] find / fix all German spellings in internal APIs

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39674

n...@allesjetzt.net  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |n...@allesjetzt.net
   |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 140023] Screen quality of low res images bad; Skia (fine with GDI)

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140023

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 140023] Screen quality of low res images bad; Skia (fine with GDI)

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140023

--- Comment #5 from V Stuart Foote  ---
Created attachment 169312
  --> https://bugs.documentfoundation.org/attachment.cgi?id=169312=edit
canvas rendered with Skia raster

For completeness here is the canvas with Skia raster only rendering, the same.

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


[Libreoffice-bugs] [Bug 140023] Screen quality of low res images bad; Skia (fine with GDI)

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140023

--- Comment #4 from V Stuart Foote  ---
Created attachment 169311
  --> https://bugs.documentfoundation.org/attachment.cgi?id=169311=edit
canvas rendered with default GDI

Confirm a noticeable degradation with Skia rendering of raster images

testing Windows 10
RenderMethod: vulkan
Vendor: 0x8086
Device: 0x5916
API: 1.2.151
Driver: 0.402.591
DeviceType: integrated
DeviceName: Intel(R) HD Graphics 620
Denylisted: no


Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 66013201749df7d5ac5ddaf377a7b3732518a93b
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 140023] Screen quality of low res images bad; Skia (fine with GDI)

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140023

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #3 from V Stuart Foote  ---
Created attachment 169310
  --> https://bugs.documentfoundation.org/attachment.cgi?id=169310=edit
canvas rendered with Skia Vulkan

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


[Libreoffice-bugs] [Bug 140003] Layout broken between LibreOffice 6 and LibreOffice 7

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140003

--- Comment #7 from V Stuart Foote  ---
(In reply to V Stuart Foote from comment #6)
> 
> Kind of seems an os/DE font management issue.

Did some font changes on Windows builds, and a 'Noto Sans Light' is a pretty
good match to font metric of the screen clip of original created on 7.0.4.2

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


[Libreoffice-bugs] [Bug 140003] Layout broken between LibreOffice 6 and LibreOffice 7

2021-01-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140003

--- Comment #6 from V Stuart Foote  ---
Created attachment 169309
  --> https://bugs.documentfoundation.org/attachment.cgi?id=169309=edit
embedded fonts of sample ODF, no "OpenSansLight1" of Header style

(In reply to Björn from comment #5)
> Thanks for the hint. I enabled "Embed fonts in the document" in the
> documents properties. Should this way all necessary fonts be stored directly
> in the document? I thought this option exist exactly for the purpose to
> avoid the problem of missing fonts on other systems.

Well, the document had embedded fonts just not the "Open Sans Light" of the
active text cursor focused in the Header. Seems to be a custom template with
Header paragraph "MP2" assigned "OpenSansLight1" font. 

Clearly the system with LO 7 either has that installed or has font fallback
handling (perhaps to the DejaVu Sans of the embedded fonts). But the LO 6
loaded system does not.

Kind of seems an os/DE font management issue.

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


  1   2   3   >