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

2022-02-02 Thread Tünde Tóth (via logerrit)
 oox/source/drawingml/fillproperties.cxx |2 ++
 oox/source/export/drawingml.cxx |   15 +++
 sw/qa/extras/uiwriter/uiwriter4.cxx |   10 +++---
 3 files changed, 20 insertions(+), 7 deletions(-)

New commits:
commit b8925251e48534706c6960a54c320d3879317321
Author: Tünde Tóth 
AuthorDate: Mon Jan 17 15:00:13 2022 +0100
Commit: László Németh 
CommitDate: Thu Feb 3 08:59:10 2022 +0100

tdf#146822 OOXML: fix export of the transparency in hatch fill

The transparency value of the hatch was not exported.

Follow-up to commit 001afbed910b7e565f602c1b11b1b4538cd59442
"tdf#127989 OOXML: fix import of transparent hatching".

Change-Id: I9b82a3422de8e4f85c534f861c45c0c097ceb02f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128504
Tested-by: Jenkins
Reviewed-by: László Németh 

diff --git a/oox/source/drawingml/fillproperties.cxx 
b/oox/source/drawingml/fillproperties.cxx
index 5d17c321d0f8..2b682bcd1b99 100644
--- a/oox/source/drawingml/fillproperties.cxx
+++ b/oox/source/drawingml/fillproperties.cxx
@@ -812,6 +812,8 @@ void FillProperties::pushToPropMap( ShapePropertyMap& 
rPropMap,
 {
 eFillStyle = FillStyle_HATCH;
 rPropMap.setProperty( ShapeProperty::FillHatch, 
createHatch( maPatternProps.moPattPreset.get(), aColor.getColor( 
rGraphicHelper, nPhClr ) ) );
+if( aColor.hasTransparency() )
+rPropMap.setProperty( ShapeProperty::FillTransparency, 
aColor.getTransparency() );
 
 // Set background color for hatch
 if(maPatternProps.maPattBgColor.isUsed())
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index 09ca9c22915a..87bbe81bd88a 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -1658,12 +1658,19 @@ void DrawingML::WritePattFill(const 
Reference& rXPropSet, const cs
 {
 mpFS->startElementNS(XML_a, XML_pattFill, XML_prst, 
GetHatchPattern(rHatch));
 
+sal_Int32 nAlpha = MAX_PERCENT;
+if (GetProperty(rXPropSet, "FillTransparence"))
+{
+sal_Int32 nTransparency = 0;
+mAny >>= nTransparency;
+nAlpha = (MAX_PERCENT - (PER_PERCENT * nTransparency));
+}
+
 mpFS->startElementNS(XML_a, XML_fgClr);
-WriteColor(::Color(ColorTransparency, rHatch.Color));
+WriteColor(::Color(ColorTransparency, rHatch.Color), nAlpha);
 mpFS->endElementNS( XML_a , XML_fgClr );
 
 ::Color nColor = COL_WHITE;
-sal_Int32 nAlpha  = 0;
 
 if ( GetProperty( rXPropSet, "FillBackground" ) )
 {
@@ -1671,13 +1678,13 @@ void DrawingML::WritePattFill(const 
Reference& rXPropSet, const cs
 mAny >>= isBackgroundFilled;
 if( isBackgroundFilled )
 {
-nAlpha = MAX_PERCENT;
-
 if( GetProperty( rXPropSet, "FillColor" ) )
 {
 mAny >>= nColor;
 }
 }
+else
+nAlpha = 0;
 }
 
 mpFS->startElementNS(XML_a, XML_bgClr);
diff --git a/sw/qa/extras/uiwriter/uiwriter4.cxx 
b/sw/qa/extras/uiwriter/uiwriter4.cxx
index c1635b64ffad..29d31a0940b2 100644
--- a/sw/qa/extras/uiwriter/uiwriter4.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter4.cxx
@@ -3681,7 +3681,7 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest4, 
testTdf143760WrapContourToOff)
 CPPUNIT_ASSERT_EQUAL(false, getProperty(getShape(1), 
"SurroundContour"));
 }
 
-CPPUNIT_TEST_FIXTURE(SwUiWriterTest4, testTdf127989)
+CPPUNIT_TEST_FIXTURE(SwUiWriterTest4, testHatchFill)
 {
 createSwDoc();
 
@@ -3695,16 +3695,20 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest4, testTdf127989)
 xShapeProps->setPropertyValue("FillStyle", 
uno::makeAny(drawing::FillStyle_HATCH));
 xShapeProps->setPropertyValue("FillHatchName", 
uno::makeAny(OUString("Black 0 Degrees")));
 xShapeProps->setPropertyValue("FillBackground", uno::makeAny(false));
+xShapeProps->setPropertyValue("FillTransparence", 
uno::makeAny(sal_Int32(30)));
 uno::Reference xDrawPageSupplier(mxComponent, 
uno::UNO_QUERY);
 uno::Reference xDrawPage = 
xDrawPageSupplier->getDrawPage();
 xDrawPage->add(xShape);
 
 // Save it as DOCX and load it again.
-reload("Office Open XML Text", "tdf127989.docx");
+reload("Office Open XML Text", "hatchFill.docx");
 CPPUNIT_ASSERT_EQUAL(1, getShapes());
 
-// Without fix this had failed, because the background of the hatch was 
not set as 'no background'.
+// tdf#127989 Without fix this had failed, because the background of the 
hatch was not set as 'no background'.
 CPPUNIT_ASSERT(!getProperty(getShape(1), "FillBackground"));
+
+// tdf#146822 Without fix this had failed, because the transparency value 
of the hatch was not exported.
+CPPUNIT_ASSERT_EQUAL(sal_Int32(30), getProperty(getShape(1), 

[Libreoffice-bugs] [Bug 147152] Recent document pointers to a network (sftp) storage currently not available hang LibreOffice on startup

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147152

--- Comment #2 from Mike Kaganski  ---
It should not be a duplicate. 7.2.5 already includes a fix for the specific
problem in bug 131850; and there may be other problems in other scenarios, like
this one - maybe we have some special processing for the sftp URLs. Needs
reproducing, debugging and separate fixing; so this needs an own issue - like
here.

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

[Libreoffice-bugs] [Bug 147152] Recent document pointers to a network (sftp) storage currently not available hang LibreOffice on startup

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147152

Timo Jyrinki  changed:

   What|Removed |Added

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

--- Comment #1 from Timo Jyrinki  ---
Doh, now I found immediately 131850 after filing this.

I'm using 7.2.5, will re-test with 7.2.6 later.

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

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

[Libreoffice-bugs] [Bug 147152] New: Recent document pointers to a network (sftp) storage currently not available hang LibreOffice on startup

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147152

Bug ID: 147152
   Summary: Recent document pointers to a network (sftp) storage
currently not available hang LibreOffice on startup
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: timo.jyrinki+libreoff...@iki.fi

# Test case:

1. Mount eg gvfs sftp file share and open a document from there.
2. Close LO, unmount the share
3. Start LO

# Observed behavior:

LibreOffice hangs indefinitely.

# Excepted behavior:

Do not try to access all files in recent documents on startup, and even later
if accessing on user's request do a timeout with error message.

# Workaround 1:

Before every LO startup, one can run:

> sed -i '/sftp/d' ~/.config/libreoffice/4/user/registrymodifications.xcu

Which for example in this case removes lines like:

>  oor:path="/org.openoffice.Office.Histories/Histories/org.openoffice.Office.Histories:HistoryInfo['PickList']/OrderList">  oor:name="8" oor:op="replace"> oor:op="fuse">sftp://olo/home/timo/Asiakirjat/kauppalaskut.ods

# Workaround 2:

Follow
https://www.libreofficehelp.com/how-to-delete-recent-documents-list-in-libreoffice/
and set the value to 0 to disable recent documents.

# History:

This is only a gut feeling / vague memories but this may heve gotten worse
somewhere in LO 7.x - it used to be it timed out, now it seems like a complete
hang.

---

I'm happy to help debugging if anyone tells me what/how to debug/run (I can
follow technical debugging instructions) - the wiki instructions seem just a
bit broad and I wouldn't know what exactly to provide.

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

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

2022-02-02 Thread Julien Nabet (via logerrit)
 vcl/source/gdi/print3.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 61f8ac1db7b4e3dbdc8e2d1e32a867e5cb699afb
Author: Julien Nabet 
AuthorDate: Wed Feb 2 21:46:51 2022 +0100
Commit: Julien Nabet 
CommitDate: Thu Feb 3 08:16:34 2022 +0100

coverity: swapped-arguments->swapped_arguments in vcl/print3

Change-Id: I657cc2b99e84c0846891da0402b84a4ae668553f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129389
Tested-by: Julien Nabet 
Reviewed-by: Julien Nabet 

diff --git a/vcl/source/gdi/print3.cxx b/vcl/source/gdi/print3.cxx
index aecc43e15e33..f07c123f8f0f 100644
--- a/vcl/source/gdi/print3.cxx
+++ b/vcl/source/gdi/print3.cxx
@@ -232,7 +232,7 @@ public:
 if ( (meUserOrientation == Orientation::Portrait && size.Width() > 
size.Height()) ||
  (meUserOrientation == Orientation::Landscape && size.Width() 
< size.Height()) )
 {
-// coverity[swapped-arguments : FALSE] - this is in the 
correct order
+// coverity[swapped_arguments : FALSE] - this is in the 
correct order
 size = Size( size.Height(), size.Width() );
 }
 }


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

2022-02-02 Thread Mike Kaganski (via logerrit)
 basic/source/classes/sb.cxx |5 -
 include/basic/sbstar.hxx|3 +--
 2 files changed, 1 insertion(+), 7 deletions(-)

New commits:
commit 30483a6e0642c287d95e8d617e1a3da26e29f9f2
Author: Mike Kaganski 
AuthorDate: Thu Feb 3 07:16:27 2022 +0100
Commit: Mike Kaganski 
CommitDate: Thu Feb 3 08:16:03 2022 +0100

Use default argument

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

diff --git a/basic/source/classes/sb.cxx b/basic/source/classes/sb.cxx
index c38a6c04989b..5c99408847b6 100644
--- a/basic/source/classes/sb.cxx
+++ b/basic/source/classes/sb.cxx
@@ -1682,11 +1682,6 @@ bool StarBASIC::RTError( ErrCode code, const OUString& 
rMsg, sal_Int32 l, sal_In
 }
 }
 
-void StarBASIC::Error( ErrCode n )
-{
-Error( n, OUString() );
-}
-
 void StarBASIC::Error( ErrCode n, const OUString& rMsg )
 {
 if( GetSbData()->pInst )
diff --git a/include/basic/sbstar.hxx b/include/basic/sbstar.hxx
index 08040a4d5510..1629ab16c774 100644
--- a/include/basic/sbstar.hxx
+++ b/include/basic/sbstar.hxx
@@ -87,8 +87,7 @@ public:
 SbModule*   MakeModule( const OUString& rName, const OUString& rSrc );
 SbModule*   MakeModule( const OUString& rName, const 
css::script::ModuleInfo& mInfo, const OUString& rSrc );
 static void Stop();
-static void Error( ErrCode );
-static void Error( ErrCode, const OUString& rMsg );
+static void Error( ErrCode, const OUString& rMsg = {} );
 static void FatalError( ErrCode );
 static void FatalError( ErrCode, const OUString& rMsg );
 static bool IsRunning();


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

2022-02-02 Thread Noel Grandin (via logerrit)
 include/svx/svxids.hrc  |4 ++--
 svx/source/sidebar/graphic/GraphicPropertyPanel.cxx |9 -
 2 files changed, 6 insertions(+), 7 deletions(-)

New commits:
commit 895a1e89e2b3e37eb1a2fd0dd494ddd385bd0456
Author: Noel Grandin 
AuthorDate: Wed Feb 2 13:24:47 2022 +0200
Commit: Noel Grandin 
CommitDate: Thu Feb 3 08:15:31 2022 +0100

SID_ATTR_GRAF_TRANSPARENCE and SID_ATTR_GRAF_MODE have conflicting types

Meant to be SfxUInt16Item, until the below commit accidentally
introduced SfxInt16Item usage.

commit 4d814ec1518c98d2ca251a5a10287f40a427ea6e
Author: Armin Le Grand 
Date:   Wed Apr 24 09:50:54 2013 +
Related: #i122111# Adapted pState usages in NotifyItemUpdate methods

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

diff --git a/include/svx/svxids.hrc b/include/svx/svxids.hrc
index fb974d2af8b4..07d10bb1ee97 100644
--- a/include/svx/svxids.hrc
+++ b/include/svx/svxids.hrc
@@ -712,9 +712,9 @@ class XFillGradientItem;
 #define SID_ATTR_GRAF_GREEN ( SID_SVX_START + 866 )
 #define SID_ATTR_GRAF_BLUE  ( SID_SVX_START + 867 )
 #define SID_ATTR_GRAF_GAMMA ( SID_SVX_START + 868 )
-#define SID_ATTR_GRAF_TRANSPARENCE  ( SID_SVX_START + 869 )
+#define SID_ATTR_GRAF_TRANSPARENCE  
TypedWhichId( SID_SVX_START + 869 )
 #define SID_ATTR_GRAF_INVERT( SID_SVX_START + 870 )
-#define SID_ATTR_GRAF_MODE  ( SID_SVX_START + 871 )
+#define SID_ATTR_GRAF_MODE  
TypedWhichId( SID_SVX_START + 871 )
 
 // CAUTION! Range <877 .. 877> used by EditEngine (!)
 
diff --git a/svx/source/sidebar/graphic/GraphicPropertyPanel.cxx 
b/svx/source/sidebar/graphic/GraphicPropertyPanel.cxx
index 5fb1e4448c71..5503649551e6 100644
--- a/svx/source/sidebar/graphic/GraphicPropertyPanel.cxx
+++ b/svx/source/sidebar/graphic/GraphicPropertyPanel.cxx
@@ -108,7 +108,7 @@ IMPL_LINK_NOARG( GraphicPropertyPanel, ModifyContrastHdl, 
weld::MetricSpinButton
 IMPL_LINK_NOARG( GraphicPropertyPanel, ModifyTransHdl, 
weld::MetricSpinButton&, void )
 {
 const sal_Int16 nTrans = mxMtrTrans->get_value(FieldUnit::PERCENT);
-const SfxInt16Item aTransItem( SID_ATTR_GRAF_TRANSPARENCE, nTrans );
+const SfxUInt16Item aTransItem( SID_ATTR_GRAF_TRANSPARENCE, nTrans );
 GetBindings()->GetDispatcher()->ExecuteList(SID_ATTR_GRAF_TRANSPARENCE,
 SfxCallMode::RECORD, {  });
 }
@@ -117,7 +117,7 @@ IMPL_LINK_NOARG( GraphicPropertyPanel, ModifyTransHdl, 
weld::MetricSpinButton&,
 IMPL_LINK_NOARG( GraphicPropertyPanel, ClickColorModeHdl, weld::ComboBox&, 
void )
 {
 const sal_Int16 nTrans = mxLBColorMode->get_active();
-const SfxInt16Item aTransItem( SID_ATTR_GRAF_MODE, nTrans );
+const SfxUInt16Item aTransItem( SID_ATTR_GRAF_MODE, nTrans );
 GetBindings()->GetDispatcher()->ExecuteList(SID_ATTR_GRAF_MODE,
 SfxCallMode::RECORD, {  });
 }
@@ -218,11 +218,10 @@ void GraphicPropertyPanel::NotifyItemUpdate(
 if(eState >= SfxItemState::DEFAULT)
 {
 mxLBColorMode->set_sensitive(true);
-const SfxUInt16Item* pItem = dynamic_cast< const 
SfxUInt16Item* >(pState);
 
-if(pItem)
+if(pState)
 {
-const sal_Int64 nTrans = pItem->GetValue();
+const sal_uInt16 nTrans = static_cast< const 
SfxUInt16Item* >(pState)->GetValue();
 mxLBColorMode->set_active(nTrans);
 }
 }


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

2022-02-02 Thread Justin Luth (via logerrit)
 sw/source/core/docnode/ndtbl1.cxx |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 1f13e12700af83734eb830e4aed04f701a2caabc
Author: Justin Luth 
AuthorDate: Mon Dec 20 15:42:46 2021 +0200
Commit: Samuel Mehrbrodt 
CommitDate: Thu Feb 3 08:04:13 2022 +0100

related tdf#90805 sw table: ensure border when setting border style

When using uno:LineStyle to set a table's border style,
add all borders if there are none at all.

The thickness of this line is set in svx/source/tbxctrls/tbcontrl.cxx
to ::Thin (which is different from ::VeryThin set by color and borders).

Change-Id: I8af1e6a2447a3bb99f00b9c19708bd2a1208109d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127166
Tested-by: Jenkins
Reviewed-by: Justin Luth 
Reviewed-by: Samuel Mehrbrodt 

diff --git a/sw/source/core/docnode/ndtbl1.cxx 
b/sw/source/core/docnode/ndtbl1.cxx
index 1cb5fc651b6c..e6a68e76a521 100644
--- a/sw/source/core/docnode/ndtbl1.cxx
+++ b/sw/source/core/docnode/ndtbl1.cxx
@@ -930,7 +930,10 @@ void SwDoc::SetTabLineStyle( const SwCursor& rCursor,
 
GetIDocumentUndoRedo().AppendUndo(std::make_unique(*pTableNd));
 }
 
-const SvxBorderLine aDefaultBorder(pColor, SvxBorderLineWidth::VeryThin);
+SvxBorderLine aDefaultBorder(pBorderLine ? *pBorderLine
+ : SvxBorderLine(pColor, 
SvxBorderLineWidth::VeryThin));
+if (pColor && pBorderLine)
+aDefaultBorder.SetColor(*pColor);
 
 for( auto  : aUnions )
 {
@@ -959,7 +962,7 @@ void SwDoc::SetTabLineStyle( const SwCursor& rCursor,
 {
 aBox.reset(::GetDfltAttr(RES_BOX)->Clone());
 }
-else if (pColor && !pBorderLine && !pTop && !pBot && !pLeft && 
!pRight)
+else if ((pColor || pBorderLine) && !pTop && !pBot && !pLeft && 
!pRight)
 {
 aBox->SetLine(, SvxBoxItemLine::TOP);
 aBox->SetLine(, SvxBoxItemLine::BOTTOM);


[Libreoffice-bugs] [Bug 147151] Port LibreOffice to GTK4 with libadwaita

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147151

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #2 from Buovjaga  ---
Christian is already here, btw. See bug 115512. I'm not sure if this separate
report is needed, if libadwaita is now implied by bug 115512.

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

[Libreoffice-bugs] [Bug 121945] Include useful citation Styles /references (comment #12) in Writer by default and make them available with a drop-down button.

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121945

--- Comment #19 from Dieter  ---
I read all comments, but the only person, who was strictly agains an Zotero
integration was Mike Kagansi, because he couldn’t manage to setup Zotero at
that moment of his University diploma. So he can't compare internal
bibliography with Zotero.

I don't think, that this comments are a reason for giving up the ida of
integrating Zotero (or another tool).

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

[Libreoffice-bugs] [Bug 135570] Text flow (breaking across pages) a regular (because of anchor to character placement)

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135570

--- Comment #10 from Dieter  ---
Very strange. Now I could reproduce with

Version: 7.3.0.3 (x64) / LibreOffice Community
Build ID: 0f246aa12d0eee4a0f7adcefbf7c878fc2238db3
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

Since first image ist anchored to a character in the last line, for me it's the
expected result, that at least image moves to next page. So perhaps the bug is
not text flow, but that anchor is still in last line after step 4 of creating
the file. But actually I can't reproduce this behaviour. If I move image with
arrow key, anchor doesn't move.

Telesto, what do you think?

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

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

2022-02-02 Thread Justin Luth (via logerrit)
 sw/qa/extras/ooxmlexport/data/tdf147115_defaultStyle.docx |binary
 sw/qa/extras/ooxmlexport/ooxmlexport11.cxx|5 +
 writerfilter/source/dmapper/StyleSheetTable.cxx   |6 +-
 3 files changed, 10 insertions(+), 1 deletion(-)

New commits:
commit 71303d77febfd51a493ce797933143cc318818cf
Author: Justin Luth 
AuthorDate: Wed Feb 2 13:56:22 2022 +0200
Commit: Justin Luth 
CommitDate: Thu Feb 3 07:20:26 2022 +0100

tdf#147115 writerfilter: style is only default if default=true

This was a dumb mistake in LO 2018 (so perhaps LO 6.2).
Regression from commit 6b7f12f6108f136d60bd77e3787ef6a2632038cd

Change-Id: I2adc642ffe9c2af1037fcc0a5d2b83c993511258
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129386
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlexport/data/tdf147115_defaultStyle.docx 
b/sw/qa/extras/ooxmlexport/data/tdf147115_defaultStyle.docx
new file mode 100644
index ..e75099c6aa9e
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/tdf147115_defaultStyle.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
index 6c465f4ead00..6e5de25b3169 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
@@ -359,6 +359,11 @@ DECLARE_OOXMLEXPORT_TEST(testDefaultStyle, 
"defaultStyle.docx")
 CPPUNIT_ASSERT_EQUAL(2, getPages());
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf147115_defaultStyle, 
"tdf147115_defaultStyle.docx")
+{
+CPPUNIT_ASSERT_EQUAL_MESSAGE( "Default Style", OUString("Standard"), 
getProperty(getParagraph(1), "ParaStyleName") );
+}
+
 DECLARE_OOXMLEXPORT_TEST(testTdf117988, "tdf117988.docx")
 {
 CPPUNIT_ASSERT_EQUAL(1, getPages());
diff --git a/writerfilter/source/dmapper/StyleSheetTable.cxx 
b/writerfilter/source/dmapper/StyleSheetTable.cxx
index 5f45672fe915..fe5d718827f0 100644
--- a/writerfilter/source/dmapper/StyleSheetTable.cxx
+++ b/writerfilter/source/dmapper/StyleSheetTable.cxx
@@ -464,8 +464,12 @@ void StyleSheetTable::lcl_attribute(Id Name, Value & val)
 if (m_pImpl->m_pCurrentEntry->nStyleTypeCode != STYLE_TYPE_UNKNOWN)
 {
 // "If this attribute is specified by multiple styles, then 
the last instance shall be used."
-if ( m_pImpl->m_pCurrentEntry->nStyleTypeCode == 
STYLE_TYPE_PARA && !m_pImpl->m_pCurrentEntry->sStyleIdentifierD.isEmpty() )
+if (m_pImpl->m_pCurrentEntry->bIsDefaultStyle
+&& m_pImpl->m_pCurrentEntry->nStyleTypeCode == 
STYLE_TYPE_PARA
+&& !m_pImpl->m_pCurrentEntry->sStyleIdentifierD.isEmpty())
+{
 m_pImpl->m_sDefaultParaStyleName = 
m_pImpl->m_pCurrentEntry->sStyleIdentifierD;
+}
 
 beans::PropertyValue aValue;
 aValue.Name = "default";


[Libreoffice-bugs] [Bug 146774] Applying a style kills the ability to write text in Writer under Fedora 35

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146774

--- Comment #5 from Dieter  ---
So perhaps a Linux issue. I can't test it. So I hope somebody else can help.

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

[Libreoffice-bugs] [Bug 140007] UNDO Find and Replace leads to errors

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140007

Mike Kaganski  changed:

   What|Removed |Added

 CC||Tex2002ans+LibreOffice@gmai
   ||l.com

--- Comment #7 from Mike Kaganski  ---
*** Bug 146796 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 146796] Regular Expression Undo/Redo Corruption and Lost Text

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146796

--- Comment #4 from Mike Kaganski  ---


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

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

[Libreoffice-bugs] [Bug 147135] Crash in: _GLOBAL__sub_I_protectiondlg.cxx.lto_priv.2643

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147135

--- Comment #6 from Yugov Ivan  ---
(In reply to Julien Nabet from comment #5)
> How did you install LO 7.3.0.3 on Linux Mint?
> Just for information, LO rpm and deb packages from TDF are more for distrib
> maintainers since they deal with dependencies.

In my case, it's Ubuntu 21.10 amd64, I just downloaded deb packages and
installed them: "sudo dpkg -i *.deb". I do it every LO release to install new
versions over distribution-provided ones. Haven't experience problems with
dependencies for a long time. Sure that in Mint it's much the same.

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

[Libreoffice-bugs] [Bug 147151] Port LibreOffice to GTK4 with libadwaita

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147151

7p1pj...@anonaddy.me <7p1pj...@anonaddy.me> changed:

   What|Removed |Added

Summary|Port LibreOffice to GTK |Port LibreOffice to GTK4
   |with libadwaita |with libadwaita

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

[Libreoffice-bugs] [Bug 147151] Port LibreOffice to GTK with libadwaita

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147151

--- Comment #1 from 7p1pj...@anonaddy.me <7p1pj...@anonaddy.me> ---
Created attachment 178004
  --> https://bugs.documentfoundation.org/attachment.cgi?id=178004=edit
Unofficial port being made by ChristianOhrfan

@ChristianOhrfan is doing an unofficial port which seems very promising!


https://web.archive.org/web/20220203050929/https://mobile.twitter.com/ChristianOhrfan/status/1472015987314761734

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

[Libreoffice-bugs] [Bug 147151] New: Port LibreOffice to GTK with libadwaita

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147151

Bug ID: 147151
   Summary: Port LibreOffice to GTK with libadwaita
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 7p1pj...@anonaddy.me

Libadwaita can bring:

- Consistent design;

- Accessibility improvements;

- Solve issues caused by using dark themes such as:

https://bugs.documentfoundation.org/show_bug.cgi?id=147047
https://bugs.documentfoundation.org/show_bug.cgi?id=147048
https://bugs.documentfoundation.org/show_bug.cgi?id=147049
https://bugs.documentfoundation.org/show_bug.cgi?id=147051

- Official support for dark mode using the freedesktop.org API;

- A modern and pleasant look.

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

[Libreoffice-bugs] [Bug 146855] UI: The ability to set spellchecking language on a per-cell basis is difficult to discover

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146855

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 147117] Toolbar background image of themes does not stretch properly with ultra wide screen

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147117

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 147117] Toolbar background image of themes does not stretch properly with ultra wide screen

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147117

--- 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 146774] Applying a style kills the ability to write text in Writer under Fedora 35

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146774

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

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

[Libreoffice-bugs] [Bug 146774] Applying a style kills the ability to write text in Writer under Fedora 35

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146774

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 135570] Text flow (breaking across pages) a regular (because of anchor to character placement)

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135570

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 135570] Text flow (breaking across pages) a regular (because of anchor to character placement)

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135570

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

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

[Libreoffice-bugs] [Bug 142213] FILESAVE PPTX Animation trigger roundtripped incorrectly

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142213

--- Comment #5 from QA Administrators  ---
Dear NISZ LibreOffice Team,

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 41702] FILEOPEN: Lotus Word Pro (.lwp) documents < version 11 not supported in LibO

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41702

--- Comment #16 from QA Administrators  ---
Dear Uwe Gode,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 119424] Some shapes drift away after consecutive reopening in Draw (X position changes)

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119424

--- Comment #8 from QA Administrators  ---
Dear Epo Nym,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 105531] Color scale conditional formatting doesn't copy as expected

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105531

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit 98089907d9601f43d113dcf31734feb9df9e2de7
Author: Olivier Hallot 
AuthorDate: Thu Feb 3 00:21:01 2022 -0300
Commit: Gerrit Code Review 
CommitDate: Thu Feb 3 04:21:01 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 04988a9ba792fae28ce53c80cf73606b86c3ecec
  - tdf#147139 Wrong string for Gallery menu entry

+ some image refactor.

Change-Id: I0d45f9c4ea37ace923f8ba08ecb141940ab0d92e
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129382
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index 56c146e68448..04988a9ba792 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 56c146e68448db5622dc54823874ebb8605b55a9
+Subproject commit 04988a9ba792fae28ce53c80cf73606b86c3ecec


[Libreoffice-commits] help.git: source/text

2022-02-02 Thread Olivier Hallot (via logerrit)
 source/text/shared/00/0406.xhp |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 04988a9ba792fae28ce53c80cf73606b86c3ecec
Author: Olivier Hallot 
AuthorDate: Wed Feb 2 15:12:14 2022 -0300
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Feb 3 04:21:00 2022 +0100

tdf#147139 Wrong string for Gallery menu entry

+ some image refactor.

Change-Id: I0d45f9c4ea37ace923f8ba08ecb141940ab0d92e
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129382
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/source/text/shared/00/0406.xhp 
b/source/text/shared/00/0406.xhp
index 0cbd354ee..a6903a822 100644
--- a/source/text/shared/00/0406.xhp
+++ b/source/text/shared/00/0406.xhp
@@ -27,13 +27,13 @@
 
 Tools Menu
 
-Choose 
Insert - Media - Clip Art Gallery or 
open Standard bar, click
+Choose 
Insert - Media - Gallery or open 
Standard bar, click
 
 
 
 
 
-Icon
+Icon
 
 
 Gallery
@@ -52,7 +52,7 @@
 
 
 
-Icon
+Icon
 
 
 Spelling
@@ -91,8 +91,8 @@
 Tools - Macros - XML Filter Settings, 
then click Test XSLTs.
 Choose Tools - Customize.
 Choose Tools - Customize - Menus 
tab.
-Choose Tools - Customize - Menus tab, click 
the gear  Icon gear 
menu dropdown menu and choose 
Add.
-Choose Tools - Customize - Menus tab, click 
the gear   Icon gear 
menu  dropdown menu and choose 
Move.
+Choose Tools - Customize - Menus tab, click 
the gear  Icon gear 
menu dropdown menu and choose 
Add.
+Choose Tools - Customize - Menus tab, click 
the gear   Icon gear 
menu  dropdown menu and choose 
Move.
 Choose Tools - Customize - Keyboard tab. A 
document must be opened.
 Choose Tools - Customize - Toolbars 
tab.
 Choose Tools - Customize - Events 
tab.
@@ -118,7 +118,7 @@
 Choose %PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - 
Print.
 
 Choose 
%PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - 
Paths.
-Choose 
Tools - AutoText - Path. (autotext only) 
+Choose 
Tools - AutoText - Path. (autotext only)
 
 Choose Tools - 
ImageMap.
 Choose Tools - ImageMap, then select a 
section of the ImageMap and click Properties - 
Description.
@@ -132,7 +132,7 @@
 
 
 
-Icon
+Icon
 
 
 


[Libreoffice-commits] core.git: helpcontent2

2022-02-02 Thread Stanislav Horacek (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 023aefdd7551440080f3f6e2e447b4549e0a3481
Author: Stanislav Horacek 
AuthorDate: Thu Feb 3 04:20:03 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Feb 3 04:20:03 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 56c146e68448db5622dc54823874ebb8605b55a9
  - make comments in example for TextStream localizable

Change-Id: I4f18e6f5c2d3f8ec6ead759217178095d0c108a2
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129383
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index 84169c6b03ae..56c146e68448 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 84169c6b03ae925d6b483c0c0141f28889c0bf56
+Subproject commit 56c146e68448db5622dc54823874ebb8605b55a9


[Libreoffice-commits] help.git: source/text

2022-02-02 Thread Stanislav Horacek (via logerrit)
 source/text/sbasic/shared/03/sf_textstream.xhp |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 56c146e68448db5622dc54823874ebb8605b55a9
Author: Stanislav Horacek 
AuthorDate: Wed Feb 2 19:47:22 2022 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Feb 3 04:19:59 2022 +0100

make comments in example for TextStream localizable

Change-Id: I4f18e6f5c2d3f8ec6ead759217178095d0c108a2
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129383
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/source/text/sbasic/shared/03/sf_textstream.xhp 
b/source/text/sbasic/shared/03/sf_textstream.xhp
index 2b7153b99..96b393539 100644
--- a/source/text/sbasic/shared/03/sf_textstream.xhp
+++ b/source/text/sbasic/shared/03/sf_textstream.xhp
@@ -240,10 +240,10 @@
 'Opens the text file 
with the names to be read
 Dim 
inputFile as Object
 Set 
inputFile = FSO.OpenTextFile("/home/user/Documents/Students.txt")
-'Reads all the contents in the input file as a 
single string
+'Reads all the 
contents in the input file as a single string
 Dim 
allData as String
 allData = inputFile.ReadAll()
-'Splits the string into an array
+'Splits the string 
into an array
 Dim 
arrNames as Variant
 arrNames = SF_String.SplitLines(allData)
 ' 
(...)


[Libreoffice-commits] core.git: helpcontent2

2022-02-02 Thread Stanislav Horacek (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8488f6edeed5e8a8225f5f8541887021b31a5a77
Author: Stanislav Horacek 
AuthorDate: Thu Feb 3 04:19:17 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Feb 3 04:19:17 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 84169c6b03ae925d6b483c0c0141f28889c0bf56
  - make two sentences in Timer service localizable

Change-Id: I39e7cd9bb39cc2905aa9fc36f3434dc70b8e5fe4
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129390
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index eaae254a25e2..84169c6b03ae 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit eaae254a25e283cff0c0303d1831e48cd6dc1642
+Subproject commit 84169c6b03ae925d6b483c0c0141f28889c0bf56


[Libreoffice-commits] help.git: source/text

2022-02-02 Thread Stanislav Horacek (via logerrit)
 source/text/sbasic/shared/03/sf_timer.xhp |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 84169c6b03ae925d6b483c0c0141f28889c0bf56
Author: Stanislav Horacek 
AuthorDate: Wed Feb 2 22:58:59 2022 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Feb 3 04:19:15 2022 +0100

make two sentences in Timer service localizable

Change-Id: I39e7cd9bb39cc2905aa9fc36f3434dc70b8e5fe4
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129390
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/source/text/sbasic/shared/03/sf_timer.xhp 
b/source/text/sbasic/shared/03/sf_timer.xhp
index b66304f89..dc4ae0cd3 100644
--- a/source/text/sbasic/shared/03/sf_timer.xhp
+++ b/source/text/sbasic/shared/03/sf_timer.xhp
@@ -51,7 +51,7 @@
 GlobalScope.BasicLibraries.LoadLibrary("ScriptForge")
 Dim 
myTimer As Variant
 myTimer = CreateScriptService("Timer", 
True)
-'The 
timer starts immediately when the second argument = True, default = 
False
+'The timer starts 
immediately when the second argument = True, default = False
   
   It 
is recommended to free resources after use:
   
@@ -152,7 +152,7 @@
 
 
 
-Note that the TotalDuration property is 
equivalent to summing the Duration and 
SuspendDuration properties.
+Note that 
the TotalDuration property is equivalent to summing the 
Duration and SuspendDuration 
properties.
 
   Methods
 All methods do not require arguments and return a 
Boolean value.


[Libreoffice-commits] core.git: icon-themes/colibre

2022-02-02 Thread Rizal Muttaqin (via logerrit)
 icon-themes/colibre/links.txt |2 --
 1 file changed, 2 deletions(-)

New commits:
commit 34733d6eaeb1316354bcb8689ffe2b57b4efbf16
Author: Rizal Muttaqin 
AuthorDate: Thu Feb 3 06:49:35 2022 +0700
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Feb 3 04:18:19 2022 +0100

Colibre: Fix for tdf#147150 (same net type chart)

Change-Id: I4831f6f1ec2fc28a746212a825cd3017a01d1e27
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129391
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/icon-themes/colibre/links.txt b/icon-themes/colibre/links.txt
index 9b831da68760..edfbed8e78e0 100644
--- a/icon-themes/colibre/links.txt
+++ b/icon-themes/colibre/links.txt
@@ -21,8 +21,6 @@ chart2/res/dataeditor_icon01.png cmd/sc_insertrowsafter.png
 chart2/res/dataeditor_icon02.png cmd/sc_insertcolumnsafter.png
 chart2/res/dataeditor_icon03.png cmd/sc_deleterows.png
 chart2/res/dataeditor_icon04.png cmd/sc_deletecolumns.png
-chart2/res/netlinepoint_52x60.png chart2/res/net_52x60.png
-chart2/res/netlinepointstack_52x60.png chart2/res/netstack_52x60.png
 chart2/res/selectrange.png formula/res/refinp1.png
 
 cmd/32/charttitlemenu.png cmd/32/toggletitle.png


[Libreoffice-commits] core.git: icon-themes/colibre icon-themes/colibre_svg

2022-02-02 Thread Rizal Muttaqin (via logerrit)
 dev/null   |binary
 icon-themes/colibre/chart2/res/areas3d_52x60.png   |binary
 icon-themes/colibre/chart2/res/areas_52x60.png |binary
 icon-themes/colibre/chart2/res/areasfull3d_52x60.png   |binary
 icon-themes/colibre/chart2/res/areasfull_52x60.png |binary
 icon-themes/colibre/chart2/res/areaspiled3d_52x60.png  |binary
 icon-themes/colibre/chart2/res/areaspiled_52x60.png|binary
 icon-themes/colibre/chart2/res/bar3d_52x60.png |binary
 icon-themes/colibre/chart2/res/bar3ddeep_52x60.png |binary
 icon-themes/colibre/chart2/res/bar_52x60.png   |binary
 icon-themes/colibre/chart2/res/barpercent3d_52x60.png  |binary
 icon-themes/colibre/chart2/res/barpercent_52x60.png|binary
 icon-themes/colibre/chart2/res/barstack3d_52x60.png|binary
 icon-themes/colibre/chart2/res/barstack_52x60.png  |binary
 icon-themes/colibre/chart2/res/bubble_52x60.png|binary
 icon-themes/colibre/chart2/res/columnline_52x60.png|binary
 icon-themes/colibre/chart2/res/columnpercent3d_52x60.png   |binary
 icon-themes/colibre/chart2/res/columnpercent_52x60.png |binary
 icon-themes/colibre/chart2/res/columns3d_52x60.png |binary
 icon-themes/colibre/chart2/res/columns3ddeep_52x60.png |binary
 icon-themes/colibre/chart2/res/columns_52x60.png   |binary
 icon-themes/colibre/chart2/res/columnstack3d_52x60.png |binary
 icon-themes/colibre/chart2/res/columnstack_52x60.png   |binary
 icon-themes/colibre/chart2/res/columnstackline_52x60.png   |binary
 icon-themes/colibre/chart2/res/cone_52x60.png  |binary
 icon-themes/colibre/chart2/res/conedeep_52x60.png  |binary
 icon-themes/colibre/chart2/res/conehori_52x60.png  |binary
 icon-themes/colibre/chart2/res/conehorideep_52x60.png  |binary
 icon-themes/colibre/chart2/res/conehoripercent_52x60.png   |binary
 icon-themes/colibre/chart2/res/conehoristack_52x60.png |binary
 icon-themes/colibre/chart2/res/conepercent_52x60.png   |binary
 icon-themes/colibre/chart2/res/conestack_52x60.png |binary
 icon-themes/colibre/chart2/res/cylinder_52x60.png  |binary
 icon-themes/colibre/chart2/res/cylinderdeep_52x60.png  |binary
 icon-themes/colibre/chart2/res/cylinderhori_52x60.png  |binary
 icon-themes/colibre/chart2/res/cylinderhorideep_52x60.png  |binary
 icon-themes/colibre/chart2/res/cylinderhoriprocent_52x60.png   |binary
 icon-themes/colibre/chart2/res/cylinderhoristack_52x60.png |binary
 icon-themes/colibre/chart2/res/cylinderpercent_52x60.png   |binary
 icon-themes/colibre/chart2/res/cylinderstack_52x60.png |binary
 icon-themes/colibre/chart2/res/donut3d_52x60.png   |binary
 icon-themes/colibre/chart2/res/donut3dexploded_52x60.png   |binary
 icon-themes/colibre/chart2/res/donut_52x60.png |binary
 icon-themes/colibre/chart2/res/donutexploded_52x60.png |binary
 icon-themes/colibre/chart2/res/net_52x60.png   |binary
 icon-themes/colibre/chart2/res/netfill_52x60.png   |binary
 icon-themes/colibre/chart2/res/netlinepoint_52x60.png  |binary
 icon-themes/colibre/chart2/res/netlinepointstack_52x60.png |binary
 icon-themes/colibre/chart2/res/netpoint_52x60.png  |binary
 icon-themes/colibre/chart2/res/netpointstack_52x60.png |binary
 icon-themes/colibre/chart2/res/netstack_52x60.png  |binary
 icon-themes/colibre/chart2/res/netstackfill_52x60.png  |binary
 icon-themes/colibre/chart2/res/nostackdirect3d_52x60.png   |binary
 icon-themes/colibre/chart2/res/nostackdirectboth_52x60.png |binary
 icon-themes/colibre/chart2/res/nostackdirectlines_52x60.png|binary
 icon-themes/colibre/chart2/res/nostackdirectpoints_52x60.png   |binary
 icon-themes/colibre/chart2/res/nostacksmooth3d_52x60.png   |binary
 icon-themes/colibre/chart2/res/nostacksmoothboth_52x60.png |binary
 icon-themes/colibre/chart2/res/nostacksmoothlines_52x60.png|binary
 icon-themes/colibre/chart2/res/nostackstepped3d_52x60.png  |binary
 icon-themes/colibre/chart2/res/nostacksteppedboth_52x60.png|binary
 icon-themes/colibre/chart2/res/nostacksteppedlines_52x60.png   |binary
 icon-themes/colibre/chart2/res/pie3d_52x60.png |binary
 icon-themes/colibre/chart2/res/pie3dexploded_52x60.png |binary
 icon-themes/colibre/chart2/res/pie_52x60.png   |binary
 icon-themes/colibre/chart2/res/pieexploded_52x60.png  

[Libreoffice-bugs] [Bug 146536] Improper display of newly added text in front of formula object

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146536

--- Comment #6 from d00m3d@gmail.com ---
I am glad to know that the official LO-7.3 was released on yesterday.  However,
I am quite disappointed that this regression is still not fixed before that.

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

[Libreoffice-bugs] [Bug 146691] cannot create a Copy of an existing Sheet

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146691

schira...@fastmail.com.au changed:

   What|Removed |Added

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

--- Comment #3 from schira...@fastmail.com.au ---
Thanks and apologies to all involved.

Having viewed the screenshot attachment by Krithi and then revisited my
'problem case' on my PC, I have realised that I was *misinterpreting* what I
saw in the Move/Copy dialogue box.

That is, the 'Copy' radio button is 'ON' despite it being shown greyed. Hence
the ability for me to Copy the lone Sheet IS actually there... My Bad.

Short Version: This was/is not a Problem, so please close-off this report in
your preferred manner.

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

[Libreoffice-bugs] [Bug 45763] 237 pages complex .doc file hang when trying to open

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45763

--- Comment #27 from spaceshipgal...@outlook.com ---
this problem still exists in v7.3.0:

Version: 7.3.0.3 (x64) / LibreOffice Community
Build ID: 0f246aa12d0eee4a0f7adcefbf7c878fc2238db3
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Vulkan; VCL: win
Locale: en-GB (en_GB); UI: en-GB
Calc: CL

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

[Libreoffice-bugs] [Bug 76756] EDITING: Enhancement: Hyperlink to "Last slide viewed"

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76756

Regina Henschel  changed:

   What|Removed |Added

URL||https://docs.oasis-open.org
   ||/office/OpenDocument/v1.3/o
   ||s/part3-schema/OpenDocument
   ||-v1.3-os-part3-schema.html#
   ||attribute-presentation_acti
   ||on
 CC||rb.hensc...@t-online.de

--- Comment #2 from Regina Henschel  ---
ODF has the value "last-visited-page" of the presentation:action attribute.
This attribute specifies the action, which is executed when an event is
triggered. So an extension to ODF would not be needed to solve this request but
'only' implementing it.

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

[Libreoffice-bugs] [Bug 147146] Banded Rows in data sheets.

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147146

Brian Monahan  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

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

[Libreoffice-bugs] [Bug 117497] [META] Colibre icons

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||147150


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=147150
[Bug 147150] "Point and Lines" Net Chart Type has identical looks with "Lines
Only" (Colibre)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 147150] "Point and Lines" Net Chart Type has identical looks with "Lines Only" (Colibre)

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147150

Rizal Muttaqin  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |riz...@libreoffice.org
   |desktop.org |
 Blocks||117497


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117497
[Bug 117497] [META] Colibre icons
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 147150] "Point and Lines" Net Chart Type has identical looks with "Lines Only" (Colibre)

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147150

--- Comment #3 from Rizal Muttaqin  ---
Created attachment 178002
  --> https://bugs.documentfoundation.org/attachment.cgi?id=178002=edit
See the appearance between two images in the red rectangular

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

[Libreoffice-bugs] [Bug 147150] "Point and Lines" Net Chart Type has identical looks with "Lines Only" (Colibre)

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147150

--- Comment #2 from Rizal Muttaqin  ---
(Sorry for empty and unfinished previous comment)

Using Colibre icon theme, image for "Point and Lines" Net Chart Type has
identical looks with "Lines Only". This is happens between stack series and non
stack series.

Step to reproduce:

1. Use Colibre icon theme, open Writer
2. Insert a chart (from menubar Insert > Chart..)
3. In the Chart Type of Properties deck in the sidebar, change the chart to net
4. See the second and the third image from left. The are the same. This is
similar with Stack series.

Version: 7.2.5.2 / LibreOffice Community
Build ID: 20(Build:2)
CPU threads: 4; OS: Linux 5.13; UI render: default; VCL: kf5 (cairo+xcb)
Locale: id-ID (id_ID.UTF-8); UI: en-US
Ubuntu package version: 1:7.2.5~rc2-0ubuntu0.20.04.1~lo1
Calc: threaded

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

[Libreoffice-bugs] [Bug 147150] "Point and Lines" Net Chart Type has identical looks with "Lines Only" (Colibre)

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147150

Rizal Muttaqin  changed:

   What|Removed |Added

Summary|"Point and Lines" Net Chart |"Point and Lines" Net Chart
   |Type has identical looks|Type has identical looks
   |with Lines Only (Colibre)   |with "Lines Only" (Colibre)

--- Comment #1 from Rizal Muttaqin  ---
Using Colibre theme, the image for

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

[Libreoffice-bugs] [Bug 147150] "Point and Lines" Net Chart Type has identical looks with Lines Only (Colibre)

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147150

Rizal Muttaqin  changed:

   What|Removed |Added

Summary|"Point and Lines" Net Chart |"Point and Lines" Net Chart
   |Type has identical looks|Type has identical looks
   |with Lines Only |with Lines Only (Colibre)

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

[Libreoffice-bugs] [Bug 147150] New: "Point and Lines" Net Chart Type has identical looks with Lines Only

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147150

Bug ID: 147150
   Summary: "Point and Lines" Net Chart Type has identical looks
with Lines Only
   Product: LibreOffice
   Version: 7.4.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: riz...@libreoffice.org

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

Re: Material preset "Metal" for extruded custom shapes

2022-02-02 Thread Regina Henschel

Hi Miklos,

Miklos Vajna schrieb am 02.02.2022 um 08:50:

Hi Regina,

On Sun, Jan 30, 2022 at 11:20:33PM +0100, Regina Henschel 
 wrote:

I want to make rendering similar to actual rendering in MSO in case we have
an import from MSO. MSO uses for the attribute c3DDiffuseAmt the special
value 43712/65536 in case of "Metal", otherwise 65536/65536.
Currently I use this special value in my ongoing work [4] to detect, that
the shape 'wants' a Metal-rendering like MSO. The attribute c3DDiffuseAmt
has the corresponding attribute draw:extrusion-diffusion in ODF. So a
document imported from MSO binary format and then saved to ODF looks still
as MSO-kind, when reopening the document. But it is somehow a misuse of that
ODF attribute.
Do you think, that I should stay with that approach? Alternative would be to
use a marker in an interoperability bag. But that would loose the
information when writing to ODF.

Opinions?


It seems to me that both of these are useful -- could we have both? I.e.
add a new "diffuse metal" (or any other suitable name) property for the
MSO behavior and keep our "metal" for the existing LO way?


LO has only a 'metal' from my last commit, which I now think has errors. 
 It is clear, that MS Office renders it using the material color. 
Besides seeing it in examples, the material color is mentioned in VML 
and in "legacyMetal" in OOXML. And although the description in ODF is 
not really clear, it surely has no reference to the material color. So 
we have an ODF way of 'metal' and a MS Office way.




Then you could map the MSO c3DDiffuseAmt to the "diffuse metal", and
have both types of metal in the same document. Yes, this means going
through the usual new feature checklist[1], but if you have time to do
that, probably that would be better than a misuse or a grab-bag.


It is more the question what we want, than how much time I have. The 
current state is already in Gerrit, so someone else could continue the 
work if necessary.


There will be a similar problem, when importing extruded shapes from 
OOXML. There the descriptions in section 20.1.10.50 in 
ISO_IEC_29500-1_2016 contain not only specular color based on material 
color, but ambient color based on material color too. And that can be 
expressed in ODF neither.


If no one strongly objects and if it will be OK that it lasts some time 
till finished, let's go with an additional attribute in ODF.




[1]
https://wiki.documentfoundation.org/Development/Writer#Adding_a_new_feature
has that list, but it's not specific to Writer, perhaps we should move
that to some more common place.



So I would have to add handling of the new attribute in a lot of places. 
The question is, do you (or someone else) will have time to mentor me 
when needed?


Kind regards,
Regina




[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit ca657b98e49eb2282775f7919827062a7a0b4bfe
Author: Olivier Hallot 
AuthorDate: Wed Feb 2 19:46:02 2022 -0300
Commit: Gerrit Code Review 
CommitDate: Wed Feb 2 23:46:02 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to eaae254a25e283cff0c0303d1831e48cd6dc1642
  - tdf#147137 Unclear Text on decrease indent

+ some refactoring that includes icons

Change-Id: Ia26b5c20f295546474a1cc42147c69a16d3a91e9
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129379
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index c3eb8a242ee7..eaae254a25e2 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit c3eb8a242ee732d6789310b5a9dd0bf10b5a4c6a
+Subproject commit eaae254a25e283cff0c0303d1831e48cd6dc1642


[Libreoffice-commits] help.git: source/text

2022-02-02 Thread Olivier Hallot (via logerrit)
 source/text/shared/01/05030100.xhp |   72 -
 source/text/shared/submenu_spacing.xhp |   60 ---
 2 files changed, 115 insertions(+), 17 deletions(-)

New commits:
commit eaae254a25e283cff0c0303d1831e48cd6dc1642
Author: Olivier Hallot 
AuthorDate: Wed Feb 2 14:31:35 2022 -0300
Commit: Olivier Hallot 
CommitDate: Wed Feb 2 23:45:59 2022 +0100

tdf#147137 Unclear Text on decrease indent

+ some refactoring that includes icons

Change-Id: Ia26b5c20f295546474a1cc42147c69a16d3a91e9
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129379
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/shared/01/05030100.xhp 
b/source/text/shared/01/05030100.xhp
index e8860efd9..9375088d2 100644
--- a/source/text/shared/01/05030100.xhp
+++ b/source/text/shared/01/05030100.xhp
@@ -101,18 +101,70 @@
 
 Line spacing
   Specify the amount of space to 
leave between lines of text in a paragraph.
+  
   Single
-  Applies single line spacing to 
the current paragraph. This is the default setting.
-
+  Applies single line spacing to 
the current paragraph. This is the default setting.
+  
+  
+  
+  
+  Icon Line Spacing 1
+  
+  
+  
+  Line Spacing 1
+  
+  
+  
+  
+  
   1.15 lines
-  Sets the line 
spacing to 1.15 lines.
-
-  1.5 lines
- Sets the line spacing to 1.5 lines.
-
-  Double
-  Sets the line spacing to two 
lines.
-
+  Sets the line 
spacing to 1.15 lines.
+  
+  
+  
+  
+  Icon Line Spacing 1.15
+  
+  
+  
+  Line Spacing 1.15
+  
+  
+  
+  
+  
+  1.5 lines
+  Sets the line spacing to 
1.5 lines.
+  
+  
+  
+  
+  Icon Line Spacing 1.5
+  
+  
+  
+  Line Spacing 1.5
+  
+  
+  
+  
+  
+  Double
+  Sets the line spacing to two 
lines.
+  
+  
+  
+  
+  Icon Line Spacing 2
+  
+  
+  
+  Line Spacing 2
+  
+  
+  
+  
   Proportional
   Select 
this option and then enter a percentage value in the box, where 100% 
corresponds to single line spacing.
   At Least
diff --git a/source/text/shared/submenu_spacing.xhp 
b/source/text/shared/submenu_spacing.xhp
index 005c85a88..9639b2b31 100644
--- a/source/text/shared/submenu_spacing.xhp
+++ b/source/text/shared/submenu_spacing.xhp
@@ -36,19 +36,65 @@
 
 
 
-Line Spacing: 1
-
-Line Spacing: 1.5
-
-Line Spacing: 2
-
+
+
+
+
 Increase Paragraph Spacing
 Increases the paragraph 
spacing above the selected paragraph.
+
+
+
+
+Icon Increase Paragraph Spacing
+
+
+
+Increase Paragraph Spacing
+
+
+
 Decrease Paragraph Spacing
 Decreases the paragraph 
spacing above the selected paragraph.
+
+
+
+
+Icon Decrease Paragraph Spacing
+
+
+
+Decrease Paragraph Spacing
+
+
+
 Increase Indent
 Increases the left 
indent of the current paragraph or cell content and sets it to the next default 
tab position. If several paragraphs are selected, the indentation of all 
selected paragraphs is increased.
+
+
+
+
+Icon Increase Indent
+
+
+
+Increase Indent
+
+
+
 Decrease Indent
-Decreases the left 
indent of the current paragraph or cell content and sets it to the previous 
default tab position. If you previously increased the indentation for several 
collectively selected paragraphs, this command can decrease the indentation for 
all of the selected paragraphs.
+Decreases the left 
indent of the current paragraph or cell content and sets it to the previous 
default tab position. If several paragraphs are selected, the indentation of 
all selected paragraphs is decreased.
+
+
+
+
+Icon Decrease Indent
+

[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit 9d1fc948f929ab18d9c42745c66f30581bbc055b
Author: Olivier Hallot 
AuthorDate: Wed Feb 2 19:45:07 2022 -0300
Commit: Gerrit Code Review 
CommitDate: Wed Feb 2 23:45:07 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to c3eb8a242ee732d6789310b5a9dd0bf10b5a4c6a
  - tdf#147136 Fix help entry for "What is this?"

Change-Id: I3429d0b496cb986e39797dd588c4789aba9614b6
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129378
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index d3038cce3723..c3eb8a242ee7 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit d3038cce3723b7b7a74a7723944e5c18bca6e5f1
+Subproject commit c3eb8a242ee732d6789310b5a9dd0bf10b5a4c6a


[Libreoffice-commits] help.git: source/text

2022-02-02 Thread Olivier Hallot (via logerrit)
 source/text/shared/main0201.xhp |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit c3eb8a242ee732d6789310b5a9dd0bf10b5a4c6a
Author: Olivier Hallot 
AuthorDate: Wed Feb 2 12:58:59 2022 -0300
Commit: Olivier Hallot 
CommitDate: Wed Feb 2 23:45:03 2022 +0100

tdf#147136 Fix help entry for "What is this?"

Change-Id: I3429d0b496cb986e39797dd588c4789aba9614b6
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129378
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/shared/main0201.xhp b/source/text/shared/main0201.xhp
index c223be84e..a14b623e5 100644
--- a/source/text/shared/main0201.xhp
+++ b/source/text/shared/main0201.xhp
@@ -146,17 +146,17 @@
 
 
 
-What's this
+What is this
 Enables extended help tips under the mouse pointer till the next 
click.
 
 
 
 
 
-icon What's 
this?'
+icon "What is 
this?"
 
 
-What's 
this
+What is 
this
 
 
 


[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit e6d6842ba258192e04b435a99c3eaa479f8a2f29
Author: Olivier Hallot 
AuthorDate: Wed Feb 2 19:43:58 2022 -0300
Commit: Gerrit Code Review 
CommitDate: Wed Feb 2 23:43:58 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to d3038cce3723b7b7a74a7723944e5c18bca6e5f1
  - tdf#147134 Fix help page on edit pivot table

Change-Id: I9eafeead4048bbc2c2d83ed239ae120980b4e89e
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129377
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index cc8821b42714..d3038cce3723 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit cc8821b42714d2b2856dad4b569e9337e5cfe014
+Subproject commit d3038cce3723b7b7a74a7723944e5c18bca6e5f1


[Libreoffice-commits] help.git: source/text

2022-02-02 Thread Olivier Hallot (via logerrit)
 source/text/scalc/guide/datapilot_edittable.xhp |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d3038cce3723b7b7a74a7723944e5c18bca6e5f1
Author: Olivier Hallot 
AuthorDate: Wed Feb 2 12:52:04 2022 -0300
Commit: Olivier Hallot 
CommitDate: Wed Feb 2 23:43:57 2022 +0100

tdf#147134 Fix help page on edit pivot table

Change-Id: I9eafeead4048bbc2c2d83ed239ae120980b4e89e
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129377
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/scalc/guide/datapilot_edittable.xhp 
b/source/text/scalc/guide/datapilot_edittable.xhp
index 6016004c4..eb13ac691 100644
--- a/source/text/scalc/guide/datapilot_edittable.xhp
+++ b/source/text/scalc/guide/datapilot_edittable.xhp
@@ -36,10 +36,10 @@
   By 
dragging the button to a different position in the same row you can alter the 
order of the columns. If you drag a button to the left edge of the table into 
the row headings area, you can change a column into a row.
   In the 
Pivot Table dialog, you can drag a button to the Filters area to 
create a button and a listbox on top of the pivot table. The listbox can be 
used to filter the pivot table by the contents of the selected item. You can 
use drag-and-drop within the pivot table to use another page field as a 
filter.
   To 
remove a button from the table, just drag it out of the pivot table. Release 
the mouse button when the mouse pointer positioned within the sheet has become 
a 'not allowed' icon. The button is deleted.
-  To edit 
the pivot table, click a cell inside the pivot table and open the context menu. 
In the context menu you find the command Edit Layout, which 
displays the Pivot Table dialog for the current pivot 
table.
+  To edit 
the pivot table, click a cell inside the pivot table and open the context menu. 
In the context menu you find the command Properties, which 
displays the Pivot Table Layout dialog for the current pivot 
table.
   In the 
pivot table, you can use drag-and-drop or cut/paste commands to rearrange the 
order of data fields.
   You 
can assign custom display names to fields, field members, subtotals (with some 
restrictions), and grand totals inside pivot tables. A custom display name is 
assigned to an item by overwriting the original name with another 
name.
-  
+
   
   
  


[Libreoffice-bugs] [Bug 147149] New: VIEWING: In a .docx file, cannot open embedded .ppsx file

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147149

Bug ID: 147149
   Summary: VIEWING: In a .docx file, cannot open embedded .ppsx
file
   Product: LibreOffice
   Version: 7.2.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: iza...@gmail.com

Description:
MS Office compatibility issue. When opening a .docx file that contains embedded
.ppsx file, the .ppsx file is unclickable and I cannot open it.

Steps to Reproduce:
1.Open a .docx file with embedded .ppsx file
2.Try to click on .ppsx
3.Nothing happens

Actual Results:
The embedded .ppsx file is presented as a hyperlink displaying creator's
original file path when mouse is hovered over it and cannot be opened

Expected Results:
The embedded .ppsx file should be presented as an icon and when clicked open
the file in Impress, analogue to the behavior in MS Office


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:
Version: 7.2.5.2 / LibreOffice Community
Build ID: 20(Build:2)
CPU threads: 12; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Ubuntu package version: 1:7.2.5-0ubuntu0.21.10.1
Calc: threaded

This is the only version I tested it on, might appear in earlier versions,
might be reproducible with other types of embedded files

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

[Libreoffice-bugs] [Bug 146774] Applying a style kills the ability to write text in Writer under Fedora 35

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146774

--- Comment #3 from Laurence Smart  ---
Info from Hep --> About LibreOffice

Version: 7.2.5.2.0+
Build ID: 20(Build:2)
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 146774] Applying a style kills the ability to write text in Writer under Fedora 35

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146774

--- Comment #2 from Laurence Smart  ---
You it does the same in safe mode.

BTW it also occurs when I use some of the icons on the formatting toolbar, but
I haven't documented those.

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

[Libreoffice-bugs] [Bug 147148] New: Paste in Writer loses Source Format

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147148

Bug ID: 147148
   Summary: Paste in Writer loses Source Format
   Product: LibreOffice
   Version: 7.2.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: digitalab...@gmail.com

Description:
Paste in Writer loses Source Format. 
This is frustrating for a content writer, since I've to format again after
pasting from my earlier Text / RTF / Word (doc/docx) or PDF files. 
Keep the Source Format, including indents and tabs. 


Steps to Reproduce:
1. New Document. Write few lines. 
2. Place Indents or tabs.  Bullet points. 
3. Select All Text. Copy.  
4. New Writer Document. 
5. Paste.  --- Formatting is gone. pasted as text.  


Actual Results:
Paste in Writer loses Source Format. 
 --- Formatting is gone. pasted as text.  


Expected Results:
Keep the Source Format, including indents and tabs. 



Reproducible: Always


User Profile Reset: No



Additional Info:
see above

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

[Libreoffice-bugs] [Bug 140007] UNDO Find and Replace leads to errors

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140007

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 CC||mikekagan...@hotmail.com

--- Comment #6 from Gabor Kelemen (allotropia)  ---
*** Bug 146274 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 146274] Undo after search-and-replace is br0ken

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146274

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

--- Comment #4 from Gabor Kelemen (allotropia)  ---
This looks like a duplicate of bug 140007 which has similar STR and bibisected
to the same commit.

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

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

[Libreoffice-bugs] [Bug 143035] [META] Track changes of frames

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143035

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Depends on||135976


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=135976
[Bug 135976] Anchor to character deleted with backspace at anchor position in
bulleted list
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 135976] Anchor to character deleted with backspace at anchor position in bulleted list

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135976

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Blocks||143035
 CC||kelem...@ubuntu.com

--- Comment #6 from Gabor Kelemen (allotropia)  ---
Note: this happens if change tracking is enabled. After disabling recording of
changes, the image and its caption frame stays.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143035
[Bug 143035] [META] Track changes of frames
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146109] Macro Commands Execute Out of Sequence

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146109

--- Comment #7 from Daniel Baran  ---
Following up:
I have done further testing by adding a delay (100ms in this case) to a
similar macro in files that were impacted by this issue (6 altogether).
Delaying the request a little for the saveas dialog has mitigated the problem.
However, it does seem like a difference in behavior from previous LO versions
that should be of interest from a QA perspective. It leaves me wondering if
other
macro / scripted commands might have similar issues with timing.


Version: 7.2.5.2 (x64) / LibreOffice Community
Build ID: 499f9727c189e6ef3471021d6132d4c694f357e5
CPU threads: 4; OS: Windows 10.0 Build 22000; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 147133] Delay while typing non-English characters

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147133

--- Comment #3 from Radek  ---
(In reply to Telesto from comment #2)
> (In reply to Radek from comment #1)
> > I'm changing the status to "new" as the existence of a bug has already been
> > reported to ask.libreoffice.org:
> > https://ask.libreoffice.org/t/major-lag-issue-with-version-7-2-0/67924
> 
> Putting back to unconfirmed. Not totally convinced.. It could also be bug
> 145963
> 
> Could you give some example of a polish or other non-English character?

I think this is a different kind of problem though, the delay is shorter than
that described in bug 145963 and only affects non-English characters.
The Polish characters are: ą ę ó ż ź ń ś

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

[Libreoffice-bugs] [Bug 147133] Delay while typing non-English characters

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147133

Telesto  changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
 Ever confirmed|1   |0
 CC||tele...@surfxs.nl

--- Comment #2 from Telesto  ---
(In reply to Radek from comment #1)
> I'm changing the status to "new" as the existence of a bug has already been
> reported to ask.libreoffice.org:
> https://ask.libreoffice.org/t/major-lag-issue-with-version-7-2-0/67924

Putting back to unconfirmed. Not totally convinced.. It could also be bug
145963

Could you give some example of a polish or other non-English character?

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

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

2022-02-02 Thread Xisco Fauli (via logerrit)
 sc/qa/unit/data/fods/tdf147088.fods|  261 +
 sc/qa/unit/subsequent_export_test2.cxx |   21 ++
 2 files changed, 282 insertions(+)

New commits:
commit 38d4f94788549f7f8118b28b03d9e056f994c841
Author: Xisco Fauli 
AuthorDate: Wed Feb 2 14:09:58 2022 +0100
Commit: Xisco Fauli 
CommitDate: Wed Feb 2 21:53:51 2022 +0100

tdf#147088: sc_subsequent_export_test2: Add unittest

Change-Id: I5370911eba3ada6e518b2c4f50ed11a33c4c8ccc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129358
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sc/qa/unit/data/fods/tdf147088.fods 
b/sc/qa/unit/data/fods/tdf147088.fods
new file mode 100644
index ..2acea42a86c2
--- /dev/null
+++ b/sc/qa/unit/data/fods/tdf147088.fods
@@ -0,0 +1,261 @@
+
+
+http://openoffice.org/2004/office; 
xmlns:xlink="http://www.w3.org/1999/xlink; 
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" 
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:ooow="http://openoffice.org/200
 4/writer" xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
 xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; xmlns
 :css3t="http://www.w3.org/TR/css3-text/; 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
office:version="1.3" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
+ Winfried 
Donkers2022-01-31T10:05:38.163002022-01-31T10:24:41.93400Winfried
 
DonkersPT1M41S3LibreOffice/7.2.5.2$Windows_X86_64
 
LibreOffice_project/499f9727c189e6ef3471021d6132d4c694f357e5
+ 
+  
+   0
+   0
+   2257
+   451
+   
+
+ view1
+ 
+  
+   0
+   0
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   100
+   60
+   true
+   false
+  
+ 
+ Blad1
+ 1652
+ 0
+ 100
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ true
+ false
+ false
+ 1000
+ 1000
+ 1
+ 1
+ true
+ false
+
+   
+  
+  
+   true
+   true
+   true
+   0
+   true
+   true
+   false
+   true
+   false
+   12632256
+   true
+   true
+   false
+   false
+   true
+   true
+   false
+   3
+   false
+   \\DGS-FS-01\PRN Algemeen
+   false
+   gSn+/1xcREdTLUZTLTAxXFBSTiBBbGdlbWVlbgAAS1ggRFJJVkVSIGZvciBVbml2ZXJzYWwgUHJpbnRpbgAWAAEAoigAAQAEAAhSAAAEdAAAM1ROVwAKAFwAXABEAEcAUwAtAEYAUwAtADAAMQBcAFAAUgBOACAAQQBsAGcAZQBtAGUAZQBuAAABBAMB3AC8JwP/hAMBAAkAAGQAAQAOALAEAgABALAEAgABAAQAAQMcAQBkUGNLAQAAAFgBAAAgEgAAkAAINAiaCyoAKgCYEp4aKgAqAJ4amBI0CJoLKgAqAJgSnhoqACoAnhqYEgAADAACAAIAAgQAAAEAAQBFAgCKBEUCAAABMDAxAAAFADAwMDAAAEwg
 

[Libreoffice-bugs] [Bug 140147] position of cursor not saved

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140147

ceki...@gmx.net changed:

   What|Removed |Added

Version|7.1.1.2 release |7.3.0.3 release

--- Comment #32 from ceki...@gmx.net ---
seems this bug reoccurs in 7.3.0.3 (here on KDE Neon) - last cursor position is
not saved - arbitrary cursor placement in newly opened document.
whether with new or old profile, doesn't matter - same behaviour.

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

[Libreoffice-bugs] [Bug 147147] New: Display of UI is very large

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147147

Bug ID: 147147
   Summary: Display of UI is very large
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: ARM
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tsprad...@gmail.com

Description:
Display of all Libreoffice screens is very large. Opening screen that shows
recent documents only shows a couple on the left of windows. Calc spreadsheets
do not show sheets selection across the bottom.
Tried the Arm64 and Intel versions of 3.3.0 on M1 MacBook Pro with the same
results.

Steps to Reproduce:
1.Installed 3.3.0
2.Opened LibreOffice
3.Large display, so large that content is cut off. Unable to scroll.

Actual Results:
Just opening LibreOffice show an exploded view of all screens. Not able to to
scroll to see missing content.

Expected Results:
Version 7.2.5 running on the same computer does not have this issue and
displays correctly.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Unable to do this because the Help - About LibreOffice screen is not formated
properly and almost all text is no visible.

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

New Defects reported by Coverity Scan for LibreOffice

2022-02-02 Thread scan-admin
Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

10 new defect(s) introduced to LibreOffice found with Coverity Scan.
5 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent 
build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 10 of 10 defect(s)


** CID 1497939:  Integer handling issues  (DIVIDE_BY_ZERO)
/tools/source/generic/fract.cxx: 186 in 
::checked_multiply_by(boost::rational &, const 
boost::rational &)()



*** CID 1497939:  Integer handling issues  (DIVIDE_BY_ZERO)
/tools/source/generic/fract.cxx: 186 in 
::checked_multiply_by(boost::rational &, const 
boost::rational &)()
180 
181 // Avoid overflow and preserve normalization
182 sal_Int32 gcd1 = std::gcd(i.numerator(), den);
183 sal_Int32 gcd2 = std::gcd(num, i.denominator());
184 
185 bool fail = false;
>>> CID 1497939:  Integer handling issues  (DIVIDE_BY_ZERO)
>>> In expression "i->numerator() / gcd1", division by expression "gcd1" 
>>> which may be zero has undefined behavior.
186 fail |= o3tl::checked_multiply(i.numerator() / gcd1, num / 
gcd2, num);
187 fail |= o3tl::checked_multiply(i.denominator() / gcd2, den / 
gcd1, den);
188 
189 if (!fail)
190 i.assign(num, den);
191 

** CID 1497938:  Uninitialized members  (UNINIT_CTOR)
/vcl/source/gdi/print3.cxx: 208 in 
vcl::ImplPrinterControllerData::ImplPrinterControllerData()()



*** CID 1497938:  Uninitialized members  (UNINIT_CTOR)
/vcl/source/gdi/print3.cxx: 208 in 
vcl::ImplPrinterControllerData::ImplPrinterControllerData()()
202 mbPapersizeFromUser( false ),
203 mbOrientationFromUser( false ),
204 mbPrinterModified( false ),
205 meJobState( css::view::PrintableState_JOB_STARTED ),
206 mnDefaultPaperBin( -1 ),
207 mnFixedPaperBin( -1 )
>>> CID 1497938:  Uninitialized members  (UNINIT_CTOR)
>>> Non-static class member "meUserOrientation" is not initialized in this 
>>> constructor nor in any functions that it calls.
208 {}
209 
210 ~ImplPrinterControllerData()
211 {
212 if (mxProgress)
213 {

** CID 1497937:  Integer handling issues  (DIVIDE_BY_ZERO)
/tools/source/generic/fract.cxx: 186 in 
::checked_multiply_by(boost::rational &, const 
boost::rational &)()



*** CID 1497937:  Integer handling issues  (DIVIDE_BY_ZERO)
/tools/source/generic/fract.cxx: 186 in 
::checked_multiply_by(boost::rational &, const 
boost::rational &)()
180 
181 // Avoid overflow and preserve normalization
182 sal_Int32 gcd1 = std::gcd(i.numerator(), den);
183 sal_Int32 gcd2 = std::gcd(num, i.denominator());
184 
185 bool fail = false;
>>> CID 1497937:  Integer handling issues  (DIVIDE_BY_ZERO)
>>> In expression "num / gcd2", division by expression "gcd2" which may be 
>>> zero has undefined behavior.
186 fail |= o3tl::checked_multiply(i.numerator() / gcd1, num / 
gcd2, num);
187 fail |= o3tl::checked_multiply(i.denominator() / gcd2, den / 
gcd1, den);
188 
189 if (!fail)
190 i.assign(num, den);
191 

** CID 1497936:  API usage errors  (SWAPPED_ARGUMENTS)



*** CID 1497936:  API usage errors  (SWAPPED_ARGUMENTS)
/vcl/source/gdi/print3.cxx: 236 in 
vcl::ImplPrinterControllerData::getRealPaperSize(const Size &, bool) const()
230 if(mbOrientationFromUser)
231 {
232 if ( (meUserOrientation == Orientation::Portrait && 
size.Width() > size.Height()) ||
233  (meUserOrientation == Orientation::Landscape && 
size.Width() < size.Height()) )
234 {
235 // coverity[swapped-arguments : FALSE] - this is in the 
correct order
>>> CID 1497936:  API usage errors  (SWAPPED_ARGUMENTS)
>>> The positions of arguments in the constructor for "Size" do not match 
>>> the ordering of the parameters:
* "size.Height()" is passed to "nWidth".
* "size.Width()" is passed to "nHeight".
236 size = Size( size.Height(), size.Width() );
237 }
238 }
239 return size;
240 }
241 PrinterController::PageSize modifyJobSetup( const 
css::uno::Sequence< css::beans::PropertyValue >& i_rProps );

** CID 1497935:  Integer handling issues  (DIVIDE_BY_ZERO)
/include/o3tl/unit_conversion.hxx: 138 

[Libreoffice-bugs] [Bug 141210] SELECTION: Make it more visible, if a shape is not included into a selection (because its anchor is not included)

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141210
Bug 141210 depends on bug 139668, which changed state.

Bug 139668 Summary: Anchor to paragraph not included in selection when 
selecting a full paragraph
https://bugs.documentfoundation.org/show_bug.cgi?id=139668

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

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

[Libreoffice-bugs] [Bug 139668] Anchor to paragraph not included in selection when selecting a full paragraph

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139668

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
Summary|Anchor to paragraph no  |Anchor to paragraph not
   |included in selection when  |included in selection when
   |selecting a full paragraph  |selecting a full paragraph
   Keywords|needsDevAdvice  |
 Resolution|--- |NOTABUG

--- Comment #9 from Buovjaga  ---
Thanks for the insight, let's close.

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

Minutes from the UX/design meeting 2022-Feb-02

2022-02-02 Thread Heiko Tietze

Present: John, Heiko
Comments: Justin, Mike, Regina, Telesto, Thomas, Stuart, Mihkel, Bastian, 
Adolfo, Rizal, Kendy, Csongor


Tickets/Topics

 * Writer: Table can be moved to new page, but not back
   + https://bugs.documentfoundation.org/show_bug.cgi?id=144121
   + page break is an attribute of the table, it was never possible (Justin)
   + special handling might be possible (Mike)
   + only straight-forward solution is to separate pb from table and
 modify/insert the paragraph before (Heiko)
   + wonder how other applications do it (John)
   => WF/NAB

 * Manage Changes sidebar in Writer no longer needs to be an experimental
   feature
   + https://bugs.documentfoundation.org/show_bug.cgi?id=147042
   + yes (Kendy)
   => do it

 * Make clear distinction on differences between "Export" and "Save As",
   and move items in those filters accordingly
   + https://bugs.documentfoundation.org/show_bug.cgi?id=116703
   + "save as" has formats for which import and export filter exists; "export"
  has those for which only export exists (Regina)
  + not in general true, for example PDF (Mike)
   + overview of current situation and some options in c16
 + remove Export and have everything under SaveAs (Telesto)
 + lossy formats (no import filter) under Export; option 4 (Thomas)
 + open document formats at SaveAs everything else at Export,
   option 1 (Stuart)
   + bad idea (Csongor), forcing users into a certain format hinders
 collaboration (John)
 + keep as it is, option 0 (Mihkel)
   + Understand Export as some final procedure, a file that can't be
 opened again; meaning option 4 (John)
   + Exporting means that plain Save will not work on this format but was
 used before (John)
   => do option 4 and test whether the (export) filter is used as
  the actual format for subsequent Save operations

 * Icon styles should not modify official application icons in start center
   (and other relevant places)
   + https://bugs.documentfoundation.org/show_bug.cgi?id=126074
   + only one icon (Bastian), themable icons (Adolfo, Mike, Rizal)
   + proposal for guideline in c15
   + brand identification is important; we should aim for consistency across
 the themes; current icon themes work well (John)
   => guideline is okay
 * Adopt new application icons for LibreOffice 7.0
   + https://bugs.documentfoundation.org/show_bug.cgi?id=132398
   => MIME type icons and application icons are part of the theme,
  the main icon should be reworked


OpenPGP_signature
Description: OpenPGP digital signature


[Libreoffice-qa] Minutes from the UX/design meeting 2022-Feb-02

2022-02-02 Thread Heiko Tietze

Present: John, Heiko
Comments: Justin, Mike, Regina, Telesto, Thomas, Stuart, Mihkel, Bastian, 
Adolfo, Rizal, Kendy, Csongor


Tickets/Topics

 * Writer: Table can be moved to new page, but not back
   + https://bugs.documentfoundation.org/show_bug.cgi?id=144121
   + page break is an attribute of the table, it was never possible (Justin)
   + special handling might be possible (Mike)
   + only straight-forward solution is to separate pb from table and
 modify/insert the paragraph before (Heiko)
   + wonder how other applications do it (John)
   => WF/NAB

 * Manage Changes sidebar in Writer no longer needs to be an experimental
   feature
   + https://bugs.documentfoundation.org/show_bug.cgi?id=147042
   + yes (Kendy)
   => do it

 * Make clear distinction on differences between "Export" and "Save As",
   and move items in those filters accordingly
   + https://bugs.documentfoundation.org/show_bug.cgi?id=116703
   + "save as" has formats for which import and export filter exists; "export"
  has those for which only export exists (Regina)
  + not in general true, for example PDF (Mike)
   + overview of current situation and some options in c16
 + remove Export and have everything under SaveAs (Telesto)
 + lossy formats (no import filter) under Export; option 4 (Thomas)
 + open document formats at SaveAs everything else at Export,
   option 1 (Stuart)
   + bad idea (Csongor), forcing users into a certain format hinders
 collaboration (John)
 + keep as it is, option 0 (Mihkel)
   + Understand Export as some final procedure, a file that can't be
 opened again; meaning option 4 (John)
   + Exporting means that plain Save will not work on this format but was
 used before (John)
   => do option 4 and test whether the (export) filter is used as
  the actual format for subsequent Save operations

 * Icon styles should not modify official application icons in start center
   (and other relevant places)
   + https://bugs.documentfoundation.org/show_bug.cgi?id=126074
   + only one icon (Bastian), themable icons (Adolfo, Mike, Rizal)
   + proposal for guideline in c15
   + brand identification is important; we should aim for consistency across
 the themes; current icon themes work well (John)
   => guideline is okay
 * Adopt new application icons for LibreOffice 7.0
   + https://bugs.documentfoundation.org/show_bug.cgi?id=132398
   => MIME type icons and application icons are part of the theme,
  the main icon should be reworked


OpenPGP_signature
Description: OpenPGP digital signature


[Libreoffice-bugs] [Bug 145961] selection problem in the Arabic text

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145961

raal  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #6 from raal  ---
Cannot reproduce with Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 0b397d8ef0a2615e8e6202804ca2f6cb58436fa5
CPU threads: 4; OS: Linux 5.11; UI render: default; VCL: gtk3
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded Jumbo

Seems to be fixed with dev version. Please could you test it with
dev version?  You can download it here:
http://dev-builds.libreoffice.org/daily/master/
Thank you

Looks similar/duplicate of bug 144890.

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

[Libreoffice-bugs] [Bug 147135] Crash in: _GLOBAL__sub_I_protectiondlg.cxx.lto_priv.2643

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147135

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #5 from Julien Nabet  ---
How did you install LO 7.3.0.3 on Linux Mint?
Just for information, LO rpm and deb packages from TDF are more for distrib
maintainers since they deal with dependencies.

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

Re: make vs-ide-integration bumbling on paths in Windows

2022-02-02 Thread Ilmari Lauhakangas

On 2.2.2022 12.52, Christian Lohmaier wrote:

On Tue, Feb 1, 2022 at 6:24 PM Ilmari Lauhakangas
 wrote:


A Windows user gets this when running make vs-ide-integration:

D:/libre/lode/opt/bin/make -j 4 -rs -f
D:/libre/lode/dev/core/Makefile.gbuild gbuildtojson
cd D:/libre/lode/dev/core &&  D:/libre/lode/dev/core/bin/gbuild-to-ide
--ide vs --make D:/libre/lode/opt/bin/make
python3: can't open file
'/cygdrive/d/libre/lode/dev/core/D:/libre/lode/dev/core/bin/gbuild-to-ide':
[Errno 2] No such file or directory
make: *** [Makefile:495: vs-ide-integration] Error 2

What can make Python think the gbuild-to-ide resides in such a curious path?


Having a copy of the config.log and config_host.mk would be
interesting to see - is python3 a proper cygwin one?

I assume just attempting to run
D:/libre/lode/dev/core/bin/gbuild-to-ide will already give the same
output?
(should print usage message)


I shared the files with Christian and he pointed to this in config.log:

PATH: /cygdrive/c/Users/User Name/AppData/Local/Programs/Python/Python39/

Cygwin's Python had not been installed. I am waiting for the newcomer to 
verify that installing it fixes the issue.


Ilmari


[Libreoffice-bugs] [Bug 147143] Word selection error in Arabic text

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147143

--- Comment #5 from mustafa  ---
Created attachment 178001
  --> https://bugs.documentfoundation.org/attachment.cgi?id=178001=edit
select the word is good

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

[Libreoffice-bugs] [Bug 147144] Writer crash after adding rectangle, add link and delete it

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147144

Julien Nabet  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #3 from Julien Nabet  ---
patch waiting for review here:
https://gerrit.libreoffice.org/c/core/+/129388

Since there were "rMarkList.GetMark(0) != nullptr" at other locations or
"rMarkList.GetMarkCount()", I did the same.

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

[Libreoffice-bugs] [Bug 147140] Selection bounding box for RTL text

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147140

raal  changed:

   What|Removed |Added

 CC||r...@post.cz
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from raal  ---
PLease attach test file.

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

[Libreoffice-bugs] [Bug 147144] Writer crash after adding rectangle, add link and delete it

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147144

raal  changed:

   What|Removed |Added

 CC||r...@post.cz,
   ||samuel.mehrbrodt@allotropia
   ||.de

--- Comment #2 from raal  ---
New feature:
https://wiki.documentfoundation.org/ReleaseNotes/7.3#General_improvements

Adding CC to Samuel Mehrbrodt

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

[Libreoffice-bugs] [Bug 147143] Word selection error in Arabic text

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147143

--- Comment #4 from mustafa  ---
Created attachment 178000
  --> https://bugs.documentfoundation.org/attachment.cgi?id=178000=edit
test file is here

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

[Libreoffice-bugs] [Bug 147144] Writer crash after adding rectangle, add link and delete it

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147144

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Keywords||haveBacktrace
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 147144] Writer crash after adding rectangle, add link and delete it

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147144

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

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

On pc Debian x86-64 with master sources updated today, I could reproduce this.

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

[Libreoffice-bugs] [Bug 147139] Wrong string for Gallery menu entry

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147139

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr
   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |
 Ever confirmed|0   |1
 Status|UNCONFIRMED |ASSIGNED

--- Comment #1 from Julien Nabet  ---
Patch on gerrit: https://gerrit.libreoffice.org/c/help/+/129336

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

[Libreoffice-bugs] [Bug 147146] New: Banded Rows in data sheets.

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147146

Bug ID: 147146
   Summary: Banded Rows in data sheets.
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: brianqmona...@googlemail.com

This is a suggestion for an UI improvement for standard users.

Please add an easy way to apply Banded Rows and other "canned" formats that
would be beneficial.

I realise that MS Excel has a similar feature and therefore probably subject to
patent/copywrong,  One way to have this would be to add "logical recipes" which
provides better scripts - and one of those scripts could be standard canned
formats
such as banded rows.

Brian

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

[Libreoffice-bugs] [Bug 137571] Adding and modifying animations painfully slow

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137571

--- Comment #8 from Eyal Rozenberg  ---
(In reply to Buovjaga from comment #7)
> Bibisected with linux-64-6.3

Thanks for that, Ilmari. But - what does that change have to do with modifying
page animations?

Anyway, see my Redmine issues #3529 and #3570 about encouraging more people to
bibisect.

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

[Libreoffice-bugs] [Bug 145758] Wrong encoding in the window title, when saving a file, and when pasting from the clipboard

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145758

--- Comment #15 from tcb...@protonmail.com ---
I'd like to second this bug as well as highlight that this can occur when
locale is set to ones such as Austrian English (en_AT), Belgian English (en_BE)
and Swedish English (en_SE) and thus, is more of a concern than one might think
- it is not limited to simply folks using uncommon and/or unusual locales.

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

Re: Material preset "Metal" for extruded custom shapes

2022-02-02 Thread Regina Henschel

Hi Armin,

Armin Le Grand schrieb am 02.02.2022 um 09:57:

Hi Regina,

I remember that we did 'metal' *before* other competitor(s), so that 
same name is/must be just coincidence.


I don't think it was before MS Office. The presets "Plastic", "Matte", 
"Metal" and "Wireframe" for extruded custom shapes had already exist in 
MS Office 97.


 Like 'Gold' it was to give the
user more possibilities/selections to play around. Some lighting 
presets, if you wish.


Yes I know. Those presets from 3D-scene are not helpful here. They 
contain fixed material colors, whereas those from the extruded custom 
shapes work for any material color. But it might be, that the strange 
definition in ODF was influenced by these 3D-scene presets.


The import of MS Office "Metal" and "Matte" to a 3D-scene in ODF 1.1 had 
already clearly visible errors in lighting, so those ways are not usable 
here.


Kind regards,
Regina



[Libreoffice-bugs] [Bug 147112] Final Table Column Dropped On Filesave of Writer Document

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147112

Timur  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Timur  ---
Bug cannot be confirmed if not reproducible. 
You need to attach sample and give exact steps.

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

[Libreoffice-bugs] [Bug 147126] [DOCX] Diagrams/shapes with text imported with wrong font size

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147126

--- Comment #2 from Timur  ---
There was a fix today that might be related, please try with master tomorrow.

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

[Libreoffice-bugs] [Bug 147135] Crash in: _GLOBAL__sub_I_protectiondlg.cxx.lto_priv.2643

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147135

Yugov Ivan  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 147135] Crash in: _GLOBAL__sub_I_protectiondlg.cxx.lto_priv.2643

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147135

Yugov Ivan  changed:

   What|Removed |Added

Version|unspecified |7.3.0.3 release

--- Comment #4 from Yugov Ivan  ---
Calc in 7.3.0.3 also crashes in Safe Mode and with user profile reset.

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

[Libreoffice-bugs] [Bug 139668] Anchor to paragraph no included in selection when selecting a full paragraph

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139668

--- Comment #8 from Gabor Kelemen (allotropia)  ---
I played a bit with this and an inserted random image and a stock chart as an
OLE object.
The grouped shape is anchored To paragraph, meaning selecting all text and
cutting it leaves the empty paragraph behind. The objects are anchored to that
and stay.
If you move the selection to include the previous empty paragraph and cut, then
the paragraph is entirely cut so the image, grouped shape and chart are cut as
well.

On the other hand if you change the anchor to To character and pull it inside
the paragraph, then select the whole paragraph and cut, the objects are also
cut.

I think this is NAB, the behavior is consistent.

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

[Libreoffice-bugs] [Bug 104790] [META] Database connectivity interfaces (ODBC, JDBC..) and external databases

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104790
Bug 104790 depends on bug 81430, which changed state.

Bug 81430 Summary: libreoffice-mysql-connector cannot create/edit tables 
without primary key
https://bugs.documentfoundation.org/show_bug.cgi?id=81430

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 56242] Libreoffice Base should handle tables without a primary key better

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56242

Julien Nabet  changed:

   What|Removed |Added

 CC||libreoffic...@sfina.com

--- Comment #10 from Julien Nabet  ---
*** Bug 81430 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 81430] libreoffice-mysql-connector cannot create/edit tables without primary key

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81430

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #23 from Julien Nabet  ---


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

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

[Libreoffice-bugs] [Bug 146572] Wrapped RTL String Incorrectly Positioned in LTR Paragraph

2022-02-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146572

--- Comment #7 from jcuenod  ---
After displaying "Formatting Marks" (under View), I can confirm that the
problem is that whitespace at the end of the line seems to be conditionally
displayed. In a line of BIDI text, both the LTR and the RTL text display their
whitespace which produces an unexpected amount of space between the two spans
of text.

This can be reproduced by:
1. Display formatting marks
2. Type half a line of LTR text followed by a space and enough RTL text till it
wraps to the next line (must contain multiple words).
3. Add LTR characters at the beginning of the first line until another RTL word
wraps.

Two "space" formatting marks will appear between the LTR and RTL text.

There should only be one.

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

  1   2   3   4   >