[Libreoffice-bugs] [Bug 146441] Table of Figures: Wrong on a multi page view

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146441

Heiko Tietze  changed:

   What|Removed |Added

 Blocks||130318
 CC||vmik...@collabora.com

--- Comment #6 from Heiko Tietze  ---
Miklos, do you have an advice here? I'd love to see bug 130318 implemented (ToC
everywhere) but Andreas considers this issue as a blocker.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=130318
[Bug 130318] Use the actual cursor position to create ToC "for chapter"
beginning at the current level (impacts odm master documents)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146388] PDF export of sheet with charts loost some data and presentation

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146388

Vikas  changed:

   What|Removed |Added

Version|7.3.0.0.alpha1+ |7.2.4.1 release

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 145996] Collate Rows and Columns.

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145996

onlyshi...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
   Severity|normal  |enhancement
   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||onlyshi...@gmail.com

--- Comment #4 from onlyshi...@gmail.com ---
do you mean that a new row or column should be inserted after/before each
selected one?

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 145996] Collate Rows and Columns.

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145996

onlyshi...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
   Severity|normal  |enhancement
   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||onlyshi...@gmail.com

--- Comment #4 from onlyshi...@gmail.com ---
do you mean that a new row or column should be inserted after/before each
selected one?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146522] EDITING: UI: Base Form Window Is Partly Hidden Behind Windows Taskbar

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146522

onlyshi...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from onlyshi...@gmail.com ---
Thank you for reporting the bug. I can confirm that the bug is present in
Version: 7.4.0.0.alpha0+ (x86) / LibreOffice Community
Build ID: 4ac9032163cf55c160145373e7c41741c9c339ca
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2022-01-05 Thread Miklos Vajna (via logerrit)
 sw/source/core/doc/textboxhelper.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit d9061f32b5d225f221e9399c5fa54996a6f7f43b
Author: Miklos Vajna 
AuthorDate: Wed Jan 5 20:08:58 2022 +0100
Commit: Miklos Vajna 
CommitDate: Thu Jan 6 08:31:51 2022 +0100

sw textbox: pShape -> pFormat for frame formats

A frame format can be a fly or a draw frame format. Only the later is a
shape.

Also this way the parameter name in the definition matches the
declaration, improving readability.

Change-Id: I69e51bfaceba925002d23cdfb5fa6d60afa3c550
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128023
Tested-by: Jenkins
Reviewed-by: Miklos Vajna 

diff --git a/sw/source/core/doc/textboxhelper.cxx 
b/sw/source/core/doc/textboxhelper.cxx
index 3ad9f5ec5f48..65f6e2e03863 100644
--- a/sw/source/core/doc/textboxhelper.cxx
+++ b/sw/source/core/doc/textboxhelper.cxx
@@ -1527,16 +1527,16 @@ bool 
SwTextBoxHelper::DoTextBoxZOrderCorrection(SwFrameFormat* pShape, const Sdr
 }
 
 void SwTextBoxHelper::synchronizeGroupTextBoxProperty(bool 
pFunc(SwFrameFormat*, SdrObject*),
-  SwFrameFormat* pShape, 
SdrObject* pObj)
+  SwFrameFormat* pFormat, 
SdrObject* pObj)
 {
 if (auto pChildren = pObj->getChildrenOfSdrObject())
 {
 for (size_t i = 0; i < pChildren->GetObjCount(); ++i)
-synchronizeGroupTextBoxProperty(pFunc, pShape, 
pChildren->GetObj(i));
+synchronizeGroupTextBoxProperty(pFunc, pFormat, 
pChildren->GetObj(i));
 }
 else
 {
-(*pFunc)(pShape, pObj);
+(*pFunc)(pFormat, pObj);
 }
 }
 


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-2021' - filter/source

2022-01-05 Thread Szymon Kłos (via logerrit)
 filter/source/textfilterdetect/filterdetect.cxx |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit d9a4e323555d01202dd15e71a3a32294bfd568cc
Author: Szymon Kłos 
AuthorDate: Wed Jan 5 17:29:49 2022 +0100
Commit: Miklos Vajna 
CommitDate: Thu Jan 6 08:29:58 2022 +0100

Open empty (0 bytes) ods as spreadsheet

Before this patch we opened it with Writer UI because
we didn't detect any filter with PREFFERED annotation

Change-Id: I6262fb695b5fe20a377120f298f144e2cafbadc9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128015
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Miklos Vajna 

diff --git a/filter/source/textfilterdetect/filterdetect.cxx 
b/filter/source/textfilterdetect/filterdetect.cxx
index 915020aa117c..0c00abf28e87 100644
--- a/filter/source/textfilterdetect/filterdetect.cxx
+++ b/filter/source/textfilterdetect/filterdetect.cxx
@@ -155,7 +155,12 @@ bool HandleEmptyFileUrlByExtension(MediaDescriptor& 
rMediaDesc, const OUString&
 std::shared_ptr 
pFilter(SfxFilterMatcher().GetFilter4Extension(rExt, nMust));
 if (!pFilter)
 {
-return false;
+// retry without PREFFERED so we can find at least something for 
0-byte *.ods
+nMust = SfxFilterFlags::IMPORT | SfxFilterFlags::EXPORT;
+pFilter = SfxFilterMatcher().GetFilter4Extension(rExt, nMust);
+
+if (!pFilter)
+return false;
 }
 
 rMediaDesc[MediaDescriptor::PROP_FILTERNAME()] <<= 
pFilter->GetFilterName();


[Libreoffice-bugs] [Bug 146604] New: Calc - calculation error at last two digits with big numbers (15 digits)

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146604

Bug ID: 146604
   Summary: Calc - calculation error at last two digits with big
numbers (15 digits)
   Product: LibreOffice
   Version: 7.1.1.2 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dummy1...@outlook.de

Description:
when I make a sum of two big numbers with 15 digits each, the last two digits
are not calculated correctly.
No matter if the last two digits are decimal places or not.

Steps to Reproduce:
#1
1. enter the number 5,629,499,534,213.13 in cell A1
2. double the number in A2 with =2*A1
or

#2
1. enter the number 4,503,599,627,370,496 in cell A1
2. enter the same number 4,503,599,627,370,496 in cell A2
3. in A3 sum the two above with =SUM(A1:A2)

Actual Results:
#1
11,258,999,068,426.30

#2
9,007,199,254,740,990

Expected Results:
#1
11,258,999,068,426.26

#2
9,007,199,254,740,992


Reproducible: Always


User Profile Reset: No



Additional Info:
if you go on doubling the numbers, the results are always wrong.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Re: ESC meeting agenda: 2022-01-06 16:00 Berlin time

2022-01-05 Thread Heiko Tietze

On 05.01.22 16:23, Miklos Vajna wrote:

The prototype agenda is below. Extra items are appreciated either in
this document or as a reply to this mail:


It has been requested to remove FTP support [1]. Guess not many will shed a tear 
and we can easily agree on this.


[1] https://bugs.documentfoundation.org/show_bug.cgi?id=146386


OpenPGP_signature
Description: OpenPGP digital signature


[Libreoffice-bugs] [Bug 146371] Default styling of footnotes in LibreOffice vs Default styling of footnotes in (Microsoft Office+WPS Office+paper books)

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146371

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Status|UNCONFIRMED |RESOLVED
 Whiteboard| QA:needsComment|
 Resolution|--- |NOTABUG

--- Comment #6 from Dieter  ---
You can also find a lot of examples of books with footnotes in normal position.
Since you can easily customize character style of the footnote, I would say
NOTABUG. Feel free to change it bck to UNCONFIRMED with a short reasoning, if
you disagree.

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2022-01-05 Thread Noel Grandin (via logerrit)
 chart2/source/view/main/PropertyMapper.cxx |8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

New commits:
commit 1626122615828c2c1689fb3aab2d05e0bdc1b4d3
Author: Noel Grandin 
AuthorDate: Wed Jan 5 20:41:44 2022 +0200
Commit: Noel Grandin 
CommitDate: Thu Jan 6 07:16:14 2022 +0100

avoid Sequence realloc

construct with the right size

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

diff --git a/chart2/source/view/main/PropertyMapper.cxx 
b/chart2/source/view/main/PropertyMapper.cxx
index c54d15a8aa53..c8bd6e1d61eb 100644
--- a/chart2/source/view/main/PropertyMapper.cxx
+++ b/chart2/source/view/main/PropertyMapper.cxx
@@ -63,14 +63,12 @@ void PropertyMapper::setMappedProperties(
 if( !xSource.is() )
 return;
 
-tNameSequence aNames;
-tAnySequence  aValues;
-sal_Int32 nN=0;
 sal_Int32 nPropertyCount = rMap.size();
-aNames.realloc(nPropertyCount);
+tNameSequence aNames(nPropertyCount);
+tAnySequence  aValues(nPropertyCount);
 auto pNames = aNames.getArray();
-aValues.realloc(nPropertyCount);
 auto pValues = aValues.getArray();
+sal_Int32 nN=0;
 
 for (auto const& elem : rMap)
 {


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

2022-01-05 Thread Noel Grandin (via logerrit)
 chart2/source/inc/CommonConverters.hxx  |7 +
 chart2/source/tools/CommonConverters.cxx|   28 ++
 chart2/source/view/charttypes/AreaChart.cxx |   20 ++--
 chart2/source/view/charttypes/BarChart.cxx  |   42 ++---
 chart2/source/view/charttypes/NetChart.cxx  |   12 +-
 chart2/source/view/inc/PropertyMapper.hxx   |5 +
 chart2/source/view/inc/ShapeFactory.hxx |5 -
 chart2/source/view/main/PropertyMapper.cxx  |  125 
 chart2/source/view/main/ShapeFactory.cxx|   36 
 include/svx/svdobj.hxx  |2 
 svx/source/svdraw/svdobj.cxx|   18 
 svx/source/unodraw/unoshape.cxx |   14 ---
 12 files changed, 254 insertions(+), 60 deletions(-)

New commits:
commit 0b0934056b47485527442b6366d7fd3274a4601f
Author: Noel Grandin 
AuthorDate: Tue Jan 4 18:50:01 2022 +0200
Commit: Noel Grandin 
CommitDate: Thu Jan 6 07:15:48 2022 +0100

bypass SvxShape when creating rectangles in chart2

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

diff --git a/chart2/source/inc/CommonConverters.hxx 
b/chart2/source/inc/CommonConverters.hxx
index 18adcebf7187..989e4002d148 100644
--- a/chart2/source/inc/CommonConverters.hxx
+++ b/chart2/source/inc/CommonConverters.hxx
@@ -29,6 +29,7 @@
 #include 
 #include 
 #include 
+#include 
 #include "charttoolsdllapi.hxx"
 
 namespace com::sun::star::awt { struct Rectangle; }
@@ -112,6 +113,12 @@ OOO_DLLPUBLIC_CHARTTOOLS
 css::drawing::PointSequenceSequence PolyToPointSequence(
 const css::drawing::PolyPolygonShape3D& rPolyPolygon );
 
+/** PolyPolygonShape3D ->  basegfx::B2DPolyPolygon (2D)
+*/
+OOO_DLLPUBLIC_CHARTTOOLS
+basegfx::B2DPolyPolygon PolyToB2DPolyPolygon(
+const css::drawing::PolyPolygonShape3D& rPolyPolygon );
+
 /** drawing::PointSequenceSequence + drawing::PointSequenceSequence
 */
 OOO_DLLPUBLIC_CHARTTOOLS
diff --git a/chart2/source/tools/CommonConverters.cxx 
b/chart2/source/tools/CommonConverters.cxx
index 2695d2da3418..43069cd40ad3 100644
--- a/chart2/source/tools/CommonConverters.cxx
+++ b/chart2/source/tools/CommonConverters.cxx
@@ -26,6 +26,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -345,6 +346,33 @@ drawing::PointSequenceSequence PolyToPointSequence(
 return aRet;
 }
 
+basegfx::B2DPolyPolygon PolyToB2DPolyPolygon(
+const drawing::PolyPolygonShape3D& rPolyPolygon )
+{
+basegfx::B2DPolyPolygon aRetval;
+
+for(sal_Int32 nN = 0; nN < rPolyPolygon.SequenceX.getLength(); nN++)
+{
+basegfx::B2DPolygon aNewPolygon;
+sal_Int32 nInnerLength = rPolyPolygon.SequenceX[nN].getLength();
+if(nInnerLength)
+{
+aNewPolygon.reserve(nInnerLength);
+for( sal_Int32 nM = 0; nM < nInnerLength; nM++)
+{
+auto X = 
static_cast(rPolyPolygon.SequenceX[nN][nM]);
+auto Y = 
static_cast(rPolyPolygon.SequenceY[nN][nM]);
+aNewPolygon.append(basegfx::B2DPoint(X, Y));
+}
+// check for closed state flag
+basegfx::utils::checkClosed(aNewPolygon);
+}
+aRetval.append(std::move(aNewPolygon));
+}
+
+return aRetval;
+}
+
 void appendPointSequence( drawing::PointSequenceSequence& rTarget
 , drawing::PointSequenceSequence& rAdd )
 {
diff --git a/chart2/source/view/charttypes/AreaChart.cxx 
b/chart2/source/view/charttypes/AreaChart.cxx
index 3972aba068fd..e4864cca63f7 100644
--- a/chart2/source/view/charttypes/AreaChart.cxx
+++ b/chart2/source/view/charttypes/AreaChart.cxx
@@ -501,22 +501,26 @@ bool AreaChart::impl_createArea( VDataSeries* pSeries
 pPosHelper->transformScaledLogicToScene( aPoly );
 
 //create area:
-rtl::Reference< SvxShape > xShape;
 if(m_nDimension==3)
 {
-xShape = ShapeFactory::createArea3D( xSeriesGroupShape_Shapes
+rtl::Reference< SvxShape > xShape = ShapeFactory::createArea3D( 
xSeriesGroupShape_Shapes
 , aPoly, getTransformedDepth() );
+PropertyMapper::setMappedProperties( *xShape
+, pSeries->getPropertiesOfSeries()
+, 
PropertyMapper::getPropertyNameMapForFilledSeriesProperties() );
+//because of this name this line will be used for marking
+ShapeFactory::setShapeName(xShape, "MarkHandles");
 }
 else //m_nDimension!=3
 {
-xShape = ShapeFactory::createArea2D( xSeriesGroupShape_Shapes
+SdrPathObj* pShape = ShapeFactory::createArea2D( 
xSeriesGroupShape_Shapes
 , aPoly );
+PropertyMapper::setPropertyNameMapForFilledSeriesProperties(
+pShape
+, pSeries->getPropertiesOfSeries());
+//because of this name this line will be used for marking
+

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

2022-01-05 Thread Andrea Gelmini (via logerrit)
 0 files changed

New commits:
commit ea545653e17e687c9069543897975b3726dc6a2b
Author: Andrea Gelmini 
AuthorDate: Wed Jan 5 18:32:52 2022 +0100
Commit: Julien Nabet 
CommitDate: Thu Jan 6 07:13:34 2022 +0100

Removed executable permission on pptx file

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

diff --git a/oox/qa/unit/data/camera-rotation-revolution-nonwps.pptx 
b/oox/qa/unit/data/camera-rotation-revolution-nonwps.pptx
old mode 100755
new mode 100644


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

2022-01-05 Thread Mike Kaganski (via logerrit)
 sal/osl/w32/module.cxx |   11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

New commits:
commit 2fd019442e14e122884fff42b88de23fa150e4df
Author: Mike Kaganski 
AuthorDate: Thu Jan 6 01:12:31 2022 +0300
Commit: Mike Kaganski 
CommitDate: Thu Jan 6 06:46:20 2022 +0100

Simplify osl_getModuleURLFromAddress a bit

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

diff --git a/sal/osl/w32/module.cxx b/sal/osl/w32/module.cxx
index 201f2dd164ee..57eec8b70012 100644
--- a/sal/osl/w32/module.cxx
+++ b/sal/osl/w32/module.cxx
@@ -26,6 +26,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -182,15 +183,11 @@ sal_Bool SAL_CALL osl_getModuleURLFromAddress( void *pv, 
rtl_uString **pustrURL
 return false;
 
 ::osl::LongPathBuffer aBuffer(MAX_LONG_PATH);
-rtl_uString* ustrSysPath = nullptr;
 
-GetModuleFileNameW(hModule, o3tl::toW(aBuffer), 
aBuffer.getBufSizeInSymbols());
+DWORD nch = GetModuleFileNameW(hModule, o3tl::toW(aBuffer), 
aBuffer.getBufSizeInSymbols());
 
-rtl_uString_newFromStr(, aBuffer);
-osl_getFileURLFromSystemPath(ustrSysPath, pustrURL);
-rtl_uString_release(ustrSysPath);
-
-return true;
+OUString ustrSysPath(aBuffer, nch);
+return osl_getFileURLFromSystemPath(ustrSysPath.pData, pustrURL) == 
osl_File_E_None;
 }
 
 sal_Bool SAL_CALL osl_getModuleURLFromFunctionAddress( oslGenericFunction 
addr, rtl_uString ** ppLibraryUrl )


[Libreoffice-bugs] [Bug 146372] Dialogue box for DATA Subtotals extends across multiple monitors

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146372

--- Comment #1 from Colin  ---
Perhaps I should have clarified - the effect is apparent regardless of which
monitor holds the active sheet.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146112] IsNull must return False when testing object variables (including non-initialized/assigned to Nothing) in VBASupport 1 mode

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146112

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146372] Dialogue box for DATA Subtotals extends across multiple monitors

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146372

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146371] Default styling of footnotes in LibreOffice vs Default styling of footnotes in (Microsoft Office+WPS Office+paper books)

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146371

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146594] Data in chart/image is truncated when copying a bar plot with a cell in error state

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146594

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] [Bug 146594] Data in chart/image is truncated when copying a bar plot with a cell in error state

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146594

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146575] Writer won't export hyperlinks to pdf

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146575

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] [Bug 146575] Writer won't export hyperlinks to pdf

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146575

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146461] LibreOffice Spreadsheet crash when clicking and dragging over formulas

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146461

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146461] LibreOffice Spreadsheet crash when clicking and dragging over formulas

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146461

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 135180] LibreOffice crashes on startup, but not as sudo

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135180

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

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] [Bug 133627] 6.4.4.2 produces docx that crashes Word from Office 2019

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133627

--- Comment #10 from QA Administrators  ---
Dear PMouse,

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] [Bug 128330] Writer: invoice date field doesn't export to pdf with Archive option (new), exports wrong without (older)

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128330

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

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://web.libera.chat/?settings=#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] [Bug 121927] UI: Make creating a new slide by double click more easy by letting a few pixels at the bottom

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121927

--- Comment #6 from QA Administrators  ---
Dear Rüdiger Kupper,

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://web.libera.chat/?settings=#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] [Bug 114696] Compound string in Calc: "Total " + "Result"

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114696

--- Comment #5 from QA Administrators  ---
Dear Mihkel Tõnnov,

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://web.libera.chat/?settings=#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] [Bug 103615] Macro with ShareDocument dispatch command -> no functionnality

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103615

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

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://web.libera.chat/?settings=#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] [Bug 146603] After minutes of usage, the UI of my computer goes black.

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146603

--- Comment #1 from hyudongs...@gmail.com ---
Created attachment 177341
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177341=edit
Display of what the bug looks like

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146603] New: After minutes of usage, the UI of my computer goes black.

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146603

Bug ID: 146603
   Summary: After minutes of usage, the UI of my computer goes
black.
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hyudongs...@gmail.com

Description:
After a while of using LibreOffice, the workspace will freeze and any menu, or
new application I try to open in my computer will turn black and it won't let
me see it.

If try right-clicking my desktop, the options will turn black. If I try to
access the Tools tab in LibreOffice Draw, it will be black. If try opening any
program that wasn't open prior to the error, it will display black.

I am sure it is the program's fault and not my computer as I had never
experienced problem such as this one before installing this program.

Steps to Reproduce:
1. Open the program
2. Begin working on any project
3. After minutes of use, UI goes black
4. Restart PC to fix

Actual Results:
The UI went black. 

Expected Results:
It should've worked without problems


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
I believe it might be an uncompatibility issue.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Periodico di informazione fiscale Fiscotoday sommario 17 Dicembre

2022-01-05 Thread Giorgio Velati
Title: Fiscotoday






NEWS
PRIMA
PAGINA
News dall’Europa

Gli acquisti del PEPP finiranno a marzo, prosegue il
quantitative easing. Dall’ultima riunione del 2021 della
Banca centrale europea è scaturita la decisone di applicare, nel
primo trimestre 2022, un ritmo inferiore rispetto al trimestre precedente
agli acquisti di attività previsti dal
 Continua a leggere...



NEWS
PRIMA
PAGINA
News dall’Italia

Contributo a fondo perduto start-up, il provvedimento delle
Entrate. Il contributo a fondo perduto per le start-up, introdotto
dal decreto sostegni a favore delle nuove attività con partita IVA
aperta nel 2018 e attività avviata nel 2019 con ricavi fino a 10
milioni di euro, viene erogato per il 100%
 Continua a leggere...



FISCALITA
PRIMA
PAGINA
Ritenute non dovute, il rimborso va richiesto entro
48 mesi

In base all’art. 1 del DPR 602/1973, le imposte sui redditi sono
riscosse mediante ritenuta diretta o versamenti diretti, mentre il
successivo art. 2 dispone che le imposte sono pagate per ritenuta diretta
nei casi indicati dalla legge e secondo le modalità previste dalle
norme sulla contabilità
 Continua a leggere...





FISCALITA
LEGGE
PRIMA
PAGINA
Il decreto Fisco-lavoro è legge, le nuove
disposizioni

Entrano in vigore, con la pubblicazione sulla Gazzetta Ufficiale n. 301
dello scorso 20 dicembre, della legge di conversione n. 215/2021, le nuove
disposizioni contenute nel decreto legge n. 146/2021, denominato decreto
Fisco-lavoro.
 Continua a leggere...



FISCALITA
PRIMA
PAGINA
I provvedimenti attuativi per i bonus destinati
alla mobilità sostenibile

Dopo la pubblicazione nella Gazzetta Ufficiale, è in vigore il
decreto attuativo del Ministero dell’economia e delle finanze che ha
stabilito le modalità per l’accesso al credito
d’imposta, previsto dal Dl 34/2020 (decreto
 Continua a leggere...



ECONOMIA
FISCALITA
PRIMA
PAGINA
Prima casa under 36: agevolazioni spettanti anche
per un acquisto all’asta

L’articolo 64 del decreto sostegni-bis, il Dl 25 maggio 2021, n.
73 (convertito con modificazioni dalla legge 23 luglio 2021, n. 106)
prevede l’esenzione dalle imposte di registro e ipotecaria e
catastale, oltre all’attribuzione di un credito d’imposta pari
all’IVA pagata in relazione all’acquisto, per gli atti
 Continua a leggere...





CASSAZIONE
PRIMA
PAGINA SENTENZE
Nulla la sentenza che non permette di individuare
le ragioni della decisione

Tributi - IRPEF - Redditometro - Accertamento - Redditi dichiarati
incongrui rispetto a quelli dichiarati - Contenzioso tributario –
Sentenza – Motivazione apparente - Principio a tutela della
parità delle parti – Nullità
 Continua a leggere...



CASSAZIONE
PRIMA
PAGINA
Il vizio di notifica non pregiudica la presunzione
di evasione in capo al socio

Tributi – IRPEF – Ires - Irap – Iva - Accertamento
- Redditi di capitale - Presunta distribuzione di utili extracontabili di
società a ristretta base sociale - Ipotesi di annullamento
dell’accertamento societario per inesistenza della notifica - Effetto
pregiudicante sull’accertamento al singolo socio -
Esclusione
 Continua a leggere...



CASSAZIONE
PRIMA
PAGINA
Legittima la cartella di pagamento notificata via
PEC in formato Pdf e senza la firma digitale

Tributi -PEC- Notificazione - Intimazione di pagamento –
Mancanza della firma digitale - Domicilio digitale - Sanatoria -
Raggiungimento dello scopo – Fattispecie
 Continua a leggere...





CASSAZIONE
PRIMA
PAGINA SENTENZE
Avviso di accertamento sospeso? Illegittima
l’iscrizione a ruolo

Tributi – Contenzioso – Avviso di accertamento
– Iscrizione a ruolo - Sospensionegiudiziale
dell’esecuzione dell’atto impositivo - Notifica cartella di
pagamento – Legittimità
 Continua a leggere...


Titolare dei dati è Marketing Group Via
Luigi Barzini 18 - 20125 Milano.Questo messaggio è stato
inviato alla vostra email in ottemperanza al Decreto legislativo
196/03
Cancellami
da questa lista





[Libreoffice-bugs] [Bug 146601] New: Libre Calc does not display cell entries as they are typed

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146601

Bug ID: 146601
   Summary: Libre Calc does not display cell entries as they are
typed
   Product: LibreOffice
   Version: 7.2.4.1 release
  Hardware: Other
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: michaelutc...@gmail.com

Description:
Libre Calc does not display the typed entires in the active cell or the ledger
above while I am entering the data.

The cell contents are displayed after I hit Enter and the cursor moves to
another cell.  But that means I am typing blindly the entire time.  It used to
work until late summer, but I did not change anything in the computer and do
not recall changes to Libre.

I updated Libre to the latest 7.2.4.1, with no improvement.  I am running MacOS
12.01, this problem occurred on earlier versions of MacOS as well.  My hardware
is a Mac Mini M1.

Actual Results:
I tried to type letters or numbers in the cell.  None are displayed in the
cell, or in the ledger above, until I hit Enter and move the cursor to another
cell.

Expected Results:
I have to Enter the contents, which moves the cursor to another cell.


Reproducible: Always


User Profile Reset: No



Additional Info:
It should show data as I type it.  Libre Calc used to do that.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146600] Libre Office - Calc - Print Preview - Zoom In / Zoom Out buttons reversed

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146600

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146600] Libre Office - Calc - Print Preview - Zoom In / Zoom Out buttons reversed

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146600

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #1 from Eike Rathke  ---


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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146190] Tab after going to a drawing object from the Navigator results in tab applied to all headings

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146190

--- Comment #3 from Jim Raykowski  ---
Looking at this again I see my STR need clarification. One could take step two
to mean double click on 'Shape 1' in the document. If that is done before the
steps to repro, the bug does not occur.

Steps to repro using the attached 'test file with repro steps' file:

1) Open either sidebar ctrl+F5 or floating F5 Navigator

2) In the Navigator expand the Drawing objects category, if needed, then double
click on the 'Shape 1' entry in the list of drawing objects.

Shape 1 in the document is selected

3) Press Tab key

Results: A tab space is applied before all headings in the document

Expected result: Selected drawing object in the document changes to Shape 2.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143961] Impress crashes when inserting a videofile

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143961

--- Comment #11 from 7a4131b4-fa6b-4bb2-835b-b150b7e2e...@123test.anonaddy.com 
---
(In reply to 7a4131b4-fa6b-4bb2-835b-b150b7e2eca8 from comment #10)
> I updated my Pop!_OS-Verion to 21.10. I reinstalled LiberOffice Impress, but
> the error still persists: It crashes, when I insert a video.
> 
> I now use the Flatpak-Version of the LibreOffice-App, which work flawlessly.

This is the Version I use:

Version: 7.2.3.2 / LibreOffice Community
Build ID: 20(Build:2)
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: x11
Locale: de-DE (en_US.UTF-8); UI: en-US
Ubuntu package version: 1:7.2.3-0ubuntu0.21.10.1
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143961] Impress crashes when inserting a videofile

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143961

7a4131b4-fa6b-4bb2-835b-b150b7e2e...@123test.anonaddy.com changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143961] Impress crashes when inserting a videofile

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143961

--- Comment #10 from 7a4131b4-fa6b-4bb2-835b-b150b7e2e...@123test.anonaddy.com 
---
I updated my Pop!_OS-Verion to 21.10. I reinstalled LiberOffice Impress, but
the error still persists: It crashes, when I insert a video.

I now use the Flatpak-Version of the LibreOffice-App, which work flawlessly.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146600] New: Libre Office - Calc - Print Preview - Zoom In / Zoom Out buttons reversed

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146600

Bug ID: 146600
   Summary: Libre Office - Calc - Print Preview - Zoom In / Zoom
Out buttons reversed
   Product: LibreOffice
   Version: 7.1.4.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gdjtr...@gmail.com

Description:
Libre Office - Calc - Print Preview - Zoom In / Zoom Out buttons reversed. 
Zoom In (+) button makes the image smaller; Zoom Out (-) button make the image
larger.  Shouldn't they be the opposite?

Steps to Reproduce:
1. Calc - Print Preview
2. Zoom In or Out buttons
3.

Actual Results:
Zoom In - zooms out

Zoom Out - zooms in

Expected Results:
Zoom In - zoom in

Zoom Out - zoom out


Reproducible: Always


User Profile Reset: No



Additional Info:
Zoom In - zoom in

Zoom Out - zoom out

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146599] XIRR produces incorrect value

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146599

--- Comment #1 from David Ezzio  ---
Created attachment 177339
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177339=edit
Snapshot of an open Calc SS with two formulas revealed

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146599] New: XIRR produces incorrect value

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146599

Bug ID: 146599
   Summary: XIRR produces incorrect value
   Product: LibreOffice
   Version: 7.1.8.1 release
  Hardware: All
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: da...@ezzio.us

Description:
Comparing XIRR and RATE for the same two cash flows, XIRR produces 38% while an
equivalent (IMO) RATE calculation produces 32%.  In addition, the HP 10bII
calculator agrees with the RATE calculation.   

Steps to Reproduce:
1.Please see attached PDF, containing a snapshot of an open Calc SS with the
two formulas revealed.
2.
3.

Actual Results:
38%

Expected Results:
32%


Reproducible: Always


User Profile Reset: No



Additional Info:
The XIIR calculation for a starting negative cash flow and an ending positive
cash flow should produce the same compounding interest rate as the RATE
function with zero additional payments over the same period.  In fact, to get
close to 38% produced by the XIRR function by using the RATE function would
require the use of 54 days rather than the actual 64 days in the period.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146598] Freezing when using cut, copy, or paste on macOS

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146598

Michael Warner  changed:

   What|Removed |Added

Summary|Love Libre Office   |Freezing when using cut,
   ||copy, or paste on macOS

--- Comment #2 from Michael Warner  ---
I have updated the summary to be more descriptive.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146112] IsNull must return False when testing object variables (including non-initialized/assigned to Nothing) in VBASupport 1 mode

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146112

Rafael Lima  changed:

   What|Removed |Added

 CC||rafael.palma.l...@gmail.com
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Rafael Lima  ---
I can confirm the bug. I tested the following code in LibO Basic:

Sub TestIsnull
Dim a As Object
MsgBox IsNull(a)
Set a = Nothing
MsgBox IsNull(a)
a = Array(1, 2, 3)
MsgBox IsNull(a)
End Sub

It returns True, True and False regardless of VBA support being enabled or not.

However in Excel VBA, the code below returns False in all MsgBox statements.

Sub TestIsnull
Dim a As Object
MsgBox IsNull(a)
Set a = Nothing
MsgBox IsNull(a)
Set a = Range("A1")
MsgBox IsNull(a)
End Sub

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146594] Data in chart/image is truncated when copying a bar plot with a cell in error state

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146594

kenneth.brad...@datalogic.com changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146594] Data in chart/image is truncated when copying a bar plot with a cell in error state

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146594

--- Comment #2 from kenneth.brad...@datalogic.com ---
Created attachment 177338
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177338=edit
ods file with example

I am running this on 64 bit ubuntu and it does not copy the image correctly
into Gimp if I right click on the column plots and select copy.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Re: [Libreoffice-qa] ESC meeting agenda: 2022-01-06 16:00 Berlin time

2022-01-05 Thread Jan-Marek Glogowski
I'm currently merging many gbuild changes, so I would like to see more 
variance in the Gerrit CI runs:


* CI infra change: switch a Gerrit build to --enable-mergelibs
+ was suggested by cloph to bring to ESC (see patch comments):
p1 https://gerrit.libreoffice.org/c/core/+/127426
   Switches Linux release 64 to --enable-mergelibs
+ We had a build-breaking patch for mergelibs / callgrind TB:
p2 https://gerrit.libreoffice.org/c/core/+/127394
p3 https://gerrit.libreoffice.org/c/core/+/127429
Not detectable by current Gerrit CI setup.
+ I tested p3 by pushing the patchset of p1 + p3.
- p1 broke the release build like the callgrind TB
- p3 fixed the broken mergelibs build
+ I suggest to switch a Gerrit build to mergelibs permanently
- = merge p1
- Will already fail in Gerrit, not later in Callgrind.
- I selected the Linux 64bit release, because it's the fastest
  x86, but I really have no preference.


[Libreoffice-bugs] [Bug 146597] Writer stops responding when a group of shapes is anchored to character

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146597

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #3 from m.a.riosv  ---
Reproducible.
Version: 7.3.0.1 (x64) / LibreOffice Community
Build ID: 840fe2f57ae5ad80d62bfa6e25550cb10ddabd1d
CPU threads: 4; OS: Windows 10.0 Build 21390; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL

Even worse dropdown from menu are blank.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Re: ESC meeting agenda: 2022-01-06 16:00 Berlin time

2022-01-05 Thread Jan-Marek Glogowski
I'm currently merging many gbuild changes, so I would like to see more 
variance in the Gerrit CI runs:


* CI infra change: switch a Gerrit build to --enable-mergelibs
+ was suggested by cloph to bring to ESC (see patch comments):
p1 https://gerrit.libreoffice.org/c/core/+/127426
   Switches Linux release 64 to --enable-mergelibs
+ We had a build-breaking patch for mergelibs / callgrind TB:
p2 https://gerrit.libreoffice.org/c/core/+/127394
p3 https://gerrit.libreoffice.org/c/core/+/127429
Not detectable by current Gerrit CI setup.
+ I tested p3 by pushing the patchset of p1 + p3.
- p1 broke the release build like the callgrind TB
- p3 fixed the broken mergelibs build
+ I suggest to switch a Gerrit build to mergelibs permanently
- = merge p1
- Will already fail in Gerrit, not later in Callgrind.
- I selected the Linux 64bit release, because it's the fastest
  x86, but I really have no preference.


[Libreoffice-bugs] [Bug 146594] Data in chart/image is truncated when copying a bar plot with a cell in error state

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146594

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Can you attach the sample file for test. Please eliminate or substitute private
data.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-2021' - desktop/Library_sofficeapp.mk desktop/source postprocess/Rdb_services.mk solenv/bin vcl/source

2022-01-05 Thread Tor Lillqvist (via logerrit)
 desktop/Library_sofficeapp.mk|6 --
 desktop/source/lib/init.cxx  |   22 ++
 postprocess/Rdb_services.mk  |5 +++--
 solenv/bin/native-code.py|2 +-
 vcl/source/components/dtranscomp.cxx |4 
 vcl/source/treelist/transfer2.cxx|5 +
 6 files changed, 39 insertions(+), 5 deletions(-)

New commits:
commit cde6577dcb9c94aca7605790d34c83a5ff62edad
Author: Tor Lillqvist 
AuthorDate: Tue Jan 4 16:33:16 2022 +0200
Commit: Aron Budea 
CommitDate: Wed Jan 5 22:54:22 2022 +0100

We don't want or need any LOKClipboard on iOS

We use only the system clipboard on iOS. (It is actually called the
"pasteboard" in Apple's operating systems.) The code to interface with
the system clipboard is in vcl. It has worked fine to copy and paste
between the Collabora Office iOS app and other iOS apps without any
LOKClipboard being involved. If LOKClipboard is used it doesn't work
at all.

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

diff --git a/desktop/Library_sofficeapp.mk b/desktop/Library_sofficeapp.mk
index 91f992e4501f..ab4fde902a18 100644
--- a/desktop/Library_sofficeapp.mk
+++ b/desktop/Library_sofficeapp.mk
@@ -156,11 +156,13 @@ ifneq ($(filter $(OS),ANDROID iOS MACOSX WNT),)
 $(eval $(call gb_Library_add_exception_objects,sofficeapp,\
desktop/source/lib/init \
desktop/source/lib/lokinteractionhandler \
-   desktop/source/lib/lokclipboard \
+   $(if $(filter-out $(OS),iOS), \
+   desktop/source/lib/lokclipboard) \
$(if $(filter $(OS),ANDROID), \
desktop/source/lib/lokandroid) \
 ))
-$(eval $(call gb_Library_set_componentfile,sofficeapp,desktop/lokclipboard))
+$(if $(filter-out $(OS),iOS), \
+   $(eval $(call 
gb_Library_set_componentfile,sofficeapp,desktop/lokclipboard)))
 else
 ifeq ($(USING_X11),TRUE)
 $(eval $(call gb_Library_add_exception_objects,sofficeapp,\
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 22523ecc2227..1ef25f2c5dc6 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -2380,7 +2380,9 @@ static void doc_destroy(LibreOfficeKitDocument *pThis)
 
 SolarMutexGuard aGuard;
 
+#ifndef IOS
 LOKClipboardFactory::releaseClipboardForView(-1);
+#endif
 
 LibLODocument_Impl *pDocument = static_cast(pThis);
 delete pDocument;
@@ -4749,6 +4751,18 @@ static int doc_getClipboard(LibreOfficeKitDocument* 
pThis,
 size_t **pOutSizes,
 char  ***pOutStreams)
 {
+#ifdef IOS
+(void) pThis;
+(void) pMimeTypes;
+(void) pOutCount;
+(void) pOutMimeTypes;
+(void) pOutSizes;
+(void) pOutStreams;
+
+assert(!"doc_getClipboard should not be called on iOS");
+
+return 0;
+#else
 comphelper::ProfileZone aZone("doc_getClipboard");
 
 SolarMutexGuard aGuard;
@@ -4825,6 +4839,7 @@ static int doc_getClipboard(LibreOfficeKitDocument* pThis,
 }
 
 return 1;
+#endif
 }
 
 static int doc_setClipboard(LibreOfficeKitDocument* pThis,
@@ -5572,7 +5587,9 @@ static void doc_destroyView(SAL_UNUSED_PARAMETER 
LibreOfficeKitDocument* pThis,
 SolarMutexGuard aGuard;
 SetLastExceptionMsg();
 
+#ifndef IOS
 LOKClipboardFactory::releaseClipboardForView(nId);
+#endif
 
 SfxLokHelper::destroyView(nId);
 
@@ -5844,6 +5861,7 @@ static void doc_postWindow(LibreOfficeKitDocument* 
/*pThis*/, unsigned nLOKWindo
 }
 else if (nAction == LOK_WINDOW_PASTE)
 {
+#ifndef IOS
 OUString aMimeType;
 css::uno::Sequence aData;
 std::vector 
aArgs(jsonToPropertyValuesVector(pData));
@@ -5865,6 +5883,10 @@ static void doc_postWindow(LibreOfficeKitDocument* 
/*pThis*/, unsigned nLOKWindo
 }
 else
 SetLastExceptionMsg("Window command 'paste': wrong parameters.");
+#else
+(void) pData;
+assert(!"doc_postWindow() with LOK_WINDOW_PASTE should not be called 
on iOS");
+#endif
 }
 }
 
diff --git a/postprocess/Rdb_services.mk b/postprocess/Rdb_services.mk
index 75cbc02a4004..f54447ccd148 100644
--- a/postprocess/Rdb_services.mk
+++ b/postprocess/Rdb_services.mk
@@ -341,8 +341,9 @@ endif
 
 # lokclipboard.component
 ifneq ($(filter $(OS),ANDROID iOS MACOSX WNT),)
-$(eval $(call gb_Rdb_add_components,services,\
-   desktop/lokclipboard))
+$(if $(filter-out $(OS),iOS), \
+   $(eval $(call gb_Rdb_add_components,services,\
+   desktop/lokclipboard)))
 else
 ifeq ($(USING_X11),TRUE)
 $(eval $(call gb_Rdb_add_components,services,\
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index 4fa814e7ee64..027781914d89 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -124,7 +124,7 @@ core_constructor_list = [
 

[Libreoffice-bugs] [Bug 146595] Cannot open file ods

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146595

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #5 from m.a.riosv  ---
I think you can find in the forum, what happens.

https://ask.libreoffice.org/t/i-can-not-open-my-spreadsheet-it-comes-up-with-this-error-read-error-format-error-discovered-in-the-file-in-sub-document-content-xml-at-2-72157-row-col/8576

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146595] Cannot open file ods

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146595

--- Comment #4 from Julien Nabet  ---
To attach a file means anybody can access it.
Usually we advise to sanitize it (see
https://wiki.documentfoundation.org/QA/Bugzilla/Sanitizing_Files_Before_Submission)
but since you can't even open it, you won't be able to sanitize it.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146555] Impossible to edit hyperlink in comment with Edit Menu of Context Menu

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146555

--- Comment #5 from m.a.riosv  ---
Created attachment 177337
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177337=edit
Screenshot with hiperlink added to the comment context menu

(In reply to Rainer Bielefeld Retired from comment #4)
> (In reply to m.a.riosv from comment #3)
> Did you try to add that context menu Item? And did it work in Comment?

I have tried now and Hyperlink (Ctrl+K) can be added, not the others.
See the attached screenshot.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146598] Love Libre Office

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146598

Julien Nabet  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
On which MacOs version are you?
LO has some pb with recent MacOs version like Monterey.

Could you first try https://wiki.documentfoundation.org/QA/FirstSteps ?

Then I noticed you indicated 7.0.4, could you give a try to 7.1.8 or even more
recent 7.2.4?

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2022-01-05 Thread Jan-Marek Glogowski (via logerrit)
 solenv/gbuild/LinkTarget.mk |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 86b0753ca3a02d247b13f0a6654ae315ce3a044b
Author: Jan-Marek Glogowski 
AuthorDate: Wed Jan 5 12:13:11 2022 +0100
Commit: Jan-Marek Glogowski 
CommitDate: Wed Jan 5 22:19:18 2022 +0100

gbuild: skip libmerged externals for partial builds

When running a full build, all externals of merged libraries are
also added to libmerged when adding externals for the merged lib.

Non-skipping for partial builds also breaks gbuildtojson, for all
modules, which are merged and have additional libraries, tests or
binaries, which then depend on the libmerged.

This triggers for gbuildtojson, because the skipped %.exports now
actually matter when checking the libmerged state. make then tries
to rebuild it, but this can never work for a partial build, even
with the full gbuild ruleset, not stripped by
solenv/gbuild/extensions/post_GbuildToJson.mk.

The totally confusing result, due to the mangled ruleset, is that
the first externals %.exports overwrites libmerged in instdir.

Change-Id: I2b72a8b543dbbd8c8f573bfe963164329bdd73e4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127995
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 

diff --git a/solenv/gbuild/LinkTarget.mk b/solenv/gbuild/LinkTarget.mk
index 3f4e329587b8..52eabb9e5b96 100644
--- a/solenv/gbuild/LinkTarget.mk
+++ b/solenv/gbuild/LinkTarget.mk
@@ -2031,8 +2031,10 @@ endef
 # call gb_LinkTarget_use_external,linktarget,external
 define gb_LinkTarget_use_external
 $(if $(filter undefined,$(origin gb_LinkTarget__use_$(2))),\
-  $(error gb_LinkTarget_use_external: unknown external: $(2)),\
-  $(if $(call gb_LinkTarget__is_merged,$(1)),$(call 
gb_LinkTarget__use_$(2),$(call gb_Library_get_linktarget,merged))) \
+$(error gb_LinkTarget_use_external: unknown external: $(2)) \
+, \
+$(if $(gb_PARTIAL_BUILD),,$(if $(call gb_LinkTarget__is_merged,$(1)), \
+$(call gb_LinkTarget__use_$(2),$(call 
gb_Library_get_linktarget,merged \
 $(call gb_LinkTarget__use_$(2),$(1)) \
 )
 endef


[Libreoffice-bugs] [Bug 146592] radiobutton's selecting jumps between items after Apply button pressing

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146592

Caolán McNamara  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #3 from Caolán McNamara  ---
that page is holding its "old options" differently than the other pages

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146598] New: Love Libre Office

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146598

Bug ID: 146598
   Summary: Love Libre Office
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: Other
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: eponafa...@gmail.com

Description:
We love Libre Office and prefer it to the previous programs we have used and
have written several books and articles using it. Lately, especially when using
the copy/cut paste features the program freezes forcing us to use force quit
and then recover. Very frustrating.

Steps to Reproduce:
1. Copy or cut
2. Tennis ball keeps going
3. Force Quit: Libre Office not Responding
4. Recover file.
5. File recovered successfully
6. Repeat steps 1-5.

Actual Results:
Same thing happens.

Expected Results:
Same thing happens.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Allowed me to cut/copy and paste.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 94223] Selection box for text box not shown

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94223

--- Comment #28 from Caolán McNamara  ---
I don't think the handles are really the core of the issue anyway, people want
the blue rectangle thing.

Taking the sub-case of the example in the comment #14 then at
svx/source/svdraw/svdedxv.cxx:1246 in SdrObjEditView::SdrBeginTextEdit we have
const bool bVisualizeSurroundingFrame(bTextFrame && !bFitToSize);

and in page 2 the second textbox that doesn't have the blue border has
bFitToSize set. If autofit is turned off then it gets the blue border.

Then taking the original document from comment #7 bTextFrame is false and it
doesn't get "bVisualizeSurroundingFrame" of true for that other reason.

As far as I can see, in...

commit fd069bee7e57ad529c3c0974559fd2d84ec3151a
Date:   Mon Sep 18 16:07:07 2000 +

initial import

we also have this special

if (bTextFrame && !bFitToSize) {
...
}

handling (FWIW I seem to have very old memories of having to play "hunt for the
border")

It's not entirely clear why we have that special handling. If we wanted to
treat all these cases the same then
https://gerrit.libreoffice.org/c/core/+/128025 would take the route-one
approach and they would all act the same.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 105220] Firebird: Insert with direct SQL - RETURNING without values

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105220

--- Comment #16 from Julien Nabet  ---
(In reply to Robert Großkopf from comment #15)
> (In reply to Robert Großkopf from comment #14)
> > 
> > Seems returning content when inserting values is a special behavior of
> > Firebird, which can't work with this construction of executeQuery and
> > executeUpdate.
> 
> Forget the last part. RETURNING is also used in PostgreSQL. It will work
> there also together width LO. Had tested this a time ago with BASIC:
> 
> stSql = "INSERT INTO ""Table"" (""Name"") Values('Robert') RETURNING ""ID"""
> oResult = oSQL_Statement.executeQuery(stSql)
> oResult.Next
> loID = oResult.getLong(1)
> 
> It will work there.

ok so at least we know now that it only depends on the implementation (so
connectivity part) and directsql part (in dbaccess) is already ok to take into
account.
Now I don't know at all how to implement this.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145282] Group of objects loses position when page is moved up

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145282

phv  changed:

   What|Removed |Added

Summary|Group of objects doesn't|Group of objects loses
   |retain its position when|position when page is moved
   |page is moved up|up

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145282] Group of objects doesn't retain its position when page is moved up

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145282

--- Comment #7 from phv  ---
Created attachment 177336
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177336=edit
Video showing the bug

I'm adding a video showing that, depending on which character the group is
anchored to, the bug does or does not occur. Here, it only takes a shift of one
character to the left for the group to lose its position when the previous page
is deleted.

This loss is made during a recomputation which takes place just after the
content has moved on page one. Without it, the position is the right one.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 119927] [META] MariaDB C API

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119927

--- Comment #3 from Julien Nabet  ---
(In reply to Thomas Lendo from comment #2)
> Okay, can be done. But maybe there are bugs coming? A closed META won't be
> found by someone who searches for it to add a bug.

Just my personal opinion:
META bugs are useless, worse it generates even more bugtrackers (just take a
look at the number of them). IMHO just using the Keywords field should be
sufficient.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: configure.ac

2022-01-05 Thread Stephan Bergmann (via logerrit)
 configure.ac |   33 ++---
 1 file changed, 14 insertions(+), 19 deletions(-)

New commits:
commit 2177f48b16b8cd68c0ef4ec817ca391f28324418
Author: Stephan Bergmann 
AuthorDate: Wed Jan 5 17:54:52 2022 +0100
Commit: Stephan Bergmann 
CommitDate: Wed Jan 5 21:34:14 2022 +0100

Simplify --with-webdav

...to just be yes/no, now that curl is the only remaining implementation
option.  (A drawback of the existing code was that it silently treated
--with-webdav or --with-webav=neon etc. the same as --without-webdav.)

Change-Id: If1478ac3bf5c49d0754d6ab89c8c04c7c51c9ad2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128020
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/configure.ac b/configure.ac
index e414c2d7f15f..9ef7dbe9c7b6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2420,10 +2420,8 @@ AC_ARG_WITH(system-lockfile,
 [Detect a system lockfile program or use the \$file argument.]))
 
 AC_ARG_WITH(webdav,
-AS_HELP_STRING([--with-webdav],
-[Specify which library to use for webdav implementation.
- Possible values: "curl", "no". The default value is "curl".
- Example: --with-webdav="curl"]))
+AS_HELP_STRING([--without-webdav],
+[Disable WebDAV support in the UCB.]))
 
 AC_ARG_WITH(linker-hash-style,
 AS_HELP_STRING([--with-linker-hash-style],
@@ -10812,26 +10810,23 @@ AC_SUBST(XRANDR_CFLAGS)
 AC_SUBST(XRANDR_LIBS)
 AC_SUBST(ENABLE_RANDR)
 
-if test "$test_webdav" = yes; then
-if test -z "$with_webdav"; then
-WITH_WEBDAV=curl
-else
-WITH_WEBDAV="$with_webdav"
-fi
+if test -z "$with_webdav"; then
+with_webdav=$test_webdav
 fi
 
-AC_MSG_CHECKING([for webdav library])
-case "$WITH_WEBDAV" in
-curl)
-AC_MSG_RESULT([curl])
+AC_MSG_CHECKING([for WebDAV support])
+case "$with_webdav" in
+no)
+AC_MSG_RESULT([no])
+WITH_WEBDAV=""
+;;
+*)
+AC_MSG_RESULT([yes])
 # curl is already mandatory (almost) and checked elsewhere
 if test "$enable_curl" = "no"; then
-AC_MSG_ERROR(["--with-webdav=curl conflicts with --disable-curl"])
+AC_MSG_ERROR(["--with-webdav conflicts with --disable-curl"])
 fi
-;;
-*)
-AC_MSG_RESULT([none, disabled])
-WITH_WEBDAV=""
+WITH_WEBDAV=TRUE
 ;;
 esac
 AC_SUBST(WITH_WEBDAV)


[Libreoffice-bugs] [Bug 146595] Cannot open file ods

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146595

--- Comment #3 from Julien Nabet  ---
If the file doesn't contain anything private/confidential, you may attach it
here so we can try to debug it.

If not, you can make a backup of your file first then:
- rename it into zip and unzip it.
- use a tool like notepad++ to go to second line and find the character 4927088
to see if you can detect and fix the pb.
- rezip the whole directory and rename it to ods
This solution is not for a beginner but can work.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 94903] Digital Signatures are not working with 64-Bit LibreOffice 5.0.2.2 and 32-Bit LibreOffice 5.2.x in Windows

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94903

--- Comment #36 from J  ---
This seems to affect at least 7.2.4.1 x64/win 10 version also - after selecting
an X.509 certificate for signing, no signatures are added to the document
(either pdf of odt)

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: download.lst

2022-01-05 Thread Caolán McNamara (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ae406d7acc985c56bacd7c0e0c9658170afa907d
Author: Caolán McNamara 
AuthorDate: Wed Jan 5 14:16:46 2022 +
Commit: Caolán McNamara 
CommitDate: Wed Jan 5 20:54:27 2022 +0100

upgrade to latest harfbuzz

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

diff --git a/download.lst b/download.lst
index 0a99bef76877..47db7add2e70 100644
--- a/download.lst
+++ b/download.lst
@@ -100,8 +100,8 @@ export GPGME_SHA256SUM := 
6c8cc4aedb10d5d4c905894ba1d850544619ee765606ac43df7405
 export GPGME_TARBALL := gpgme-1.16.0.tar.bz2
 export GRAPHITE_SHA256SUM := 
b8e892d8627c41888ff121e921455b9e2d26836978f2359173d19825da62b8fc
 export GRAPHITE_TARBALL := graphite2-minimal-1.3.14.tgz
-export HARFBUZZ_SHA256SUM := 
d58461395ce28b9dc03903254374dd70c38c8c28c5046db123c08f7ab9417be7
-export HARFBUZZ_TARBALL := harfbuzz-2.8.2.tar.xz
+export HARFBUZZ_SHA256SUM := 
0ada50a1c199bb6f70843ab893c55867743a443b84d087d54df08ad883ebc2cd
+export HARFBUZZ_TARBALL := harfbuzz-3.2.0.tar.xz
 export HSQLDB_SHA256SUM := 
d30b13f4ba2e3b6a2d4f020c0dee0a9fb9fc6fbcc2d561f36b78da4bf3802370
 export HSQLDB_TARBALL := 17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
 export HUNSPELL_SHA256SUM := 
57be4e03ae9dd62c3471f667a0d81a14513e314d4d92081292b90435944ff951


[Libreoffice-bugs] [Bug 94223] Selection box for text box not shown

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94223

--- Comment #27 from Caolán McNamara  ---
Created attachment 177335
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177335=edit
AOO 4.1.10

(In reply to Michael Meeks from comment #26)
> Perhaps Caolan has some insight on the merge ?

the merge was bisected as the disappearance of the handles and I seem to see
the same effect in AOO 4.1.10

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108497] Converting OpenType Font Variation instances before printing and exporting to PDF or EPUB

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108497

phv  changed:

   What|Removed |Added

 CC||marco.bur...@outlook.com

--- Comment #27 from phv  ---
*** Bug 146577 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146577] Exported PDF contains incorrect embedded font typeface

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146577

phv  changed:

   What|Removed |Added

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

--- Comment #4 from phv  ---


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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 136434] FORMATTING: redundancy in content.xml

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136434

--- Comment #18 from Christian Lehmann  ---
If the goal of purging a document from redundant material would be seriously
pursued, I would volunteer to present a list of elements that seem superfluous
to me, in a given file. However, as Mike noticed long ago, I am not a
specialist on technicalities. I can only see things such as this:

Have a paragraph (e.g. a heading) obeying a style which puts the entire
paragraph in bold face. Then copy into this paragraph a string which already is
formated, by character format, as bold face. The code of this attribute is
preserved in the XML file. The user, however, does not need this. Even if he
had advanced methods of looking into the inner formating of substrings of the
paragraph in question, this would be of no interest to him. Consequence: Delete
the character formating of a string if it is copied into a context which
already has this format.

This is the kind of redundancy I was referring to. I trust my file would be
much smaller if it were suppressed.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-qa] Minutes from the UX/design meeting 2022-Jan-05

2022-01-05 Thread Heiko Tietze

Present: Heiko
Comments: Stuart, Roman, Leroy, Sophi, Jan, Dave, Thomas, Cor, Mike

Tickets/Topics

 * Bookmark... dialog should hold its resize from defaults for current session
   + https://bugs.documentfoundation.org/show_bug.cgi?id=146261
   + keep resizing and remember its state (Stuart, Thomas, Cor)
   + make the dialog non-resizable according the HIG (Heiko)
   + restoring the dialog size is tricky (see also bug 123123 and bug 134640)
   => investigate whether it's possible

 * "Insert > Special Character" and "Insert > Formatting Mark" should be renamed
   + https://bugs.documentfoundation.org/show_bug.cgi?id=146493
   + "Insert > Special Character" -> "Insert > Character map"
   + "Insert > Formatting Mark" -> "Insert > Special character"
   + -1 (Roman, Dieter, Sophi, Jan, Dave, Stuart, Cor, Adolfo) +1 (Leroy)
   => WF

 * Output to HTML: Field shadings shouldn't be part of Html-export
   + https://bugs.documentfoundation.org/show_bug.cgi?id=146033
   + Should field shadings be part of Html-Export (and PDF or EPUB export)?
   => no reason to export temporary information such as field shading

 * An extra word in the tooltip when hovering over a footnote
   + https://bugs.documentfoundation.org/show_bug.cgi?id=146369
   + keep the annotation type (Thomas, Cor, Mike)
   => resolve WF


OpenPGP_signature
Description: OpenPGP digital signature


Minutes from the UX/design meeting 2022-Jan-05

2022-01-05 Thread Heiko Tietze

Present: Heiko
Comments: Stuart, Roman, Leroy, Sophi, Jan, Dave, Thomas, Cor, Mike

Tickets/Topics

 * Bookmark... dialog should hold its resize from defaults for current session
   + https://bugs.documentfoundation.org/show_bug.cgi?id=146261
   + keep resizing and remember its state (Stuart, Thomas, Cor)
   + make the dialog non-resizable according the HIG (Heiko)
   + restoring the dialog size is tricky (see also bug 123123 and bug 134640)
   => investigate whether it's possible

 * "Insert > Special Character" and "Insert > Formatting Mark" should be renamed
   + https://bugs.documentfoundation.org/show_bug.cgi?id=146493
   + "Insert > Special Character" -> "Insert > Character map"
   + "Insert > Formatting Mark" -> "Insert > Special character"
   + -1 (Roman, Dieter, Sophi, Jan, Dave, Stuart, Cor, Adolfo) +1 (Leroy)
   => WF

 * Output to HTML: Field shadings shouldn't be part of Html-export
   + https://bugs.documentfoundation.org/show_bug.cgi?id=146033
   + Should field shadings be part of Html-Export (and PDF or EPUB export)?
   => no reason to export temporary information such as field shading

 * An extra word in the tooltip when hovering over a footnote
   + https://bugs.documentfoundation.org/show_bug.cgi?id=146369
   + keep the annotation type (Thomas, Cor, Mike)
   => resolve WF


OpenPGP_signature
Description: OpenPGP digital signature


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

2022-01-05 Thread Mike Kaganski (via logerrit)
 extensions/source/activex/so_activex.cxx |   28 +-
 sal/osl/w32/module.cxx   |   62 ++-
 2 files changed, 23 insertions(+), 67 deletions(-)

New commits:
commit 9d886e80ab742de49e2fe4fe62763edb21485d4e
Author: Mike Kaganski 
AuthorDate: Wed Jan 5 19:20:36 2022 +0300
Commit: Mike Kaganski 
CommitDate: Wed Jan 5 19:49:13 2022 +0100

Simplify osl_getModuleURLFromAddress using GetModuleHandleExW

Somehow missed that in commit 515d2579d305a6127c6c194319a58eac62437e33
DateFri Apr 05 13:15:42 2019 +0300
Replace legacy dynamically-loaded functions with statically linked ones

Also drop obsolete suppressions of warning not emitted by MSVC anymore.

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

diff --git a/sal/osl/w32/module.cxx b/sal/osl/w32/module.cxx
index 798da4183e7c..201f2dd164ee 100644
--- a/sal/osl/w32/module.cxx
+++ b/sal/osl/w32/module.cxx
@@ -18,7 +18,6 @@
  */
 
 #include "system.h"
-#include 
 
 #include "file_url.hxx"
 #include "path_helper.hxx"
@@ -137,14 +136,7 @@ void* SAL_CALL osl_getSymbol(oslModule Module, rtl_uString 
*strSymbolName)
be in this case unavoidable because the API has to stay
compatible. We need to keep this function which returns a
void* by definition */
-#ifdef _MSC_VER
-#pragma warning(push)
-#pragma warning(disable:4054)
-#endif
 return reinterpret_cast(osl_getFunctionSymbol(Module, 
strSymbolName));
-#ifdef _MSC_VER
-#pragma warning(pop)
-#endif
 }
 
 oslGenericFunction SAL_CALL osl_getFunctionSymbol( oslModule Module, 
rtl_uString *strSymbolName )
@@ -182,44 +174,23 @@ osl_getAsciiFunctionSymbol( oslModule Module, const char 
*pSymbol )
 
 sal_Bool SAL_CALL osl_getModuleURLFromAddress( void *pv, rtl_uString 
**pustrURL )
 {
-bool bSuccess= false;/* Assume failure */
-DWORD cbNeeded = 0;
-HMODULE* lpModules = nullptr;
-DWORD nModules = 0;
-UINT iModule = 0;
-MODULEINFO modinfo;
-
-EnumProcessModules(GetCurrentProcess(), nullptr, 0, );
-
-lpModules = static_cast(_alloca(cbNeeded));
-EnumProcessModules(GetCurrentProcess(), lpModules, cbNeeded, );
+HMODULE hModule{};
+GetModuleHandleExW(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS
+   | GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT,
+   reinterpret_cast(pv), );
+if (!hModule)
+return false;
 
-nModules = cbNeeded / sizeof(HMODULE);
+::osl::LongPathBuffer aBuffer(MAX_LONG_PATH);
+rtl_uString* ustrSysPath = nullptr;
 
-for (iModule = 0; !bSuccess && iModule < nModules; iModule++)
-{
-GetModuleInformation(GetCurrentProcess(), lpModules[iModule], ,
- sizeof(modinfo));
-
-if (static_cast(pv) >= static_cast(modinfo.lpBaseOfDll)
-&& static_cast(pv)
-   < static_cast(modinfo.lpBaseOfDll) + 
modinfo.SizeOfImage)
-{
-::osl::LongPathBuffer aBuffer(MAX_LONG_PATH);
-rtl_uString* ustrSysPath = nullptr;
+GetModuleFileNameW(hModule, o3tl::toW(aBuffer), 
aBuffer.getBufSizeInSymbols());
 
-GetModuleFileNameW(lpModules[iModule], o3tl::toW(aBuffer),
-   aBuffer.getBufSizeInSymbols());
+rtl_uString_newFromStr(, aBuffer);
+osl_getFileURLFromSystemPath(ustrSysPath, pustrURL);
+rtl_uString_release(ustrSysPath);
 
-rtl_uString_newFromStr(, aBuffer);
-osl_getFileURLFromSystemPath(ustrSysPath, pustrURL);
-rtl_uString_release(ustrSysPath);
-
-bSuccess = true;
-}
-}
-
-return bSuccess;
+return true;
 }
 
 sal_Bool SAL_CALL osl_getModuleURLFromFunctionAddress( oslGenericFunction 
addr, rtl_uString ** ppLibraryUrl )
@@ -228,14 +199,7 @@ sal_Bool SAL_CALL osl_getModuleURLFromFunctionAddress( 
oslGenericFunction addr,
not allowed according to the C/C++ standards. In this case
it is unavoidable because we have to stay compatible we
cannot remove any function. */
-#ifdef _MSC_VER
-#pragma warning(push)
-#pragma warning(disable:4054)
-#endif
 return osl_getModuleURLFromAddress(reinterpret_cast(addr), 
ppLibraryUrl);
-#ifdef _MSC_VER
-#pragma warning(pop)
-#endif
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
commit 9b85e4e3263fe2bc75c371969256064e952d7fd4
Author: Mike Kaganski 
AuthorDate: Wed Jan 5 18:35:27 2022 +0300
Commit: Mike Kaganski 
CommitDate: Wed Jan 5 19:48:58 2022 +0100

Use GetModuleHandleExW instead of GetModuleHandleW

... and find directory cearching for path separator.
Also drop obsolete code related to Windows XP and mingw.

Change-Id: Ib48cfeea8a2ae01d3f8b37728ce1e8ca4aa73b14
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128017
Tested-by: Jenkins

[Libreoffice-bugs] [Bug 146575] Writer won't export hyperlinks to pdf

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146575

--- Comment #3 from Bob Hurt  ---
Created attachment 177334
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177334=edit
output pdf file, contains no hyperlinks

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146575] Writer won't export hyperlinks to pdf

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146575

--- Comment #2 from Bob Hurt  ---
Created attachment 177333
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177333=edit
source odt file with links

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146595] Cannot open file ods

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146595

bind...@videotron.ca  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from bind...@videotron.ca  ---
(In reply to Julien Nabet from comment #1)
> How the file has been generated? I mean is it an old file and from 7.2.4 you
> got this error for example?
> 
> Do you have any backup file without this error that you could try on 7.2.4?

This is an old file that has gone correctly through many versions of calc.
bug does not seem to come from 7.2.4...
no back up (I know... ).

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146597] Writer stops responding when a group of shapes is anchored to character

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146597

--- Comment #2 from phv  ---
Created attachment 177332
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177332=edit
Video showing the bug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146597] Writer stops responding when a group of shapes is anchored to character

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146597

--- Comment #1 from phv  ---
Created attachment 177331
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177331=edit
Testcase document

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146597] New: Writer stops responding when a group of shapes is anchored to character

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146597

Bug ID: 146597
   Summary: Writer stops responding when a group of shapes is
anchored to character
   Product: LibreOffice
   Version: 7.4.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: libreoffice@phv.email

Description:
The patch for bug #141220 (fix textbox popped out of off-page shape) introduced
a lot of issues in the positioning of groups of shapes to the point that it is
now impossible to maintain flowcharts position in Writer. While I was
investigating the bug #145282, I reproduce this one.

Here, repositioning the group to its anchor hinders the rendering when the
first line or the group is selected. I just cannot display the bottom of the
page. With the safe mode turned off, this document makes the software stop
responding.

This bug does not affect version 7.2.2.2. I guess it appeared in version 7.2.3,
when the patch changed the calculation for the position of groups.

Steps to Reproduce:
1. Open the document named "LibreOffice stops responding".
2. Select either the first line or the group.
3. Trying moving the view to the bottom of the page.

Actual Results:
Writer lags and hangs the view while the group seems to have several ghost
positions. In some cases, Writer stops responding.

Expected Results:
The positioning of the group should not prevent the view, the software should
have a lag-free rendering.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
This bug can also be reproduced on a new document by creating a complex group
anchored to character or paragraph, changing the vertical position "From
bottom" then edit top wrap.

I would be grateful if you could remove the patch corresponding to the bug
#141220 given the many issues it causes: the anchoring of group containing
complex shapes (lines and textboxes) has been messed up badly since it was
added, and my attempts to find a workaround have all failed (I only found more
issues).

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146595] Cannot open file ods

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146595

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
How the file has been generated? I mean is it an old file and from 7.2.4 you
got this error for example?

Do you have any backup file without this error that you could try on 7.2.4?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146596] New: Sporadically, superscripts in the text (indicating a footnote) do not print as superscripts.

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146596

Bug ID: 146596
   Summary: Sporadically, superscripts in the text (indicating a
footnote) do not print as superscripts.
   Product: LibreOffice
   Version: 7.1.6.2 release
  Hardware: All
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dl.g...@yahoo.com

If I create footnotes in a Writer document, some of the numbers in the text may
be printed in normal position (and the others properly print as superscripts)
even though on my screen they all appear as superscripts.

I then go to Format --> Character --> Position and find that Normal is checked,
even though making a footnote should automatically trigger superscript for the
number in the text (that tells me that the problem is not with my printer
because it is hard to see how a printer can cause a jump from Superscript to
Normal in your program). I then have to manually click Superscript.

If you ask me for samples, it may take a while because I have just finished
making those changes in a document that had to be sent out today.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146555] Impossible to edit hyperlink in comment with Edit Menu of Context Menu

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146555

--- Comment #4 from Rainer Bielefeld Retired  
---
(In reply to m.a.riosv from comment #3)
Did you try to add that context menu Item? And did it work in Comment?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146431] Hang when closing of newly created embedded HSQLDB ODB file (macOS)

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146431

--- Comment #7 from Julien Nabet  ---
Thank you for your feedback.

It's a pity MacOs part isn't taken more into account. It seems the more macOS
evolves (eg: security policies and recently new ARM CPU M1), the more pbs
appear on LO :-(

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146555] Impossible to edit hyperlink in comment with Edit Menu of Context Menu

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146555

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m.a.riosv  ---
I'm not sure if it can be considered like a bug.
In any case, context menu can be edited. Menu/Tools/Customize/Context menu.
I think for cases like this one is there.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146570] Excessive memory consumption with certain xlsb files

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146570

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m.a.riosv  ---

I can't find from where the 800 expected comes.

Only opening the file, about 585 MB.
After paste and after a while it is reduced to 2,5 GB, without touch nothing.
After a hard recalc 1,7 GB, takes several minutes.
So I don't know if it is really a bug or a possibility of enhancement.

BTW, there are a lot of formulae with OFFSET() which is a volatile function,
maybe where possible replace it with INDEX() could help a bit on the
calculation's speed, and perhaps SUM() in arrays with SUMPRODUCT().

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146499] Crash to desktop when activating presentation mode (unsatisfied query for interface of type com.sun.star.lang.XUnoTunnel!)

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146499

Julien Nabet  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #13 from Julien Nabet  ---
After having updated local repo, I confirm I don't reproduce the hang anymore.

But I still have:
warn:sd:24374:24374:sd/source/ui/framework/tools/FrameworkHelper.cxx:209:
DBG_UNHANDLED_EXCEPTION in lcl_getViewShell exception:
com.sun.star.uno.RuntimeException message: unsatisfied query for interface of
type com.sun.star.lang.XUnoTunnel!
/home/julien/lo/libreoffice/include/com/sun/star/uno/Reference.hxx:83
warn:legacy.tools:24374:24374:svx/source/form/fmshimp.cxx:1800: only to be used
in alive mode
so indeed, unrelated.

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2022-01-05 Thread Andrea Gelmini (via logerrit)
 xmloff/source/text/txtparai.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit dba8853271b1ee52c294c2401a5c8d98cc52cdc3
Author: Andrea Gelmini 
AuthorDate: Tue Jan 4 18:58:50 2022 +0100
Commit: Julien Nabet 
CommitDate: Wed Jan 5 19:11:20 2022 +0100

Fix typos

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

diff --git a/xmloff/source/text/txtparai.cxx b/xmloff/source/text/txtparai.cxx
index 504c32b90f57..20f2b5c6388e 100644
--- a/xmloff/source/text/txtparai.cxx
+++ b/xmloff/source/text/txtparai.cxx
@@ -1182,7 +1182,7 @@ void XMLTOCMarkImportContext_Impl::ProcessAttribute(
 {
 case XML_ELEMENT(TEXT, XML_OUTLINE_LEVEL):
 {
-// ouline level: set Level property
+// outline level: set Level property
 sal_Int32 nTmp;
 if (::sax::Converter::convertNumber( nTmp, aIter.toView() )
 && nTmp >= 1
@@ -1239,7 +1239,7 @@ void XMLUserIndexMarkImportContext_Impl::ProcessAttribute(
 break;
 case XML_ELEMENT(TEXT, XML_OUTLINE_LEVEL):
 {
-// ouline level: set Level property
+// outline level: set Level property
 sal_Int32 nTmp;
 if (::sax::Converter::convertNumber(
 nTmp, aIter.toView(), 0,


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

2022-01-05 Thread Andrea Gelmini (via logerrit)
 cui/qa/uitest/dialogs/chardlg.py |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4c4d37d00628ced52376f1034ff58f96dc274c95
Author: Andrea Gelmini 
AuthorDate: Tue Dec 21 21:49:28 2021 +0100
Commit: Julien Nabet 
CommitDate: Wed Jan 5 19:09:33 2022 +0100

Fix typo

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

diff --git a/cui/qa/uitest/dialogs/chardlg.py b/cui/qa/uitest/dialogs/chardlg.py
index 631766922a0d..21a1582567a0 100644
--- a/cui/qa/uitest/dialogs/chardlg.py
+++ b/cui/qa/uitest/dialogs/chardlg.py
@@ -113,7 +113,7 @@ class Test(UITestCase):
 # Then make sure that '80% lighter' is lum-mod=2000 and 
lum-off=8000:
 # Without the accompanying fix in place, this test would have 
failed with:
 # AssertionError: 1 != 2000
-# i.e. the effects where not applied, luminancen modulation was 
the default instead of a
+# i.e. the effects where not applied, luminance modulation was the 
default instead of a
 # custom value.
 self.assertEqual(portion.CharColorLumMod, 2000)
 self.assertEqual(portion.CharColorLumOff, 8000)


[Libreoffice-bugs] [Bug 146588] The numbered list font changes when setting font for text

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146588

--- Comment #2 from LeroyG  ---
Steps to Reproduce (continued):
4. Select first part of the paragraph (at least one character)
5. Clear direct formatting (Ctrl+M)
6. Without unselecting (or reselecting) the first part of the paragraph (at
least one character), pick a different font (may be the same as in step 3.).

Actual Results:
After step 5.: Number 1 of the bulleted list reverts to default font
After step 6.: Number 1 of the bulleted list remains invariable

So, if the font change is done at least in two parts (not all the paragraph
selected at the same time), the number do not change.
The change do not happen with bullets, maybe there is anothe mechanism here.

Version: 7.1.8.1 (x64) / LibreOffice Community
Build ID: e1f30c802c3269a1d052614453f260e49458c82c
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: default; VCL: win
Locale: es-MX (es_ES); UI: en-US
Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: include/svx

2022-01-05 Thread Stephan Bergmann (via logerrit)
 include/svx/unoshape.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3773dd5bb42f78300446b8c6c0b5c58b8bbb3728
Author: Stephan Bergmann 
AuthorDate: Wed Jan 5 16:12:59 2022 +0100
Commit: Stephan Bergmann 
CommitDate: Wed Jan 5 19:05:44 2022 +0100

Missing RTTI for UBSan

...which caused e.g. CppunitTest_chart2_export to emit lots of

> warn:sal.osl:3446618:3446618:sal/osl/unx/module.cxx:155: 
dlopen(.../instdir/program/libchartcorelo.so, 257): 
.../instdir/program/libchartcorelo.so: undefined symbol: _ZTI12SvxShapeRect

Change-Id: I26b0ad58ad6fa577e0e8299dde80bcac444f9504
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128012
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/include/svx/unoshape.hxx b/include/svx/unoshape.hxx
index 69e1fe024424..20cbf28f6d89 100644
--- a/include/svx/unoshape.hxx
+++ b/include/svx/unoshape.hxx
@@ -394,7 +394,7 @@ public:
 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId(  ) 
override;
 };
 
-class SvxShapeRect final : public SvxShapeText
+class SAL_DLLPUBLIC_RTTI SvxShapeRect final : public SvxShapeText
 {
 public:
 SVXCORE_DLLPUBLIC SvxShapeRect(SdrObject* pObj);


[Libreoffice-bugs] [Bug 146499] Crash to desktop when activating presentation mode (unsatisfied query for interface of type com.sun.star.lang.XUnoTunnel!)

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146499

Noel Grandin  changed:

   What|Removed |Added

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

--- Comment #12 from Noel Grandin  ---
Noting that the XUnoTunnel warning had nothing to do with this bug

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2022-01-05 Thread Noel Grandin (via logerrit)
 sd/source/ui/slideshow/slideshowviewimpl.cxx |  100 +++
 sd/source/ui/slideshow/slideshowviewimpl.hxx |   20 -
 2 files changed, 45 insertions(+), 75 deletions(-)

New commits:
commit a6e7b7c9044c689b7824cf97f4ff79655a950802
Author: Noel Grandin 
AuthorDate: Wed Jan 5 13:53:16 2022 +0200
Commit: Noel Grandin 
CommitDate: Wed Jan 5 19:03:11 2022 +0100

tdf#146499 Crash to desktop when activating presentation mode

mutex deadlock, regression from
commit 62efb188668a3296591dcfa3658185e2f982e356
use comphelper::WeakComponentImplHelper in SlideShowView

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

diff --git a/sd/source/ui/slideshow/slideshowviewimpl.cxx 
b/sd/source/ui/slideshow/slideshowviewimpl.cxx
index 9666e232dccb..29eca42ea45f 100644
--- a/sd/source/ui/slideshow/slideshowviewimpl.cxx
+++ b/sd/source/ui/slideshow/slideshowviewimpl.cxx
@@ -50,53 +50,6 @@ using namespace ::com::sun::star;
 namespace sd
 {
 
-// SlideShowViewListeners
-
-void SlideShowViewListeners::addListener( const Reference< 
util::XModifyListener >& _rxListener )
-{
-WeakReference< util::XModifyListener > xWeak( _rxListener );
-if( std::find( maListeners.begin(), maListeners.end(), xWeak ) == 
maListeners.end() )
-maListeners.push_back( xWeak );
-}
-
-void SlideShowViewListeners::removeListener( const Reference< 
util::XModifyListener >& _rxListener )
-{
-WeakReference< util::XModifyListener > xWeak( _rxListener );
-ViewListenerVector::iterator aIter( std::find( maListeners.begin(), 
maListeners.end(), xWeak ) );
-if( aIter != maListeners.end() )
-maListeners.erase( aIter );
-}
-
-void SlideShowViewListeners::notify( const lang::EventObject& _rEvent )
-{
-ViewListenerVector::iterator aIter( maListeners.begin() );
-while( aIter != maListeners.end() )
-{
-Reference< util::XModifyListener > xListener( *aIter );
-if( xListener.is() )
-{
-xListener->modified( _rEvent );
-++aIter;
-}
-else
-{
-aIter = maListeners.erase( aIter );
-}
-}
-}
-
-void SlideShowViewListeners::disposing( const lang::EventObject& _rEventSource 
)
-{
-for( const auto& rxListener : maListeners )
-{
-Reference< util::XModifyListener > xListener( rxListener );
-if( xListener.is() )
-xListener->disposing( _rEventSource );
-}
-
-maListeners.clear();
-}
-
 void SlideShowViewMouseListeners::notify( const WrappedMouseEvent& rEvent )
 {
 forEach(
@@ -223,9 +176,17 @@ void 
SlideShowView::disposingImpl(std::unique_lock& rGuard)
 // notify all listeners that _we_ are going down (send a disposing()),
 // then delete listener containers:
 lang::EventObject const evt( static_cast(this) );
-if (maViewListeners.getLength())
+if (!maViewListeners.empty())
 {
-maViewListeners.disposing( evt );
+auto tmp = std::move(maViewListeners);
+rGuard.unlock();
+for( const auto& rxListener : tmp )
+{
+Reference< util::XModifyListener > xListener( rxListener );
+if( xListener.is() )
+xListener->disposing( evt );
+}
+rGuard.lock();
 }
 if (maPaintListeners.getLength())
 {
@@ -366,16 +327,23 @@ void SAL_CALL 
SlideShowView::addTransformationChangedListener( const Reference<
 {
 std::unique_lock aGuard( m_aMutex );
 
-if (!m_bDisposed)
-maViewListeners.addListener( xListener );
+if (m_bDisposed)
+return;
+WeakReference< util::XModifyListener > xWeak( xListener );
+if( std::find( maViewListeners.begin(), maViewListeners.end(), xWeak ) == 
maViewListeners.end() )
+maViewListeners.push_back( xWeak );
 }
 
 void SAL_CALL SlideShowView::removeTransformationChangedListener( const 
Reference< util::XModifyListener >& xListener )
 {
 std::unique_lock aGuard( m_aMutex );
 
-if (!m_bDisposed)
-maViewListeners.removeListener( xListener );
+if (m_bDisposed)
+return;
+WeakReference< util::XModifyListener > xWeak( xListener );
+auto aIter( std::find( maViewListeners.begin(), maViewListeners.end(), 
xWeak ) );
+if( aIter != maViewListeners.end() )
+maViewListeners.erase( aIter );
 }
 
 void SAL_CALL SlideShowView::addPaintListener( const Reference< 
awt::XPaintListener >& xListener )
@@ -488,16 +456,34 @@ void SAL_CALL SlideShowView::windowResized( const 
awt::WindowEvent& e )
 {
 std::unique_lock aGuard( m_aMutex );
 
-if (!m_bDisposed)
+if (m_bDisposed)
+return;
+
+if (!maViewListeners.empty())
 {
 // Change event source, to enable listeners to match event
 // with view
 awt::WindowEvent aEvent( e );
 aEvent.Source = static_cast< ::cppu::OWeakObject* 

[Libreoffice-bugs] [Bug 146499] Crash to desktop when activating presentation mode (unsatisfied query for interface of type com.sun.star.lang.XUnoTunnel!)

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146499

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.4.0

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146499] Crash to desktop when activating presentation mode (unsatisfied query for interface of type com.sun.star.lang.XUnoTunnel!)

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146499

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

https://git.libreoffice.org/core/commit/a6e7b7c9044c689b7824cf97f4ff79655a950802

tdf#146499 Crash to desktop when activating presentation mode

It will be available in 7.4.0.

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

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146595] New: Cannot open file ods

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146595

Bug ID: 146595
   Summary: Cannot open file ods
   Product: LibreOffice
   Version: 7.2.4.1 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bind...@videotron.ca

Description:
getting the following message when trying to open an ods file 
Erreur de lecture.
Erreur de format dans le fichier du sous-document content.xml à la position
2,4927088(row,col).

Steps to Reproduce:
1.Click on file to open
2.
3.

Actual Results:
getting blank page with error message (as above)

Erreur de lecture.
Erreur de format dans le fichier du sous-document content.xml à la position
2,4927088(row,col).

Expected Results:
normal sheet


Reproducible: Always


User Profile Reset: No



Additional Info:
file can be supplied if necessary

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146594] New: Data in chart/image is truncated when copying a bar plot with a cell in error state

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146594

Bug ID: 146594
   Summary: Data in chart/image is truncated when copying a bar
plot with a cell in error state
   Product: LibreOffice
   Version: 6.4.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kenneth.brad...@datalogic.com

Created attachment 177330
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177330=edit
Showing the difference between copy/pasted plots with a "#DIV/0" cell in the
data

I was plotting some data with a bar graph and I didn't notice that one of the
values was 0/0 giving "#DIV/0", the bar graph came out just fine before and
after that cell.  The offending cell gave a value of 0 instead of "#DIV/0"
which I believe is normal operating procedure.

I used "Export as image" and was unhappy with the resolution so I tried to copy
the image and paste it into Microsoft Teams which seemed to have higher
resolution.

I noticed that the pasted image did not match the image shown in LibreOffice,
all the values in the column after the "#DIV/0" cell were not included in the
pasted image.  I tried copying again into Gimp and it matched the MS Teams
result. 

The top half of the attached image was copy/pasted from the data with a value
of "#DIV/0" at index 16, while the bottom half has a value of 0 at index 16.

It looks like the image plotting function does a no-op instead of the draw
action inside Calc, while the copy function appears to hit an exception and is
caught after the column is completed.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 94223] Selection box for text box not shown

2022-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94223

Michael Meeks  changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #26 from Michael Meeks  ---
Perhaps Caolan has some insight on the merge ?
AFAICS much of our box selection, and double-click to-switch-to-rotation/shear
mode etc. is far too hard to use but ... hey ho.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: helpcontent2

2022-01-05 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 58787bd05d83cc521bfb0d7695416b78f46a9e01
Author: Olivier Hallot 
AuthorDate: Wed Jan 5 14:18:20 2022 -0300
Commit: Gerrit Code Review 
CommitDate: Wed Jan 5 18:18:20 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 1fbed0448d0d1d77532fe3abb5be05fc13d93bdb
  - Improve paragraph spacing in text

Add more space below paragraphs.

Change-Id: Ie282883229bcc1471aed6c35ef57d1ec909996b5
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/128013
Tested-by: Jenkins
Tested-by: Ilmari Lauhakangas 
Reviewed-by: Ilmari Lauhakangas 

diff --git a/helpcontent2 b/helpcontent2
index 53e0c535c989..1fbed0448d0d 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 53e0c535c9892e7d586d5ae5b3eada2bd07f9550
+Subproject commit 1fbed0448d0d1d77532fe3abb5be05fc13d93bdb


  1   2   3   >