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

2022-05-04 Thread Stephan Bergmann (via logerrit)
 avmedia/source/viewer/mediawindow.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 574018db41b9be7619bddda098c6068efdc2886a
Author: Stephan Bergmann 
AuthorDate: Wed May 4 22:34:29 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Thu May 5 07:57:49 2022 +0200

Just use Any ctor instead of makeAny in avmedia

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

diff --git a/avmedia/source/viewer/mediawindow.cxx 
b/avmedia/source/viewer/mediawindow.cxx
index 4db6a93cf553..d6649a2d743c 100644
--- a/avmedia/source/viewer/mediawindow.cxx
+++ b/avmedia/source/viewer/mediawindow.cxx
@@ -445,10 +445,10 @@ void MediaWindow::dispatchInsertAVMedia(const 
css::uno::Reference xDispatch = 
rDispatchProvider->queryDispatch(aDispatchURL, "", 0);
 css::uno::Sequence 
aArgs(comphelper::InitPropertySequence({
-{ "URL", css::uno::makeAny(rURL) },
-{ "Size.Width", uno::makeAny(rSize.Width)},
-{ "Size.Height", uno::makeAny(rSize.Height)},
-{ "IsLink", css::uno::makeAny(bLink) },
+{ "URL", css::uno::Any(rURL) },
+{ "Size.Width", uno::Any(rSize.Width)},
+{ "Size.Height", uno::Any(rSize.Height)},
+{ "IsLink", css::uno::Any(bLink) },
 }));
 xDispatch->dispatch(aDispatchURL, aArgs);
 }


[Libreoffice-bugs] [Bug 148442] [FORMS] Reference value (on) on checkbox always exported as "Yes" to PDF

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

Alfonso  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 148442] [FORMS] Reference value (on) on checkbox always exported as "Yes" to PDF

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

--- Comment #5 from Alfonso  ---
Created attachment 179934
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179934=edit
Sample Document (PDF)

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

[Libreoffice-bugs] [Bug 148442] [FORMS] Reference value (on) on checkbox always exported as "Yes" to PDF

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

--- Comment #4 from Alfonso  ---
Created attachment 179933
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179933=edit
Sample Document (Writer)

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

[Libreoffice-bugs] [Bug 111911] Printed text is compressed (overlapping characters) if opened in versions after 5.2.5 but only with Epson printer LX-350

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

Proj  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #21 from Proj  ---
I tried it again on the latest version (7.3.2.2) like you asked and the bug is
still there when trying to print a spreadsheet on Libre Office Calc using an
Epson LX series dot matrix printer. 

Epson LX-300+II, bug
Epson LX-310, bug
Epson LQ-310, no bug

The results are the same as when I tested it previously on version 7.2.4.1

Version: 7.3.2.2 (x64) / LibreOffice Community
Build ID: 49f2b1bff42cfccbd8f788c8dc32c1c309559be0
CPU threads: 2; OS: Windows 10.0 Build 19044; 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: accessibility/source

2022-05-04 Thread Stephan Bergmann (via logerrit)
 accessibility/source/extended/textwindowaccessibility.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit ffdad488a8d2cd52e7bc81c9dee7c9aa562d80e8
Author: Stephan Bergmann 
AuthorDate: Wed May 4 22:35:17 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Thu May 5 07:14:56 2022 +0200

Just use Any ctor instead of makeAny in accessibility

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

diff --git a/accessibility/source/extended/textwindowaccessibility.cxx 
b/accessibility/source/extended/textwindowaccessibility.cxx
index 4b37b1c78dd7..26186c44ae89 100644
--- a/accessibility/source/extended/textwindowaccessibility.cxx
+++ b/accessibility/source/extended/textwindowaccessibility.cxx
@@ -2097,9 +2097,9 @@ void Document::handleSelectionChangeNotification()
 xParagraph->notifyEvent(
 css::accessibility::AccessibleEventId::
 CARET_CHANGED,
-css::uno::makeAny< ::sal_Int32 >(
+css::uno::Any( ::sal_Int32 (
 nNewLastPara == m_nSelectionLastPara
-? m_nSelectionLastPos : 0),
+? m_nSelectionLastPos : 0)),
 css::uno::Any(nNewLastPos));
 }
 }
@@ -2216,7 +2216,7 @@ void Document::disposeParagraphs()
 // static
 css::uno::Any Document::mapFontColor(::Color const & rColor)
 {
-return css::uno::makeAny(rColor.GetRGBColor());
+return css::uno::Any(rColor.GetRGBColor());
 // FIXME  keep transparency?
 }
 


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

2022-05-04 Thread Stephan Bergmann (via logerrit)
 basic/qa/cppunit/test_vba.cxx |4 -
 basic/source/classes/sbxmod.cxx   |6 +-
 basic/source/runtime/methods1.cxx |  108 +++---
 basic/source/uno/namecont.cxx |2 
 4 files changed, 60 insertions(+), 60 deletions(-)

New commits:
commit b5ab864096c6b099e6a79587f881f287234278f9
Author: Stephan Bergmann 
AuthorDate: Wed May 4 22:33:03 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Thu May 5 07:13:54 2022 +0200

Just use Any ctor instead of makeAny in basic

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

diff --git a/basic/qa/cppunit/test_vba.cxx b/basic/qa/cppunit/test_vba.cxx
index 68d9bbaf2570..6ac6974fc081 100644
--- a/basic/qa/cppunit/test_vba.cxx
+++ b/basic/qa/cppunit/test_vba.cxx
@@ -236,8 +236,8 @@ void VBATest::testMiscOLEStuff()
 
 uno::Sequence< uno::Any > aArgs
 {
-uno::makeAny(sPath),
-uno::makeAny(OUString(o3tl::toU(pODBCDriverName)))
+uno::Any(sPath),
+uno::Any(OUString(o3tl::toU(pODBCDriverName)))
 };
 
 for ( sal_uInt32  i=0; i aArgs
 {
 uno::Any(),
-makeAny(m_xDialog),
-makeAny(m_xModel),
-makeAny(GetParent()->GetName())
+Any(m_xDialog),
+Any(m_xModel),
+Any(GetParent()->GetName())
 };
 pDocObject = new SbUnoObject( GetName(), uno::Any( 
xVBAFactory->createInstanceWithArguments( "ooo.vba.msforms.UserForm", aArgs  ) 
) );
 
diff --git a/basic/source/runtime/methods1.cxx 
b/basic/source/runtime/methods1.cxx
index 8fbe9ff65a7f..6ce744dbe034 100644
--- a/basic/source/runtime/methods1.cxx
+++ b/basic/source/runtime/methods1.cxx
@@ -2446,10 +2446,10 @@ void SbRtl_SYD(StarBASIC *, SbxArray & rPar, bool)
 
 Sequence< Any > aParams
 {
-makeAny(rPar.Get(1)->GetDouble()),
-makeAny(rPar.Get(2)->GetDouble()),
-makeAny(rPar.Get(3)->GetDouble()),
-makeAny(rPar.Get(4)->GetDouble())
+Any(rPar.Get(1)->GetDouble()),
+Any(rPar.Get(2)->GetDouble()),
+Any(rPar.Get(3)->GetDouble()),
+Any(rPar.Get(4)->GetDouble())
 };
 
 CallFunctionAccessFunction(aParams, "SYD", rPar.Get(0));
@@ -2469,9 +2469,9 @@ void SbRtl_SLN(StarBASIC *, SbxArray & rPar, bool)
 
 Sequence< Any > aParams
 {
-makeAny(rPar.Get(1)->GetDouble()),
-makeAny(rPar.Get(2)->GetDouble()),
-makeAny(rPar.Get(3)->GetDouble())
+Any(rPar.Get(1)->GetDouble()),
+Any(rPar.Get(2)->GetDouble()),
+Any(rPar.Get(3)->GetDouble())
 };
 
 CallFunctionAccessFunction(aParams, "SLN", rPar.Get(0));
@@ -2511,11 +2511,11 @@ void SbRtl_Pmt(StarBASIC *, SbxArray & rPar, bool)
 
 Sequence< Any > aParams
 {
-makeAny(rate),
-makeAny(nper),
-makeAny(pmt),
-makeAny(fv),
-makeAny(type)
+Any(rate),
+Any(nper),
+Any(pmt),
+Any(fv),
+Any(type)
 };
 
 CallFunctionAccessFunction(aParams, "Pmt", rPar.Get(0));
@@ -2556,12 +2556,12 @@ void SbRtl_PPmt(StarBASIC *, SbxArray & rPar, bool)
 
 Sequence< Any > aParams
 {
-makeAny(rate),
-makeAny(per),
-makeAny(nper),
-makeAny(pv),
-makeAny(fv),
-makeAny(type)
+Any(rate),
+Any(per),
+Any(nper),
+Any(pv),
+Any(fv),
+Any(type)
 };
 
 CallFunctionAccessFunction(aParams, "PPmt", rPar.Get(0));
@@ -2601,11 +2601,11 @@ void SbRtl_PV(StarBASIC *, SbxArray & rPar, bool)
 
 Sequence< Any > aParams
 {
-makeAny(rate),
-makeAny(nper),
-makeAny(pmt),
-makeAny(fv),
-makeAny(type)
+Any(rate),
+Any(nper),
+Any(pmt),
+Any(fv),
+Any(type)
 };
 
 CallFunctionAccessFunction(aParams, "PV", rPar.Get(0));
@@ -2631,7 +2631,7 @@ void SbRtl_NPV(StarBASIC *, SbxArray & rPar, bool)
 
 Sequence< Any > aParams
 {
-makeAny(rPar.Get(1)->GetDouble()),
+Any(rPar.Get(1)->GetDouble()),
 aValues
 };
 
@@ -2672,11 +2672,11 @@ void SbRtl_NPer(StarBASIC *, SbxArray & rPar, bool)
 
 Sequence< Any > aParams
 {
-makeAny(rate),
-makeAny(pmt),
-makeAny(pv),
-makeAny(fv),
-makeAny(type)
+Any(rate),
+Any(pmt),
+Any(pv),
+Any(fv),
+Any(type)
 };
 
 CallFunctionAccessFunction(aParams, "NPer", rPar.Get(0));
@@ -2705,8 +2705,8 @@ void SbRtl_MIRR(StarBASIC *, SbxArray & rPar, bool)
 Sequence< Any > aParams
 {
 aValues,
-makeAny(rPar.Get(2)->GetDouble()),
-makeAny(rPar.Get(3)->GetDouble())
+Any(rPar.Get(2)->GetDouble()),
+Any(rPar.Get(3)->GetDouble())
 };
 
 

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

2022-05-04 Thread Stephan Bergmann (via logerrit)
 basctl/source/dlged/dlged.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3db0b7549e198ac0719ff52bff38a3d79e212083
Author: Stephan Bergmann 
AuthorDate: Wed May 4 22:33:52 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Thu May 5 07:13:20 2022 +0200

Just use Any ctor instead of makeAny in basctl

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

diff --git a/basctl/source/dlged/dlged.cxx b/basctl/source/dlged/dlged.cxx
index 69ffb81f3579..81fa3f14e837 100644
--- a/basctl/source/dlged/dlged.cxx
+++ b/basctl/source/dlged/dlged.cxx
@@ -789,7 +789,7 @@ void DlgEditor::Copy()
 Sequence< Any > aSeqData
 {
 aNoResourceDialogModelBytesAny,
-makeAny(aCombinedData)
+Any(aCombinedData)
 };
 
 pTrans = new DlgEdTransferableImpl( m_ClipboardDataFlavorsResource, 
aSeqData );
@@ -797,7 +797,7 @@ void DlgEditor::Copy()
 else
 {
 // No resource, support only old format
-pTrans = new DlgEdTransferableImpl( m_ClipboardDataFlavors , { 
makeAny(DialogModelBytes) } );
+pTrans = new DlgEdTransferableImpl( m_ClipboardDataFlavors , { 
Any(DialogModelBytes) } );
 }
 SolarMutexReleaser aReleaser;
 xClipboard->setContents( pTrans , pTrans );


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

2022-05-04 Thread Stephan Bergmann (via logerrit)
 chart2/qa/extras/PivotChartTest.cxx|   12 
+-
 chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx   |4 
+--
 chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx |2 -
 chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx |2 -
 chart2/source/controller/main/ChartController_Tools.cxx|4 
+--
 chart2/source/controller/main/ChartController_Window.cxx   |8 
+++---
 chart2/source/controller/sidebar/ChartColorWrapper.cxx |2 -
 chart2/source/controller/sidebar/ChartLinePanel.cxx|2 -
 chart2/source/inc/CommonFunctors.hxx   |2 -
 chart2/source/tools/TitleHelper.cxx|2 -
 chart2/source/view/main/VButton.cxx|6 
++---
 11 files changed, 23 insertions(+), 23 deletions(-)

New commits:
commit 6ad8a6398dbf2b4605ee4c3c222a0c2ee396c163
Author: Stephan Bergmann 
AuthorDate: Wed May 4 21:47:39 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Thu May 5 07:12:47 2022 +0200

Just use Any ctor instead of makeAny in chart2

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

diff --git a/chart2/qa/extras/PivotChartTest.cxx 
b/chart2/qa/extras/PivotChartTest.cxx
index baa1c925132e..60dd561cb632 100644
--- a/chart2/qa/extras/PivotChartTest.cxx
+++ b/chart2/qa/extras/PivotChartTest.cxx
@@ -71,7 +71,7 @@ void 
lclModifyOrientation(uno::Reference const & xD
 OUString aName = xNamed->getName();
 uno::Reference xPropSet(xNamed, UNO_QUERY_THROW);
 if (aName == sFieldName)
-xPropSet->setPropertyValue("Orientation", 
uno::makeAny(eOrientation));
+xPropSet->setPropertyValue("Orientation", uno::Any(eOrientation));
 }
 }
 
@@ -87,7 +87,7 @@ void 
lclModifyFunction(uno::Reference const & xDesc
 OUString aName = xNamed->getName();
 uno::Reference xPropSet(xNamed, UNO_QUERY_THROW);
 if (aName == sFieldName)
-xPropSet->setPropertyValue("Function", uno::makeAny(eFunction));
+xPropSet->setPropertyValue("Function", uno::Any(eFunction));
 }
 }
 
@@ -134,13 +134,13 @@ void 
lclModifySubtotals(uno::Reference const & xDes
 void lclModifyColumnGrandTotal(uno::Reference 
const & xDataPilotDescriptor, bool bTotal)
 {
 uno::Reference xProperties(xDataPilotDescriptor, 
uno::UNO_QUERY_THROW);
-xProperties->setPropertyValue("ColumnGrand", uno::makeAny(bTotal));
+xProperties->setPropertyValue("ColumnGrand", uno::Any(bTotal));
 }
 
 void lclModifyRowGrandTotal(uno::Reference const 
& xDataPilotDescriptor, bool bTotal)
 {
 uno::Reference xProperties(xDataPilotDescriptor, 
uno::UNO_QUERY_THROW);
-xProperties->setPropertyValue("RowGrand", uno::makeAny(bTotal));
+xProperties->setPropertyValue("RowGrand", uno::Any(bTotal));
 }
 
 void lclCheckSequence(std::vector const & reference,
@@ -293,7 +293,7 @@ table::CellRangeAddress 
lclCreateTestData(uno::ReferencegetStandardFormat(util::NumberFormat::DATE, aLocale);
 uno::Reference xCellRange = 
xSheet->getCellRangeByPosition(nEndCol, 1, nEndCol, nEndRow);
 uno::Reference xCellProp(xCellRange, UNO_QUERY_THROW);
-xCellProp->setPropertyValue("NumberFormat", uno::makeAny(nDateKey));
+xCellProp->setPropertyValue("NumberFormat", uno::Any(nDateKey));
 
 table::CellRangeAddress sCellRangeAddress;
 sCellRangeAddress.Sheet = 0;
@@ -493,7 +493,7 @@ void PivotChartTest::testChangePivotTable()
 // Enable column totals and check the data is still unchanged
 {
 uno::Reference xProperties(xDataPilotTable, 
uno::UNO_QUERY_THROW);
-xProperties->setPropertyValue("ColumnGrand", uno::makeAny(true));
+xProperties->setPropertyValue("ColumnGrand", uno::Any(true));
 }
 
 CPPUNIT_ASSERT_EQUAL(sal_Int32(3), getNumberOfDataSeries(xChartDoc));
diff --git a/chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx 
b/chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx
index 56d2d44f9ce6..abfa395ca5f0 100644
--- a/chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx
+++ b/chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx
@@ -138,7 +138,7 @@ namespace
 try
 {
 xSceneProperties->setPropertyValue( "D3DSceneLightColor" + aIndex,
-uno::makeAny( 
rLightSource.nDiffuseColor ));
+uno::Any( 
rLightSource.nDiffuseColor ));
 xSceneProperties->setPropertyValue( "D3DSceneLightDirection" + 
aIndex,
 uno::Any( 
rLightSource.aDirection ));
 xSceneProperties->setPropertyValue( "D3DSceneLightOn" 

[Libreoffice-commits] core.git: canvas/inc

2022-05-04 Thread Stephan Bergmann (via logerrit)
 canvas/inc/base/bufferedgraphicdevicebase.hxx |2 +-
 canvas/inc/base/graphicdevicebase.hxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit baf8ce5955c6e20fe730b33093b704a6eb377d18
Author: Stephan Bergmann 
AuthorDate: Wed May 4 22:32:24 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Thu May 5 07:12:19 2022 +0200

Just use Any ctor instead of makeAny in canvas

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

diff --git a/canvas/inc/base/bufferedgraphicdevicebase.hxx 
b/canvas/inc/base/bufferedgraphicdevicebase.hxx
index 4cd604148cce..f07c8de23099 100644
--- a/canvas/inc/base/bufferedgraphicdevicebase.hxx
+++ b/canvas/inc/base/bufferedgraphicdevicebase.hxx
@@ -154,7 +154,7 @@ namespace canvas
 
 css::uno::Any getXWindow() const
 {
-return css::uno::makeAny(mxWindow);
+return css::uno::Any(mxWindow);
 }
 
 virtual void disposeThis() override
diff --git a/canvas/inc/base/graphicdevicebase.hxx 
b/canvas/inc/base/graphicdevicebase.hxx
index 6045d32f3b30..03aec9a85203 100644
--- a/canvas/inc/base/graphicdevicebase.hxx
+++ b/canvas/inc/base/graphicdevicebase.hxx
@@ -325,7 +325,7 @@ namespace canvas
 
 css::uno::Any getDumpScreenContent() const
 {
-return css::uno::makeAny( mbDumpScreenContent );
+return css::uno::Any( mbDumpScreenContent );
 }
 
 void setDumpScreenContent( const css::uno::Any& rAny )


[Libreoffice-bugs] [Bug 107739] [META] Field bugs and enhancements

2022-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107739
Bug 107739 depends on bug 80786, which changed state.

Bug 80786 Summary: Feature request: Function to remove field codes, turning all 
fields into plain text
https://bugs.documentfoundation.org/show_bug.cgi?id=80786

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

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

[Libreoffice-bugs] [Bug 45946] EDITING: Allow conversion of fields like date, variable or mail merge in selected text

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

Mike Kaganski  changed:

   What|Removed |Added

 CC||stian@gmail.com

--- Comment #4 from Mike Kaganski  ---
*** Bug 80786 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 80786] Feature request: Function to remove field codes, turning all fields into plain text

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

Mike Kaganski  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #9 from Mike Kaganski  ---


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

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

[Libreoffice-bugs] [Bug 148943] New: CSV filter token 4 (number of first row) needs an explicit "CSV Import" clarification

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

Bug ID: 148943
   Summary: CSV filter token 4 (number of first row) needs an
explicit "CSV Import" clarification
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
   URL: https://ask.libreoffice.org/t/how-to-convert-csv-from-
command-line-and-ignore-first-lines/77114/
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com
CC: er...@redhat.com, olivier.hal...@libreoffice.org

https://help.libreoffice.org/7.3/km/text/shared/guide/csv_params.html

https://ask.libreoffice.org/t/how-to-convert-csv-from-command-line-and-ignore-first-lines/77114/
is how a user was confused that using the "Number of First Row" CSV filter
token for export doesn't work.

As Eike mentioned there, "the help text says “Row number to start reading” this
is for importing CSV" - but there's an alternative reading of "start reading"
as "read the spreadsheet when exporting". So having a uniform "CSV Import"
marker, like those used starting from token 7, would be very clear. (I suppose
that these markers deserve a separate column, so that token names are separate
from import/export specifiers.)

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

[Libreoffice-bugs] [Bug 140779] Add help page for CSV filter options

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

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 138472] Calc enhancement: ignore rows when importing CSV

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

--- Comment #11 from Mike Kaganski  ---
IMO a clear WONTFIX. It would be something absolutely non-standard,
implementing a very specific use case, but not helping at infinite number of
alternative "filtering" scenarios. In case of "automation", you need a custom
macro or the like.

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

[Libreoffice-bugs] [Bug 148639] "Title Sorting" feature needed for Writer

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

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 148470] simple Chinese user interface tooltip display error on Apple M1 Macos 12

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

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 148444] "Print Preview" and "Print Preview bar" in Writer help pages need some updating

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|target:7.4.0
   |target:7.4.0|

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

[Libreoffice-bugs] [Bug 148341] Webservice in Macro not working reliably (More then 1 request per macro call)

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

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 146798] Math stops responding to keyboard after inserting from sidebar

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

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 148692] tab fill characters appear with varying spaces

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

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 148689] [FILEOPEN] "Symbolic Link" SLK / SYLK trigrams

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

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 148688] Undo change of anchor positions image at wrong spot

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

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 148686] Wrapping does not kick in early enough in ToC lines

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

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 148684] Preview: cap and corner styles are not updated in the in Line dialog preview window

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

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 148681] LO Writer, FILESAVE: automatic chapter numbering disappears in FODT

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

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 148676] EDITING: Symbol '#' (Number) Brakes Hyperlink 'Target To Document'

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

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 148913] Crash mergedlo!SfxViewFrame::Notify+0xf87

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

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 148913] Crash mergedlo!SfxViewFrame::Notify+0xf87

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

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

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

[Libreoffice-bugs] [Bug 148405] Difficult to change Font face on Hyperlink displayed text

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

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

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

[Libreoffice-bugs] [Bug 148405] Difficult to change Font face on Hyperlink displayed text

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

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 145481] To set font size of a character style in percentage relative to current paragraph style

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

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

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 148931] Sum doubles quantity if for only one line

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

Mike Kaganski  changed:

   What|Removed |Added

 Resolution|WONTFIX |NOTABUG

--- Comment #3 from Mike Kaganski  ---
(In reply to Don from comment #2)
> I noticed that while Sum(C21,C21) doubles the contents of cell 21,
> Sum(C21:C21) does not.

Indeed. Sum(C21,C21) is a call of SUM with *two* arguments, where each argument
is the cell value, identical to "C21+C21"; while Sum(C21:C21) is a call with
*one* argument, which is "a range of cells from C21 to C21", which is just a
single cell.

You simply need to read the basics of spreadsheets: see "Calc Guide" at
https://documentation.libreoffice.org/en/english-documentation/.

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

[Libreoffice-bugs] [Bug 148942] New: FILESAVE Calc corrupts external file references in XLSX files making Excel unable to open

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

Bug ID: 148942
   Summary: FILESAVE Calc corrupts external file references in
XLSX files making Excel unable to open
   Product: LibreOffice
   Version: 6.4.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: t...@new-life.org.au

Description:
We get sent XLSX files by a supplier (an order form). These contain links to
external data sources that we do not have access to. The path varies, but
inevitably, when we send it back with our changes, it doesn't open in Excel
(2016 is what they're using, but we have a computer with 365 kept up to date
that does the same).

I have done some basic testing (Ubuntu 22.4 LO7.3.2.1) and found the issue
appears to be LibreOffice changing the "Target=" value in
"xl/externalLinks/_rels/externalLink.xml.rels". Specifically,
"file://C:/path/to/file.xls" in that Target is replaced with
"../../../../C:/path/to/file.xls" on Linux, or on Windows (Win10 LO6.4.4.2), it
seems to strip out the part before a space in the filename (the filename has
multiple spaces - break is on the first one).

I have manually changed the broken Target= value in one of the Linux created
test files back to what the source file had originally, and Excel is then happy
to open it.

I have only done basic testing on one specific file, as I don't have access to
Excel myself, but the issue has been across dozens of files for some time.

Steps to Reproduce:
1. Create xlsx file with Excel (2016) that contains links to external data
sources by full path
2. Open xlsx file in LO
3. Save as new file still in XLSX format
4. Attempt to open in Excel

Actual Results:
Excel reports corruption and asks to recover. 

Expected Results:
File should open without error. LO should not change the target path for an
external link.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.3.2.1 / LibreOffice Community
Build ID: 30(Build:1)
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Ubuntu package version: 1:7.3.2~rc1-0ubuntu2
Calc: threaded

NOTE: We also have had this issue in older Ubuntu builds such as whatever is in
Ubuntu 20.10, aswell as on Windows with LO6.x, and this is occuring on multiple
machines for multiple users.


I can supply example files if necessary.

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

[Libreoffice-bugs] [Bug 107765] CALC: Switching language during spell-check doesn't change the text's language property

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

Kohei Yoshida  changed:

   What|Removed |Added

 CC||dennisfrancis...@gmail.com

--- Comment #12 from Kohei Yoshida  ---
cc: Dennis Francis

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

[Libreoffice-bugs] [Bug 107765] CALC: Switching language during spell-check doesn't change the text's language property

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

--- Comment #11 from Kohei Yoshida  ---
(In reply to Justin L from comment #10)
> Well, if http://gerrit.libreoffice.org/c/core/+/133804 passed all tests,
> then I might have been comfortable enough to submit it, but obviously there
> are caches that need flushing or whatever.
> 
> Kohei, can you take it from here? I'm already way over my head and can't
> accept responsibility for anything in this code.

I can't make promises, but I'll add it to my list.

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

[Libreoffice-bugs] [Bug 148931] Sum doubles quantity if for only one line

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

Don  changed:

   What|Removed |Added

 Resolution|NOTABUG |WONTFIX
 Status|RESOLVED|VERIFIED

--- Comment #2 from Don  ---
I noticed that while Sum(C21,C21) doubles the contents of cell 21, Sum(C21:C21)
does not.

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

[Libreoffice-bugs] [Bug 144605] [Solved] With View Grid Lines paper size limits appears but without View Grid Lines doesn't appear anymore

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

sotor...@gmail.com changed:

   What|Removed |Added

Summary|With View Grid Lines paper  |[Solved] With View Grid
   |size limits appears but |Lines paper size limits
   |without View Grid Lines |appears but without View
   |doesn't appear anymore  |Grid Lines doesn't appear
   ||anymore

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

[Libreoffice-bugs] [Bug 148470] simple Chinese user interface tooltip display error on Apple M1 Macos 12

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

--- Comment #13 from enhua_2...@163.com ---
(In reply to Caolán McNamara from comment #8)
> > I try to debug but I can't get the aTooltipFont's font name.
> 
> dumping it to stderr with something like
> 
> fprintf(stderr, "fontname is %s\n",
> aTooltipFont.GetFamilyName().toUtf8().getStr());
> 
> might be good enough to get it
> 
> > Then I add two
> > line after line 1267, because  the menus with '⌘' displays correctly.
> > aStyleSettings.SetHelpFont(aMenuFont);
> > aStyleSettings.SetToolFont(aMenuFont); 
> > But it has no effect.
> 
> On mac I think the menus are rendered by the OS and not directly by us so
> things are complicated there.

I find that the tooltip is returned in File
vcl/source/helper/commandinfoprovider.cxx Line 291, then add a print line 
after line 289 like below
fprintf(stderr,"sShortCut is %s\n",sShortCut.toUtf8().getStr());
The print like this:
sShortCut is xe2x8cx98T
sShortCut is xe2x87xa7xe2x8cx98F11
sShortCut is xe2x87xa7F11
sShortCut is xe2x8cx98]
sShortCut is xe2x8cx98[
sShortCut is xe2x8cx98B
sShortCut is xe2x8cx98I
sShortCut is xe2x8cx98U
sShortCut is xe2x8cx98D
sShortCut is xe2x8cx98N
sShortCut is xe2x87xa7xe2x8cx98N
sShortCut is xe2x8cx98O
sShortCut is 
sShortCut is xe2x8cx98S  // I guess xe2x8cx98 is for ⌘
sShortCut is xe2x87xa7xe2x8cx98S
sShortCut is 
sShortCut is xe2x87xa7xe2x8cx98M
sShortCut is 
sShortCut is xe2x8cx98P

If print without toUtf8() , the print like this:
fprintf(stderr,"sShortCut is %s\n",sShortCut.getStr());
sShortCut is x18#S // I guess x18# is for ⌘
sShortCut is xe7!x18#S
sShortCut is 
sShortCut is xe7!x18#M
3
sShortCut is 
sShortCut is x18#P
sShortCut is 
sShortCut is xe7!x18#O
sShortCut is x18#X
sShortCut is x18#C
sShortCut is x18#V

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

[Libreoffice-bugs] [Bug 113331] [META] PPT (binary) format bug tracker

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||148930


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=148930
[Bug 148930] FILESAVE: PPT: line connectors after gone after RT
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148930] FILESAVE: PPT: line connectors after gone after RT

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

Aron Budea  changed:

   What|Removed |Added

 CC||aron.bu...@gmail.com
 Blocks||113331


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113331
[Bug 113331] [META] PPT (binary) format bug tracker
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148470] simple Chinese user interface tooltip display error on Apple M1 Macos 12

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

--- Comment #12 from enhua_2...@163.com ---
(In reply to Adolfo Jayme Barrientos from comment #9)
> IIRC, LO is using Liberation as its UI font since commit
> 06299d6c1620e5b2f2a3588d7c93790278397cbd (it used Arial before). It has
> never behaved correctly in this regard: it should use the platform UI font
> (see tdf#91400)


It displays correct when type  '⌘ ⌥' in LO writer and then set font to
Liberation. 
There is not no such phenomenons as tdf#91400  except the '⌘ ⌥' characters in
tooltip  and tip of the day dialogues yet.

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

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

2022-05-04 Thread Olivier Hallot (via logerrit)
 sw/uiconfig/swriter/toolbar/textstylebar.xml |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fe61ab648e0f3b5993660f2255aca2de6f53c2a2
Author: Olivier Hallot 
AuthorDate: Wed May 4 20:26:03 2022 +0100
Commit: Olivier Hallot 
CommitDate: Thu May 5 01:19:58 2022 +0200

T no more...

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

diff --git a/sw/uiconfig/swriter/toolbar/textstylebar.xml 
b/sw/uiconfig/swriter/toolbar/textstylebar.xml
index 746ceb4c73b2..4c28f4a1fa3d 100644
--- a/sw/uiconfig/swriter/toolbar/textstylebar.xml
+++ b/sw/uiconfig/swriter/toolbar/textstylebar.xml
@@ -24,7 +24,7 @@
  
  
  
-T
+ 
  
  
  


[Libreoffice-bugs] [Bug 117087] FILEOPEN: Word OOXML equation layout missing newline on filter import

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

--- Comment #11 from Silvestr VS  ---
Created attachment 179932
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179932=edit
Equations in OOXML are deformed in LO 7.4.0.a

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

[Libreoffice-bugs] [Bug 117087] FILEOPEN: Word OOXML equation layout missing newline on filter import

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

--- Comment #10 from Silvestr VS  ---
Repro in 

Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 465c3ad95059f0efa13c8027f7383c4d20a5b2ff
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded

The original document displays all equations on the same line. The example file
from comment #4 shows the equations on separate lines, but deformed (I'll
upload a screenshot shortly).

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

[Libreoffice-bugs] [Bug 139007] [META] PDF accessibility

2022-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139007
Bug 139007 depends on bug 148935, which changed state.

Bug 148935 Summary: Add dialog to insert  contents when importing an 
image/object
https://bugs.documentfoundation.org/show_bug.cgi?id=148935

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 39558] ACCESSIBILITY: always prompt for text alternative when inserting picture to create accessible documents by default

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

Olivier Hallot  changed:

   What|Removed |Added

 CC||olivier.hallot@libreoffice.
   ||org

--- Comment #15 from Olivier Hallot  ---
*** Bug 148935 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 148935] Add dialog to insert contents when importing an image/object

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

Olivier Hallot  changed:

   What|Removed |Added

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

--- Comment #3 from Olivier Hallot  ---


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

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

[Libreoffice-ux-advise] [Bug 148935] Add dialog to insert contents when importing an image/object

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

Olivier Hallot  changed:

   What|Removed |Added

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

--- Comment #3 from Olivier Hallot  ---


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

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

[Libreoffice-bugs] [Bug 116854] FILEOPEN DOCX: Floating table with 75, 4% width in MSO opens 100% width in LO

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

--- Comment #8 from Silvestr VS  ---
Partially reproducible in 

Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 465c3ad95059f0efa13c8027f7383c4d20a5b2ff
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded

The document does not look exactly as the PDF, though it does span to 6 pages
almost as expected.
However the blue box with addresses is still pushed away to page 2, so the
issue described by Timur in comment #7 still exists.

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

[Libreoffice-bugs] [Bug 148935] Add dialog to insert contents when importing an image/object

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

--- Comment #2 from Christophe Strobbe  ---
This bug is currently listed as blocking Bug 139007 / PDF-Accessibility, but it
affects ODF itself and most other formats that LibreOffice can write or export
(DOCX, HTML, ePUb, etcetera).
I also don't understand how this differs from Bug 39558, unless the goal here
is to make the prompt for a text alternative optional rather than obligatory.

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

[Libreoffice-bugs] [Bug 148941] New: Make label of the field for an image's text alternative consistent

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

Bug ID: 148941
   Summary: Make label of the field for an image's text
alternative consistent
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: c_strobbe-...@yahoo.co.uk

Steps to reproduced the issue
1. Insert an image into a Writer document.
3. Right-click on the image and choose "Properties" from the context menu; go
to the Options tab: below the Name field, there is a field named "Alternative
(Text only)". Fill in a string such as "test-title" and exit the dialog.
4. While the image is still selected, go to the Format menu and choose
"Description". The string "test-title" now appears in a field named "Title".

The labels are inconsistent with each other.
A. "Title" is based on the fact that the field creates the content of the
svg:title element in content.xml. This corresponds to the img element's alt
attribute in HTML (see Appendix D in part 3 of the ODF 1.3 spec).
B. The label "Alternative (Text only)" seems to result from an attempt to
better describe the field's purpose, but I suspect the string "Text
alternative" (used in standards such as WCAG 2.1:
https://www.w3.org/TR/WCAG21/#text-alternatives ) was misunderstood by someone
who renamed the label. (In the French UI, we see the same issue: "Alternative
(text seul)"; the German UI at least makes sense "Alternativtext".)

We need to make this consistent and replace both "Title" and "Alternative (Text
only)" with a label that better conveys the field's purpose, i.e. providing a
text alternative that serves the same purpose or conveys the same information
as the image.

(I could not find such inconsistency for drawing objects, which have no context
menu entry named "Properties", nor in Impress, where "Description" in an
image's context menu opens a dialog wit just the fields "Title" and
"Description". However, in these cases also, "Title" should be replaced with a
better label.)

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

[Libreoffice-bugs] [Bug 116333] FILEOPEN SVG Text misplaced in graph

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

--- Comment #15 from Silvestr VS  ---
Created attachment 179931
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179931=edit
Screenshot of the two SVGs opened in Draw side by side

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

[Libreoffice-bugs] [Bug 116333] FILEOPEN SVG Text misplaced in graph

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

--- Comment #14 from Silvestr VS  ---
Created attachment 179930
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179930=edit
ODT with the inserted SVGs

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

[Libreoffice-bugs] [Bug 88278] [META] SVG import image filter (all modules)

2022-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88278
Bug 88278 depends on bug 116333, which changed state.

Bug 116333 Summary: FILEOPEN SVG Text misplaced in graph
https://bugs.documentfoundation.org/show_bug.cgi?id=116333

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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

[Libreoffice-bugs] [Bug 116333] FILEOPEN SVG Text misplaced in graph

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

Silvestr VS  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|NEW |RESOLVED

--- Comment #13 from Silvestr VS  ---
Not reproducible under

Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 465c3ad95059f0efa13c8027f7383c4d20a5b2ff
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded

There is only slight visual inconsistency between the text rendering from text
and paths, but all objects are in their places, visible and I can't see any
roughness either. I'll upload a screenshot and an ODT with the two for
reference.

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

[Libreoffice-bugs] [Bug 132683] Fileopen DOCX: Alt Text field of image opens as Description, Alternative remains empty (comment 13)

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

--- Comment #14 from Christophe Strobbe  ---
I retested this with LibreOffice 7.1.4.2 on Windows 10:
1. I created a DOCX document using Word 2016, inserted the string 'Title' in
the title field and 'Description' in the description field.
2. I opened the DOCX file in LibreOffice 7.1.4.2. I found the string 'Title' in
the field "Alternative (Text only)" and the string 'Description' in the
Description field.
3. I exported the document to PDF (from LibreOffice) and opened the resulting
PDF file in Adobe Acrobat Pro. In Acrobat, I found the "Alternate text" as
follows "Title - Description", i.e. LibreOffice concatenates the title and the
description with just " - " between them.

In Rhys Young's original DOCX file, the Description file was filled in and the
Title field was empty. In LibreOffice 7.1.4.2, the description ends up in the
Description field. After exporting to PDF, that description ends up in the
Alternate Text field.
The PDF attached as "pdf no alt text" is not even Tagged PDF, which means it
was not exported with the appropriate settings to generate a text alternative
in the first place.

With the appropriate export options, the image does actually get a text
alternative in the PDF file, as described above (cf. concatenation /
combination of Title and Description).

Does that mean the original issue has been fixed?

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

[Libreoffice-bugs] [Bug 148305] Can't switch the column placement direction between LTR and RTL

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

--- Comment #9 from Eyal Rozenberg  ---
(In reply to Dieter from comment #8)
> But - as far as I can see - it only stands with your sample document.
> perhaps it's not a general problem, but a problem of that specific document.

First of all, a problem with LO's behavior on a specific document is a general
LO problem.

But that's not even the point. The point is that there's no way of setting the
column progression direction, so my sample document doesn't even matter.


> > Also, in the attached file - how do you make the ToC columns go
> > left-to-right rather than right-to-left?
> Just modify paragraph styles, that are used in the TOC: Alignment ->
> Properties -> Text direction LTR

Dieter, you misunderstand what this bug is about. It is _not_ about paragraph
directions, it is about column progression direction, which is entirely
independent of paragraph directions.

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

[Libreoffice-bugs] [Bug 43814] Pictures Alternative Name disapear after changing Anchor Type

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

Christophe Strobbe  changed:

   What|Removed |Added

 CC||c_strobbe-...@yahoo.co.uk

--- Comment #7 from Christophe Strobbe  ---
Isn't this a duplicate of Bug 39547, which was fixed in 2015 LibreOffice
5.0.0.)?

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

[Libreoffice-bugs] [Bug 115625] FILEOPEN DOCX: Table placed on wrong position because of Frame Wrap

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

--- Comment #8 from Silvestr VS  ---
Reproduced in 

Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 465c3ad95059f0efa13c8027f7383c4d20a5b2ff
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded

Text field is still overlapping with the table both in original file and in the
sample from comment #7.

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

[Libreoffice-bugs] [Bug 115487] FILEOPEN XLS LibreOffice draws yellow grid, Excel2016 gray

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

--- Comment #12 from Silvestr VS  ---
Repro in 
Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 465c3ad95059f0efa13c8027f7383c4d20a5b2ff
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded

The XLS file in comment #11 has yellow lines where XLSX file in comment #10 has
grey lines.

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

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

2022-05-04 Thread Stephan Bergmann (via logerrit)
 cli_ure/source/climaker/climaker_app.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 345d46112872842c34b6e3feb84d7407094dee64
Author: Stephan Bergmann 
AuthorDate: Wed May 4 19:34:01 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Wed May 4 22:43:37 2022 +0200

Just use Any ctor instead of makeAny in cli_ure

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

diff --git a/cli_ure/source/climaker/climaker_app.cxx 
b/cli_ure/source/climaker/climaker_app.cxx
index 97b1a5ce9bce..7b9bc001ae1b 100644
--- a/cli_ure/source/climaker/climaker_app.cxx
+++ b/cli_ure/source/climaker/climaker_app.cxx
@@ -395,12 +395,12 @@ SAL_IMPLEMENT_MAIN()
 std::vector< rtl::Reference< unoidl::Provider > > unoidlMandatoryProvs;
 for (auto& rRegistry : extra_registries)
 {
-xSet->insert(makeAny(rRegistry));
+xSet->insert(Any(rRegistry));
 unoidlMgr->addProvider(rRegistry);
 }
 for (auto& rRegistry : mandatory_registries)
 {
-xSet->insert(makeAny(rRegistry));
+xSet->insert(Any(rRegistry));
 rtl::Reference< unoidl::Provider > 
prov(unoidlMgr->addProvider(rRegistry));
 unoidlMandatoryProvs.push_back(prov);
 }


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

2022-05-04 Thread Stephan Bergmann (via logerrit)
 comphelper/qa/unit/types_test.cxx   |   12 ++--
 comphelper/qa/unit/variadictemplates.cxx|   12 ++--
 comphelper/source/misc/configuration.cxx|4 ++--
 include/comphelper/configuration.hxx|4 ++--
 include/comphelper/namedvaluecollection.hxx |4 ++--
 5 files changed, 18 insertions(+), 18 deletions(-)

New commits:
commit eae2e1d6d61e7096d3fc0220832a1d1705d70093
Author: Stephan Bergmann 
AuthorDate: Wed May 4 19:33:06 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Wed May 4 22:30:38 2022 +0200

Just use Any ctor instead of makeAny in comphelper

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

diff --git a/comphelper/qa/unit/types_test.cxx 
b/comphelper/qa/unit/types_test.cxx
index a0f136a5f49f..c69b07199127 100644
--- a/comphelper/qa/unit/types_test.cxx
+++ b/comphelper/qa/unit/types_test.cxx
@@ -42,7 +42,7 @@ public:
 
 void TypesTest::testGetINT64()
 {
-CPPUNIT_ASSERT_EQUAL(sal_Int64(1337), 
::comphelper::getINT64(uno::makeAny(sal_Int64(1337;
+CPPUNIT_ASSERT_EQUAL(sal_Int64(1337), 
::comphelper::getINT64(uno::Any(sal_Int64(1337;
 
 uno::Any aValue;
 CPPUNIT_ASSERT_EQUAL(sal_Int64(0), ::comphelper::getINT64(aValue));
@@ -50,7 +50,7 @@ void TypesTest::testGetINT64()
 
 void TypesTest::testGetINT32()
 {
-CPPUNIT_ASSERT_EQUAL(sal_Int32(1337), 
::comphelper::getINT32(uno::makeAny(sal_Int32(1337;
+CPPUNIT_ASSERT_EQUAL(sal_Int32(1337), 
::comphelper::getINT32(uno::Any(sal_Int32(1337;
 
 uno::Any aValue;
 CPPUNIT_ASSERT_EQUAL(sal_Int32(0), ::comphelper::getINT32(aValue));
@@ -58,7 +58,7 @@ void TypesTest::testGetINT32()
 
 void TypesTest::testGetINT16()
 {
-CPPUNIT_ASSERT_EQUAL(sal_Int16(1337), 
::comphelper::getINT16(uno::makeAny(sal_Int16(1337;
+CPPUNIT_ASSERT_EQUAL(sal_Int16(1337), 
::comphelper::getINT16(uno::Any(sal_Int16(1337;
 
 uno::Any aValue;
 CPPUNIT_ASSERT_EQUAL(sal_Int16(0), ::comphelper::getINT16(aValue));
@@ -66,7 +66,7 @@ void TypesTest::testGetINT16()
 
 void TypesTest::testGetDouble()
 {
-CPPUNIT_ASSERT_EQUAL(1337.1337, 
::comphelper::getDouble(uno::makeAny(1337.1337)));
+CPPUNIT_ASSERT_EQUAL(1337.1337, 
::comphelper::getDouble(uno::Any(1337.1337)));
 
 uno::Any aValue;
 CPPUNIT_ASSERT_EQUAL(0.0, ::comphelper::getDouble(aValue));
@@ -75,7 +75,7 @@ void TypesTest::testGetDouble()
 void TypesTest::testGetFloat()
 {
 CPPUNIT_ASSERT_EQUAL(static_cast(1337.0),
- 
::comphelper::getFloat(uno::makeAny(static_cast(1337.0;
+ 
::comphelper::getFloat(uno::Any(static_cast(1337.0;
 
 uno::Any aValue;
 CPPUNIT_ASSERT_EQUAL(static_cast(0.0), 
::comphelper::getFloat(aValue));
@@ -83,7 +83,7 @@ void TypesTest::testGetFloat()
 
 void TypesTest::testGetString()
 {
-CPPUNIT_ASSERT_EQUAL(OUString("1337"), 
::comphelper::getString(uno::makeAny(OUString("1337";
+CPPUNIT_ASSERT_EQUAL(OUString("1337"), 
::comphelper::getString(uno::Any(OUString("1337";
 
 uno::Any aValue;
 CPPUNIT_ASSERT_EQUAL(OUString(""), ::comphelper::getString(aValue));
diff --git a/comphelper/qa/unit/variadictemplates.cxx 
b/comphelper/qa/unit/variadictemplates.cxx
index e729d76b24ed..6b62204f487c 100644
--- a/comphelper/qa/unit/variadictemplates.cxx
+++ b/comphelper/qa/unit/variadictemplates.cxx
@@ -91,22 +91,22 @@ void VariadicTemplatesTest::testUnwrapArgs() {
 sal_Int32 tmp2  = 42;
 sal_uInt32 tmp3 = 42;
 ::com::sun::star::uno::Any tmp6(
-::com::sun::star::uno::makeAny( tmp1 )
+tmp1
 );
 ::com::sun::star::uno::Any tmp7(
-::com::sun::star::uno::makeAny( tmp2 )
+tmp2
 );
 ::com::sun::star::uno::Any tmp8(
-::com::sun::star::uno::makeAny( tmp3 )
+tmp3
 );
 ::com::sun::star::uno::Any tmp9(
-::com::sun::star::uno::makeAny( OUString("Test2") )
+OUString("Test2")
 );
 ::std::optional< ::com::sun::star::uno::Any > tmp10(
-::com::sun::star::uno::makeAny( OUString("Test3") )
+OUString("Test3")
 );
 ::std::optional< ::com::sun::star::uno::Any > tmp11(
-::com::sun::star::uno::makeAny( tmp1 )
+tmp1
 );
 
 // test equality with the baseline and template specialization with
diff --git a/comphelper/source/misc/configuration.cxx 
b/comphelper/source/misc/configuration.cxx
index a8ef15ac9178..097eabb6a345 100644
--- a/comphelper/source/misc/configuration.cxx
+++ b/comphelper/source/misc/configuration.cxx
@@ -145,8 +145,8 @@ 
comphelper::detail::ConfigurationWrapper::ConfigurationWrapper():
 
 // set root path
 css::uno::Sequence< css::uno::Any > params {
-css::uno::makeAny( css::beans::NamedValue{ "nodepath", 
css::uno::makeAny( OUString("/"))} ),
-css::uno::makeAny( 

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

2022-05-04 Thread Stephan Bergmann (via logerrit)
 cui/source/customize/CustomNotebookbarGenerator.cxx |2 +-
 cui/source/dialogs/toolbarmodedlg.cxx   |8 
 2 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 158bd4ae5c5fc9a3ab96c46fd20a56bc0d5b81dc
Author: Stephan Bergmann 
AuthorDate: Wed May 4 14:42:51 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Wed May 4 22:30:09 2022 +0200

Just use Any ctor instead of makeAny in cui

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

diff --git a/cui/source/customize/CustomNotebookbarGenerator.cxx 
b/cui/source/customize/CustomNotebookbarGenerator.cxx
index 392ea3e37a4e..c601d051ea11 100644
--- a/cui/source/customize/CustomNotebookbarGenerator.cxx
+++ b/cui/source/customize/CustomNotebookbarGenerator.cxx
@@ -266,7 +266,7 @@ void 
CustomNotebookbarGenerator::setCustomizedUIItem(Sequence sUIItemP
 const utl::OConfigurationNode aModesNode = aAppNode.openNode("Modes");
 const utl::OConfigurationNode 
aModeNode(aModesNode.openNode(sNotebookbarConfigType));
 
-css::uno::Any aUIItemProperties(makeAny(sUIItemProperties));
+css::uno::Any aUIItemProperties(sUIItemProperties);
 aModeNode.setNodeValue("UIItemProperties", aUIItemProperties);
 aAppNode.commit();
 }
diff --git a/cui/source/dialogs/toolbarmodedlg.cxx 
b/cui/source/dialogs/toolbarmodedlg.cxx
index 3d3594e8cde9..5ca568adf576 100644
--- a/cui/source/dialogs/toolbarmodedlg.cxx
+++ b/cui/source/dialogs/toolbarmodedlg.cxx
@@ -197,13 +197,13 @@ IMPL_LINK(ToolbarmodeDialog, OnApplyClick, weld::Button&, 
rButton, void)
 const utl::OConfigurationTreeRoot aAppNode(
 xContext, 
"org.openoffice.Office.UI.ToolbarMode/Applications/", true);
 if (sCurrentApp != "Writer")
-aAppNode.setNodeValue("Writer/Active", 
css::uno::makeAny(sCmd));
+aAppNode.setNodeValue("Writer/Active", css::uno::Any(sCmd));
 if (sCurrentApp != "Calc")
-aAppNode.setNodeValue("Calc/Active", css::uno::makeAny(sCmd));
+aAppNode.setNodeValue("Calc/Active", css::uno::Any(sCmd));
 if (sCurrentApp != "Impress")
-aAppNode.setNodeValue("Impress/Active", 
css::uno::makeAny(sCmd));
+aAppNode.setNodeValue("Impress/Active", css::uno::Any(sCmd));
 if (sCurrentApp != "Draw")
-aAppNode.setNodeValue("Draw/Active", css::uno::makeAny(sCmd));
+aAppNode.setNodeValue("Draw/Active", css::uno::Any(sCmd));
 aAppNode.commit();
 };
 }


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

2022-05-04 Thread Stephan Bergmann (via logerrit)
 connectivity/source/commontools/FValue.cxx |4 
 connectivity/source/commontools/TKeys.cxx  |2 
 connectivity/source/commontools/conncleanup.cxx|2 
 connectivity/source/commontools/dbtools.cxx|   24 +-
 connectivity/source/commontools/dbtools2.cxx   |2 
 connectivity/source/commontools/filtermanager.cxx  |   10 -
 connectivity/source/commontools/parameters.cxx |2 
 connectivity/source/commontools/paramwrapper.cxx   |2 
 connectivity/source/commontools/warningscontainer.cxx  |6 
 connectivity/source/cpool/ZPoolCollection.cxx  |2 
 connectivity/source/drivers/ado/ADriver.cxx|2 
 connectivity/source/drivers/ado/AResultSet.cxx |4 
 connectivity/source/drivers/ado/AStatement.cxx |2 
 connectivity/source/drivers/ado/ATables.cxx|2 
 connectivity/source/drivers/component/CResultSet.cxx   |2 
 connectivity/source/drivers/dbase/DResultSet.cxx   |2 
 connectivity/source/drivers/dbase/DTable.cxx   |   10 -
 connectivity/source/drivers/dbase/DTables.cxx  |2 
 connectivity/source/drivers/file/FStatement.cxx|2 
 connectivity/source/drivers/firebird/Tables.cxx|2 
 connectivity/source/drivers/flat/EResultSet.cxx|2 
 connectivity/source/drivers/hsqldb/HDriver.cxx |2 
 connectivity/source/drivers/hsqldb/HTable.cxx  |2 
 connectivity/source/drivers/hsqldb/HTables.cxx |2 
 connectivity/source/drivers/jdbc/JConnection.cxx   |2 
 connectivity/source/drivers/jdbc/JStatement.cxx|2 
 connectivity/source/drivers/jdbc/ResultSet.cxx |2 
 connectivity/source/drivers/jdbc/SQLException.cxx  |2 
 connectivity/source/drivers/mysql_jdbc/YDriver.cxx |   16 -
 connectivity/source/drivers/mysql_jdbc/YTable.cxx  |6 
 connectivity/source/drivers/mysql_jdbc/YTables.cxx |2 
 connectivity/source/drivers/mysqlc/mysqlc_connection.cxx   |2 
 connectivity/source/drivers/mysqlc/mysqlc_databasemetadata.cxx |   88 
+-
 connectivity/source/drivers/mysqlc/mysqlc_statement.cxx|2 
 connectivity/source/drivers/mysqlc/mysqlc_tables.cxx   |2 
 connectivity/source/drivers/odbc/OPreparedStatement.cxx|2 
 connectivity/source/drivers/odbc/OResultSet.cxx|4 
 connectivity/source/drivers/odbc/OStatement.cxx|2 
 connectivity/source/drivers/postgresql/pq_tools.cxx|5 
 connectivity/source/drivers/postgresql/pq_xcolumns.cxx |   21 +-
 connectivity/source/drivers/postgresql/pq_xcontainer.cxx   |   11 -
 connectivity/source/drivers/postgresql/pq_xindexcolumns.cxx|3 
 connectivity/source/drivers/postgresql/pq_xindexes.cxx |7 
 connectivity/source/drivers/postgresql/pq_xkeycolumns.cxx  |5 
 connectivity/source/drivers/postgresql/pq_xkeys.cxx|   18 +-
 connectivity/source/drivers/postgresql/pq_xtable.cxx   |7 
 connectivity/source/drivers/postgresql/pq_xtables.cxx  |   15 -
 connectivity/source/drivers/postgresql/pq_xusers.cxx   |6 
 connectivity/source/drivers/postgresql/pq_xview.cxx|5 
 connectivity/source/drivers/postgresql/pq_xviews.cxx   |   10 -
 connectivity/source/manager/mdrivermanager.cxx |4 
 connectivity/source/parse/sqliterator.cxx  |2 
 connectivity/source/sdbcx/VCollection.cxx  |   10 -
 53 files changed, 174 insertions(+), 183 deletions(-)

New commits:
commit 1f110bf567bc5ea85d19a5a4d273ac072f8aaced
Author: Stephan Bergmann 
AuthorDate: Wed May 4 19:32:02 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Wed May 4 22:29:41 2022 +0200

Just use Any ctor instead of makeAny in connectivity

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

diff --git a/connectivity/source/commontools/FValue.cxx 
b/connectivity/source/commontools/FValue.cxx
index 85da5fba30b3..4ac0235ac4e4 100644
--- a/connectivity/source/commontools/FValue.cxx
+++ b/connectivity/source/commontools/FValue.cxx
@@ -2285,11 +2285,11 @@ void ORowSetValue::impl_fill( const sal_Int32 _nType, 
bool _bNullable, const det
 (*this) = _rValueSource.getLong();
 break;
 case DataType::CLOB:
-(*this) = css::uno::makeAny(_rValueSource.getClob());
+(*this) = css::uno::Any(_rValueSource.getClob());
 setTypeKind(DataType::CLOB);
 break;
 case DataType::BLOB:
-(*this) 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-3' - jvmfwk/plugins

2022-05-04 Thread Stephan Bergmann (via logerrit)
 jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 958a0d618d78bf12d155aa5af9196757de26281b
Author: Stephan Bergmann 
AuthorDate: Wed May 4 14:22:45 2022 +0200
Commit: Caolán McNamara 
CommitDate: Wed May 4 22:16:36 2022 +0200

Some JREs need the bin/server/jvm.dll path after all

...which had been removed in 18bdf78e156f3cd1e6ccbb3ae28e919583bac70c "Azul 
is
just another OpenJDK variant", when fixing the previously mis-classified 
Azul
JRE from "uses OtherInfo" to "uses SunInfo".  But the IBM Semeru Runtime
() is
another arguably mis-classified case due to its java.vendor of "IBM 
Corporation"
(and where the

VENDOR_MAP_ENTRY("IBM Corporation"),

line in jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx might be relevant 
for
some other JRE from IBM; at least, that entry is present ever since the
introduction of vendorlist.cxx in 738e9b77b9d181b376188e405e1eb353cf93c597
"INTEGRATION: CWS jl8").

So just generally support the bin/server/jvm.dll path here for "uses 
OtherInfo",
even though it should actually only be necessary for "uses SunInfo".

(See the mail thread starting at

"[libreoffice-users] LibreOffice 7.3.3.2 Windows 64 bit seems not detect
AdoptOpenJdk JRE Windows 64 bit runtime".)

Change-Id: I3a4d02309b7c833c3cd32dc2dda4f4cb7b216693
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133827
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 
(cherry picked from commit c7b923a9ebaa40809c11659f8816a1d2bfd44c89)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133733
Reviewed-by: Caolán McNamara 

diff --git a/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx 
b/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx
index 578c51f0b0cc..528af9498959 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx
@@ -52,7 +52,11 @@ char const* const* OtherInfo::getRuntimePaths(int * size)
 "/bin/client/jvm.dll",
 "/bin/hotspot/jvm.dll",
 "/bin/classic/jvm.dll",
-"/bin/jrockit/jvm.dll"
+"/bin/jrockit/jvm.dll",
+// Needed by IBM Semeru Runtime, which is an OpenJDK (so should 
actually use SunInfo) with a
+// java.vendor of "IBM Corporation", so using OtherInfo here (cf. 
gVendorMap in
+// jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx):
+"/bin/server/jvm.dll"
 #elif defined UNX
 #ifdef MACOSX
 "/../../../../../Frameworks/JavaVM.framework/JavaVM" //as of  1.6.0_22


[Libreoffice-commits] core.git: Branch 'libreoffice-7-3' - ucb/source

2022-05-04 Thread Michael Stahl (via logerrit)
 ucb/source/ucp/webdav-curl/DAVProperties.cxx|3 +++
 ucb/source/ucp/webdav-curl/webdavresponseparser.cxx |   19 +--
 2 files changed, 16 insertions(+), 6 deletions(-)

New commits:
commit 8a8226630e7e2458835f21f57cb73769ef06c668
Author: Michael Stahl 
AuthorDate: Tue May 3 19:11:31 2022 +0200
Commit: Caolán McNamara 
CommitDate: Wed May 4 22:16:00 2022 +0200

ucb: webdav-curl: fix handling of non-standard properties

Sharepoint uses properties like these:

"http://schemas.microsoft.com/repl/resourcetag;
"urn:schemas-microsoft-com:Win32CreationTime"

They aren't standard and don't match our own ucbprops namespace, and it
looks like they should be handled by an encoding to a name like
""

Unfortunately WebDAVResponseParser::endElement() didn't do that when
handling a PROPFIND reply to get the property names.

This causes a crash when all properties are copied in
UniversalContentBroker::globalTransfer(), which is called by
SfxMedium::DoBackup_Impl() when the setting
"/org.openoffice.Office.Common/Save/Document/CreateBackup"
is in effect.

Change-Id: I2d6480bfd2f828b6e7fc431ba4b333d95ec12718
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133769
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit 65362d63b9019e45d1224ed6d78d4e1d443d6b00)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133727
Reviewed-by: Caolán McNamara 

diff --git a/ucb/source/ucp/webdav-curl/DAVProperties.cxx 
b/ucb/source/ucp/webdav-curl/DAVProperties.cxx
index 746c82ad993d..8b3dce369c5e 100644
--- a/ucb/source/ucp/webdav-curl/DAVProperties.cxx
+++ b/ucb/source/ucp/webdav-curl/DAVProperties.cxx
@@ -76,6 +76,9 @@ void DAVProperties::createSerfPropName( ::std::u16string_view 
const rFullName,
 }
 else
 {
+// this must not be a URI - WebDAVResponseParser must have converted it
+// to the "http://ucb.openoffice.org/dav/props/;;
 rName.name
diff --git a/ucb/source/ucp/webdav-curl/webdavresponseparser.cxx 
b/ucb/source/ucp/webdav-curl/webdavresponseparser.cxx
index 8b7d0473585c..83daa33b112d 100644
--- a/ucb/source/ucp/webdav-curl/webdavresponseparser.cxx
+++ b/ucb/source/ucp/webdav-curl/webdavresponseparser.cxx
@@ -522,6 +522,15 @@ namespace
 }
 }
 
+OUString MakePropertyName(WebDAVContext const& rContext)
+{
+OUString ret;
+OString const name(OUStringToOString(rContext.getName(), 
RTL_TEXTENCODING_UTF8));
+OString const nameSpace(OUStringToOString(rContext.getNamespace(), 
RTL_TEXTENCODING_UTF8));
+DAVProperties::createUCBPropName(nameSpace.getStr(), name.getStr(), 
ret);
+return ret;
+}
+
 void SAL_CALL WebDAVResponseParser::endElement( const OUString& aName )
 {
 const sal_Int32 nLen(aName.getLength());
@@ -531,9 +540,9 @@ namespace
 {
 if(collectThisPropertyAsName())
 {
-// When collecting property names and parent is prop, just 
append the prop name
-// to the collection, no need to parse deeper
-maPropStatNames.push_back(mpContext->getNamespace() + 
mpContext->getName());
+// name must be encoded as expected by createSerfPropName()
+OUString const name(MakePropertyName(*mpContext));
+maPropStatNames.emplace_back(name);
 }
 else
 {
@@ -850,9 +859,7 @@ namespace
 && isCollectingProperties())
 {
 http_dav_ucp::DAVPropertyValue 
aDAVPropertyValue;
-OString const 
name(OUStringToOString(mpContext->getParent()->getName(), 
RTL_TEXTENCODING_UTF8));
-OString const 
nameSpace(OUStringToOString(mpContext->getParent()->getNamespace(), 
RTL_TEXTENCODING_UTF8));
-
DAVProperties::createUCBPropName(nameSpace.getStr(), name.getStr(), 
aDAVPropertyValue.Name);
+aDAVPropertyValue.Name = 
MakePropertyName(*mpContext->getParent());
 if 
(UCBDeadPropertyValue::createFromXML(m_UCBType, m_UCBValue, 
aDAVPropertyValue.Value))
 {
 
maPropStatProperties.push_back(aDAVPropertyValue);


[Libreoffice-bugs] [Bug 148889] Problems to export to PDF a book with multiple spreadsheets

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

--- Comment #4 from Enrique Fernandez  ---
Problem solved. What I don't understand is that the problem appears with
version 7.2 and 7.3 and not with version 7.1.
In any case, thank you very much for your help.

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

[Libreoffice-bugs] [Bug 148934] TOC hyperlinks not compliant with PDF/UA, no contents

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

--- Comment #1 from Christophe Strobbe  ---
Hi Olivier,

If I understand this bug report correctly, it consists of two issues (on the
ODF side):

1. The GUI provides no mechanism to add text alternatives to any types of
hyperlinks (both normal links and ToC entries), i.e. authors can't do anything
that adds an office:title attribute to text:a elements. (Appendix D.2
"Hyperlink Titles" of Part 3 of the ODF 1.3 spec explains that office:title on
a text:a element should be exposed to assistive technologies as the "accessible
description".)
2. When you edit content.xml to add the office:title attribute to text:a
elements, this elements does not get exported to PDF.

On the PDF side, Link tags (both for regular hyperlinks and descendants of TOCI
elements) have a number of attributes and values:
- Type (Link)
- Title (empty)
- Actual Text (empty)
- Alternate Text (empty)
- ID (empty)
- Language.

In order to satisfy PAC 2021 (PDF Accessibility Checker 2021), Link tags need
an Alternative Text. So we need 
1. a way to fill in office:title on the authoring side, and
2. a mapping between ODF's office:title and PDF's Alternative Text.

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

[Libreoffice-bugs] [Bug 146798] Math stops responding to keyboard after inserting from sidebar

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

Rafael Lima  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 146798] Math stops responding to keyboard after inserting from sidebar

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

--- Comment #1 from Rafael Lima  ---
Hi, could you please provide steps to reproduce the problem?

What do you click that causes this problem?

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

[Libreoffice-bugs] [Bug 140200] Sidebar minimum width is excessively wide; hangs system when try to resize (kf5; HiDPI)

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

Rafael Lima  changed:

   What|Removed |Added

 CC||rafael.palma.l...@gmail.com

--- Comment #20 from Rafael Lima  ---
I have also experienced this issue occasionally. For some reason the sidebar is
larger than some "maximum value" and then resizing it will cause LO to hang.

However I cannot find any reproducible set of steps to cause this issue. Does
anyone know a series of steps to cause this problem?

BTW, my display is 1920 x 1080 with 100% scaling and I've had this issue using
these settings.

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

[Libreoffice-bugs] [Bug 113340] [META] RTF (text) paragraph-related issues

2022-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113340
Bug 113340 depends on bug 115348, which changed state.

Bug 115348 Summary: FILEOPEN: Left justified .rtf saved in LO is stuck fully 
justified when opened in MS Word
https://bugs.documentfoundation.org/show_bug.cgi?id=115348

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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

[Libreoffice-bugs] [Bug 115348] FILEOPEN: Left justified .rtf saved in LO is stuck fully justified when opened in MS Word

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

Silvestr VS  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #11 from Silvestr VS  ---
Could not reproduce using LO 7.2.6.2

Version: 7.2.6.2 / LibreOffice Community
Build ID: 20(Build:2)
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: cs-CZ (cs_CZ.UTF-8); UI: cs-CZ
7.2.6-1
Calc: threaded

I created 2 sample files in my daily-driver Writer, saved as RTF with the text
left-aligned and with justified (left). In MS Word (365) the alignments were
correct in both cases. It was also possible to change paragraph alignment in
Word to any of the 4 common ones.

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

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

2022-05-04 Thread Stephan Bergmann (via logerrit)
 cppu/qa/cppumaker/test_cppumaker.cxx |6 +++---
 cppu/qa/test_reference.cxx   |6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit cc6247a064360c943421a1cdcb996bf9a7324c2f
Author: Stephan Bergmann 
AuthorDate: Wed May 4 18:37:25 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Wed May 4 21:45:59 2022 +0200

Just use Any ctor instead of makeAny in cppu

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

diff --git a/cppu/qa/cppumaker/test_cppumaker.cxx 
b/cppu/qa/cppumaker/test_cppumaker.cxx
index 78097e26e854..a6d3e4942f06 100644
--- a/cppu/qa/cppumaker/test_cppumaker.cxx
+++ b/cppu/qa/cppumaker/test_cppumaker.cxx
@@ -475,7 +475,7 @@ void Test::testPolyStruct() {
 CPPUNIT_ASSERT_EQUAL(
 OUString(
 "test.codemaker.cppumaker.Struct"),
-(css::uno::makeAny(
+(css::uno::Any(
 test::codemaker::cppumaker::Struct< sal_Unicode, sal_Int16 >()).
  getValueType().getTypeName()));
 
@@ -494,7 +494,7 @@ void Test::testExceptions() {
 
 test::codemaker::cppumaker::TestException1 e11(
 "abc", nullptr, 1,
-css::uno::makeAny(123.0),
+css::uno::Any(123.0),
 test::codemaker::cppumaker::HelperEnum_ONE,
 test::codemaker::cppumaker::Struct(5, 
aEmptySequence), 2);
 test::codemaker::cppumaker::TestException1 e12(e11);
@@ -504,7 +504,7 @@ void Test::testExceptions() {
 CPPUNIT_ASSERT_EQUAL(e11, e13);
 test::codemaker::cppumaker::TestException2 e21(
 "abc", nullptr, 1,
-css::uno::makeAny(123.0),
+css::uno::Any(123.0),
 test::codemaker::cppumaker::HelperEnum_ONE,
 test::codemaker::cppumaker::Struct(5, 
aEmptySequence), 2);
 test::codemaker::cppumaker::TestException2 e22(e21);
diff --git a/cppu/qa/test_reference.cxx b/cppu/qa/test_reference.cxx
index 6ffb319077ed..698a8d5fe55a 100644
--- a/cppu/qa/test_reference.cxx
+++ b/cppu/qa/test_reference.cxx
@@ -49,12 +49,12 @@ public:
 {
 if (_type == cppu::UnoType::get())
 {
-return 
css::uno::makeAny>(
-this);
+return css::uno::Any(css::uno::Reference(
+this));
 }
 if (_type == cppu::UnoType::get())
 {
-return css::uno::makeAny>(this);
+return css::uno::Any(css::uno::Reference(this));
 }
 
 return Any();


[Libreoffice-bugs] [Bug 147666] Large image is inserted in a document off-screen

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

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 146875] Writer: ToC Index updating hangs

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

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 146875] Writer: ToC Index updating hangs

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

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 148907] FILESAVE DOCX: Writer freezes on ODT to DOCX conversion (SwPageFootnoteInfo::GetTopDist)

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

Telesto  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=14 |
   |6875|
 Status|NEW |RESOLVED
 Resolution|--- |INVALID

--- Comment #3 from Telesto  ---
Argh, there is already a report with exact same file.. Sorry..

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

[Libreoffice-bugs] [Bug 148940] FILEOPEN: docx: text overlapped when open some docx file

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

Zhang Qide  changed:

   What|Removed |Added

Summary|text overlapped when open   |FILEOPEN: docx: text
   |some docx file  |overlapped when open some
   ||docx file

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

[Libreoffice-bugs] [Bug 148907] FILESAVE DOCX: Writer freezes on ODT to DOCX conversion (SwPageFootnoteInfo::GetTopDist)

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

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 146875] Writer: ToC Index updating hangs

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

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 148907] FILESAVE DOCX: Writer freezes on ODT to DOCX conversion (SwPageFootnoteInfo::GetTopDist)

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

Telesto  changed:

   What|Removed |Added

Version|7.3.0.1 rc  |7.1.0.3 release

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

[Libreoffice-bugs] [Bug 141828] KF5 VCL PLUGIN: wrong cursor for handle of configurable shapes

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

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org

--- Comment #3 from Buovjaga  ---
Still repro

Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 6ebf46e332facfae5fd6027ec667ccd5993dd493
CPU threads: 8; OS: Linux 5.17; UI render: default; VCL: kf5 (cairo+xcb)
Locale: fi-FI (fi_FI.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 148481] Wrong mouse pointer shown for hyperlinks when pressing Ctrl

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

Rafael Lima  changed:

   What|Removed |Added

 CC||sergio.calleg...@gmail.com

--- Comment #7 from Rafael Lima  ---
*** Bug 133552 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 133552] Wrong cursor on links with KF5 and QT5 vcl plugins (open hand instead of hand pointing finger)

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

Rafael Lima  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED

--- Comment #4 from Rafael Lima  ---
This issue has recently been fixed in 148481.

The fix was backported to LO 7.3.3.

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

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

[Libreoffice-bugs] [Bug 148940] text overlapped when open some docx file

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

--- Comment #2 from Zhang Qide  ---
Created attachment 179929
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179929=edit
pdf file export from ms office 2013

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

[Libreoffice-bugs] [Bug 148940] text overlapped when open some docx file

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

--- Comment #1 from Zhang Qide  ---
Created attachment 179928
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179928=edit
screenshot

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

[Libreoffice-bugs] [Bug 148940] New: text overlapped when open some docx file

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

Bug ID: 148940
   Summary: text overlapped when open some docx file
   Product: LibreOffice
   Version: 7.3.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kenifany...@gmail.com

Created attachment 179927
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179927=edit
test document

text overlapped when open some docx file, see the attachment

Operating System: Windows 7 x64
Version: 7.3.2 release

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

[Libreoffice-bugs] [Bug 102495] [META] KDE VCL backend bugs and enhancements

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

Rafael Lima  changed:

   What|Removed |Added

 Depends on||148939


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=148939
[Bug 148939] Excessive mouse scroll step in the styles list using tabbed
interface and kf5
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148939] Excessive mouse scroll step in the styles list using tabbed interface and kf5

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

Rafael Lima  changed:

   What|Removed |Added

 Blocks||102495
 Whiteboard||needsKDE


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102495
[Bug 102495] [META] KDE VCL backend bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148341] Webservice in Macro not working reliably (More then 1 request per macro call)

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

--- Comment #2 from Andreas Heinisch  ---
I cannot fully test this, since I have no token for the website. I always
succeed to get a the expected answer. Could that be fixed with
https://gerrit.libreoffice.org/c/core/+/133275?

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

[Libreoffice-bugs] [Bug 114504] FILEOPEN: DOCX - Horizontal line alignment not imported

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

--- Comment #8 from Silvestr VS  ---
Reproduced in 7.4a

Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 465c3ad95059f0efa13c8027f7383c4d20a5b2ff
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded

All 4 lines are aligned left

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

[Libreoffice-bugs] [Bug 148939] New: Excessive mouse scroll step in the styles list using tabbed interface and kf5

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

Bug ID: 148939
   Summary: Excessive mouse scroll step in the styles list using
tabbed interface and kf5
   Product: LibreOffice
   Version: 7.3.1.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com

Created attachment 179926
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179926=edit
Video showing the problem

In the tabbed interface we have a Styles List showing all the available styles
alongside a quick preview. Using kf5 the scroll step using the mouse wheel is
not calibrated correctly. Scrolling the smallest amount will cause the list to
move down excessively.

See the attached video for more details. First I use the mouse wheel and scroll
down the smallest amount I can, however the view is moved far beyond expected.
Dragging the vertical scrollbar reveals that there are many more entries that
are not shown when using the mouse wheel.

>From my testing, this problem only happens in kf5. Using gtk3 makes the problem
go away, so it seems to be a kf5-specific issue.

System info:
Version: 7.3.2.2 / LibreOffice Community
Build ID: 30(Build:2)
CPU threads: 12; OS: Linux 5.13; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: pt-BR
Ubuntu package version: 1:7.3.2~rc2-0ubuntu0.21.10.1~lo1
Calc: threaded

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

[Libreoffice-commits] core.git: download.lst external/cairo

2022-05-04 Thread Caolán McNamara (via logerrit)
 download.lst |4 
 external/cairo/UnpackedTarball_cairo.mk  |   10 
 external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1 |   54 -
 external/cairo/cairo/0025-libtool-pass-use-ld.patch  |   16 
 external/cairo/cairo/cairo-fix_function_signature.patch.1|  334 
--
 external/cairo/cairo/cairo-libtool-rpath.patch.1 |   12 
 external/cairo/cairo/cairo.buildfix.patch|   24 
 external/cairo/cairo/san.patch.0 |   65 -
 8 files changed, 42 insertions(+), 477 deletions(-)

New commits:
commit 86132d8188e5e76623dc8053e5a43c1d69eb0831
Author: Caolán McNamara 
AuthorDate: Wed May 4 12:46:45 2022 +0100
Commit: Caolán McNamara 
CommitDate: Wed May 4 21:08:12 2022 +0200

upgrade to cairo 1.17.6

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

diff --git a/download.lst b/download.lst
index 4d733e58f141..5299b7b11a3b 100644
--- a/download.lst
+++ b/download.lst
@@ -16,8 +16,8 @@ export BSH_SHA256SUM := 
9e93c73e23aff644b17dfff65674c14150e7f3b38b19635e6222
 export BSH_TARBALL := beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip
 export BZIP2_SHA256SUM := 
ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269
 export BZIP2_TARBALL := bzip2-1.0.8.tar.gz
-export CAIRO_SHA256SUM := 
74b24c1ed436bbe87499179a3b27c43f4143b8676d8ad237a6fa787401959705
-export CAIRO_VERSION_MICRO := 4
+export CAIRO_SHA256SUM := 
4eebc4c2bad0402bc3f501db184417094657d111fb6c06f076a82ea191fe1faf
+export CAIRO_VERSION_MICRO := 6
 export CAIRO_TARBALL := cairo-1.17.$(CAIRO_VERSION_MICRO).tar.xz
 export CDR_SHA256SUM := 
5666249d613466b9aa1e987ea4109c04365866e9277d80f6cd9663e86b8ecdd4
 export CDR_TARBALL := libcdr-0.1.7.tar.xz
diff --git a/external/cairo/UnpackedTarball_cairo.mk 
b/external/cairo/UnpackedTarball_cairo.mk
index a2e9eb894d75..a30285d0a1bd 100644
--- a/external/cairo/UnpackedTarball_cairo.mk
+++ b/external/cairo/UnpackedTarball_cairo.mk
@@ -11,15 +11,17 @@ $(eval $(call gb_UnpackedTarball_UnpackedTarball,cairo))
 
 $(eval $(call gb_UnpackedTarball_set_tarball,cairo,$(CAIRO_TARBALL),,cairo))
 
+# cairo >= 1.17.6 was probably created in Fedora where
+# 
https://salsa.debian.org/mckinstry/libtool/-/commit/26c23f951d049241128e5e04a7bbc263e5b145f1
+# isn't applied, so add that in to avoid: /usr/bin/ld: unrecognized option 
'--gdb-index'
+
 $(eval $(call gb_UnpackedTarball_add_patches,cairo,\
external/cairo/cairo/cairo.buildfix.patch \
external/cairo/cairo/cairo.RGB24_888.patch \
external/cairo/cairo/cairo-libtool-rpath.patch.1 \
external/cairo/cairo/cairo.oldfreetype.patch \
-   external/cairo/cairo/san.patch.0 \
-   external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1 \
-external/cairo/cairo/cairo-fix_function_signature.patch.1 \
-external/cairo/cairo/cairo.ofz46165.patch.1 \
+   external/cairo/cairo/cairo.ofz46165.patch.1 \
+   external/cairo/cairo/0025-libtool-pass-use-ld.patch \
 ))
 
 ifeq ($(OS),iOS)
diff --git 
a/external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1 
b/external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1
deleted file mode 100644
index c0431555b09a..
--- a/external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1
+++ /dev/null
@@ -1,54 +0,0 @@
-From 03a820b173ed1fdef6ff14b4468f5dbc02ff59be Mon Sep 17 00:00:00 2001
-From: Heiko Lewin 
-Date: Tue, 15 Dec 2020 16:48:19 +0100
-Subject: [PATCH] Fix mask usage in image-compositor
-

- src/cairo-image-compositor.c|   8 ++--
- test/Makefile.sources   |   1 +
- test/bug-image-compositor.c |  39 
- test/reference/bug-image-compositor.ref.png | Bin 0 -> 185 bytes
- 4 files changed, 44 insertions(+), 4 deletions(-)
- create mode 100644 test/bug-image-compositor.c
- create mode 100644 test/reference/bug-image-compositor.ref.png
-
-diff --git a/src/cairo-image-compositor.c b/src/cairo-image-compositor.c
-index 79ad69f68..4f8aaed99 100644
 a/src/cairo-image-compositor.c
-+++ b/src/cairo-image-compositor.c
-@@ -2610,14 +2610,14 @@ _inplace_src_spans (void *abstract_renderer, int y, 
int h,
-   unsigned num_spans)
- {
- cairo_image_span_renderer_t *r = abstract_renderer;
--uint8_t *m;
-+uint8_t *m, *base = (uint8_t*)pixman_image_get_data(r->mask);
- int x0;
- 
- if (num_spans == 0)
-   return CAIRO_STATUS_SUCCESS;
- 
- x0 = spans[0].x;
--m = r->_buf;
-+m = base;
- do {
-   int len = spans[1].x - spans[0].x;
-   if (len >= r->u.composite.run_length && spans[0].coverage == 0xff) {
-@@ -2655,7 +2655,7 @@ 

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

2022-05-04 Thread Caolán McNamara (via logerrit)
 cui/source/customize/SvxMenuConfigPage.cxx|2 +-
 cui/source/customize/SvxToolbarConfigPage.cxx |6 --
 2 files changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 36aa242429ca992b20574f4974d471d544247362
Author: Caolán McNamara 
AuthorDate: Wed May 4 11:52:58 2022 +0100
Commit: Caolán McNamara 
CommitDate: Wed May 4 21:06:22 2022 +0200

Resolves: rhbz#2081661 gtk-critical gtk_tree_view_scroll_to_cell assertion

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

diff --git a/cui/source/customize/SvxMenuConfigPage.cxx 
b/cui/source/customize/SvxMenuConfigPage.cxx
index db0d95904a77..5793825b5d76 100644
--- a/cui/source/customize/SvxMenuConfigPage.cxx
+++ b/cui/source/customize/SvxMenuConfigPage.cxx
@@ -135,7 +135,7 @@ void SvxMenuConfigPage::Init()
 
 ReloadTopLevelListBox();
 
-m_xTopLevelListBox->set_active(0);
+m_xTopLevelListBox->set_active(m_xTopLevelListBox->get_count() ? 0 : -1);
 SelectElement();
 
 m_xCommandCategoryListBox->Init(comphelper::getProcessComponentContext(), 
m_xFrame,
diff --git a/cui/source/customize/SvxToolbarConfigPage.cxx 
b/cui/source/customize/SvxToolbarConfigPage.cxx
index bcf7da3c8c72..bc8346922790 100644
--- a/cui/source/customize/SvxToolbarConfigPage.cxx
+++ b/cui/source/customize/SvxToolbarConfigPage.cxx
@@ -243,10 +243,12 @@ void SvxToolbarConfigPage::Init()
 
 ReloadTopLevelListBox();
 
-sal_Int32 nPos = 0;
+sal_Int32 nCount = m_xTopLevelListBox->get_count();
+sal_Int32 nPos = nCount > 0 ? 0 : -1;
+
 if (!m_aURLToSelect.isEmpty())
 {
-for (sal_Int32 i = 0, nCount = m_xTopLevelListBox->get_count(); i < 
nCount; ++i)
+for (sal_Int32 i = 0; i < nCount; ++i)
 {
 SvxConfigEntry* pData = 
weld::fromId(m_xTopLevelListBox->get_id(i));
 


[Libreoffice-bugs] [Bug 148880] Range duplication in case of multi-sheet ranges when selecting them

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

Andreas Heinisch  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #3 from Andreas Heinisch  ---
Repro in:
Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: a58701650c2dd7ad8514752d571aa2569690fe37
CPU threads: 6; OS: Windows 10.0 Build 19044; UI render: Skia/Vulkan; VCL: win
Locale: de-DE (de_DE); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 148907] FILESAVE DOCX: Writer freezes on ODT to DOCX conversion (SwPageFootnoteInfo::GetTopDist)

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

raal  changed:

   What|Removed |Added

 CC||michael.st...@allotropia.de
   Keywords|bibisectRequest |bibisected, bisected

--- Comment #2 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Michael Stahl; Could you possibly take a look at this one?
Thanks
inux-64-7.1$
cdacc026104dfab05bed8d79316c34c0c314ce91 is the first bad commit
commit cdacc026104dfab05bed8d79316c34c0c314ce91
Author: Jenkins Build User 
Date:   Fri Apr 23 19:46:16 2021 +0200

source sha:810f7e4e0b61ee7cb3a7d6a1b503782d7248a4b1

https://git.libreoffice.org/core/+/810f7e4e0b61ee7cb3a7d6a1b503782d7248a4b1
   sw: layout: if fly's anchor moves forward, move fly off SwPageFrame

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

[Libreoffice-bugs] [Bug 148679] Database range (and its column labels / totals settings) is not considered when expanding the range for sorting

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

Zain Iftikhar  changed:

   What|Removed |Added

 CC||zainiftikharpk5...@gmail.co
   ||m
   Assignee|libreoffice-b...@lists.free |zainiftikharpk5...@gmail.co
   |desktop.org |m

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

  1   2   3   4   >