[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - sc/source

2020-03-28 Thread Eike Rathke (via logerrit)
 sc/source/core/tool/interpr8.cxx |   41 +--
 1 file changed, 31 insertions(+), 10 deletions(-)

New commits:
commit f2f32b267f1b17cec4599c6bd6a7c13c3ee6d434
Author: Eike Rathke 
AuthorDate: Fri Mar 27 17:54:09 2020 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Sat Mar 28 07:50:15 2020 +0100

Resolves: tdf#131096 Handle argument error and propagate

For etsPIAdd and etsPIMult also check if the fPILevel parameter
was actually specified (explicitly or missing/omitted) and do not
pop the 3rd parameter if not. GetDoubleWithDefault() can't handle
that as apparently was erroneously assumed.

Use IllegalArgument error instead of IllegalParameter in most
cases (the parameter is fine but the argument value is not).

Actually propagate ScETSForecastCalculation::mnErrorValue if set
as PushMatrix() does not, on purpose.

Change-Id: Ia2db5b0a7a388f0f40b73c6a4f66debbedec41e8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91232
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit 811b36e4db240be3a21a4d184b085630efcc09b7)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91181
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/sc/source/core/tool/interpr8.cxx b/sc/source/core/tool/interpr8.cxx
index ce4234d0853e..18a65e86f86c 100644
--- a/sc/source/core/tool/interpr8.cxx
+++ b/sc/source/core/tool/interpr8.cxx
@@ -981,6 +981,12 @@ void ScETSForecastCalculation::GetETSPredictionIntervals( 
const ScMatrixRef& rTM
 if ( fmod( fMaxTarget, mfStepSize ) != 0.0 )
 nSize++;
 
+if (nSize == 0)
+{
+mnErrorValue = FormulaError::IllegalArgument;
+return;
+}
+
 std::unique_ptr< double[] > xScenRange( new double[nSize]);
 std::unique_ptr< double[] > xScenBase( new double[nSize]);
 std::unique_ptr< double[] > xScenTrend( new double[nSize]);
@@ -,6 +1117,12 @@ void 
ScETSForecastCalculation::GetEDSPredictionIntervals( const ScMatrixRef& rTM
 if ( fmod( fMaxTarget, mfStepSize ) != 0.0 )
 nSize++;
 
+if (nSize == 0)
+{
+mnErrorValue = FormulaError::IllegalArgument;
+return;
+}
+
 double z = ScInterpreter::gaussinv( ( 1.0 + fPILevel ) / 2.0 );
 double o = 1 - fPILevel;
 std::vector< double > c( nSize );
@@ -1181,7 +1193,7 @@ void ScInterpreter::ScForecast_Ets( ScETSType eETSType )
 nAggregation = 1;
 if ( nAggregation < 1 || nAggregation > 7 )
 {
-PushIllegalParameter();
+PushIllegalArgument();
 return;
 }
 
@@ -1195,7 +1207,7 @@ void ScInterpreter::ScForecast_Ets( ScETSType eETSType )
 bDataCompletion = nTemp;
 else
 {
-PushIllegalParameter();
+PushIllegalArgument();
 return;
 }
 }
@@ -1222,16 +1234,16 @@ void ScInterpreter::ScForecast_Ets( ScETSType eETSType )
 double fPILevel = 0.0;
 if ( nParamCount < 3 && !( nParamCount == 2 && eETSType == etsSeason ) )
 {
-PushIllegalArgument();
+PushParameterExpected();
 return;
 }
 
 if ( eETSType == etsPIAdd || eETSType == etsPIMult )
 {
-fPILevel = GetDoubleWithDefault( 0.95 );
+fPILevel = (nParamCount < 4 ? 0.95 : GetDoubleWithDefault( 0.95 ));
 if ( fPILevel < 0 || fPILevel > 1 )
 {
-PushIllegalParameter();
+PushIllegalArgument();
 return;
 }
 }
@@ -1249,7 +1261,7 @@ void ScInterpreter::ScForecast_Ets( ScETSType eETSType )
 if ( static_cast< int >( pTypeMat->GetDouble( j, i ) ) < 1 ||
  static_cast< int >( pTypeMat->GetDouble( j, i ) ) > 9 )
 {
-PushIllegalParameter();
+PushIllegalArgument();
 return;
 }
 }
@@ -1304,7 +1316,10 @@ void ScInterpreter::ScForecast_Ets( ScETSType eETSType )
 pTMat->GetDimensions( nC, nR );
 ScMatrixRef pFcMat = GetNewMat( nC, nR );
 aETSCalc.GetForecastRange( pTMat, pFcMat );
-PushMatrix( pFcMat );
+if (aETSCalc.GetError() != FormulaError::NONE)
+PushError( aETSCalc.GetError());// explicitly push 
error, PushMatrix() does not
+else
+PushMatrix( pFcMat );
 }
 break;
 case etsPIAdd :
@@ -1316,13 +1331,15 @@ void ScInterpreter::ScForecast_Ets( ScETSType eETSType )
 if ( nSmplInPrd == 0 )
 {
 aETSCalc.GetEDSPredictionIntervals( pTMat, pPIMat, 
fPILevel );
-PushMatrix( pPIMat );
 }
 else
 {
 aETSCalc.GetETSPredictionIntervals( pTMat, pPIMat, 
fPILevel );
-PushMatrix( pPIMat );
 }
+ 

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

2020-03-28 Thread Rizal Muttaqin (via logerrit)
 icon-themes/sukapura/cmd/32/setobjecttobackground.png |binary
 icon-themes/sukapura/cmd/32/setobjecttoforeground.png |binary
 icon-themes/sukapura/cmd/lc_setobjecttobackground.png |binary
 icon-themes/sukapura/cmd/lc_setobjecttoforeground.png |binary
 icon-themes/sukapura/cmd/sc_setobjecttobackground.png |binary
 icon-themes/sukapura/cmd/sc_setobjecttoforeground.png |binary
 icon-themes/sukapura/links.txt|6 --
 icon-themes/sukapura_svg/cmd/32/setobjecttobackground.svg |1 +
 icon-themes/sukapura_svg/cmd/32/setobjecttoforeground.svg |1 +
 icon-themes/sukapura_svg/cmd/lc_setobjecttobackground.svg |1 +
 icon-themes/sukapura_svg/cmd/lc_setobjecttoforeground.svg |1 +
 icon-themes/sukapura_svg/cmd/sc_setobjecttobackground.svg |6 ++
 icon-themes/sukapura_svg/cmd/sc_setobjecttoforeground.svg |6 ++
 13 files changed, 16 insertions(+), 6 deletions(-)

New commits:
commit ba3c9a8f055bb1388012245c3578f9b21572ed75
Author: Rizal Muttaqin 
AuthorDate: Sat Mar 28 11:29:58 2020 +0700
Commit: Rizal Muttaqin 
CommitDate: Sat Mar 28 07:31:03 2020 +0100

Sukapura:Fix for tdf#131636: icons for to Background and to Foreground

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

diff --git a/icon-themes/sukapura/cmd/32/setobjecttobackground.png 
b/icon-themes/sukapura/cmd/32/setobjecttobackground.png
new file mode 100644
index ..9c64f50d6917
Binary files /dev/null and 
b/icon-themes/sukapura/cmd/32/setobjecttobackground.png differ
diff --git a/icon-themes/sukapura/cmd/32/setobjecttoforeground.png 
b/icon-themes/sukapura/cmd/32/setobjecttoforeground.png
new file mode 100644
index ..e21b9a9238c4
Binary files /dev/null and 
b/icon-themes/sukapura/cmd/32/setobjecttoforeground.png differ
diff --git a/icon-themes/sukapura/cmd/lc_setobjecttobackground.png 
b/icon-themes/sukapura/cmd/lc_setobjecttobackground.png
new file mode 100644
index ..166713886a8e
Binary files /dev/null and 
b/icon-themes/sukapura/cmd/lc_setobjecttobackground.png differ
diff --git a/icon-themes/sukapura/cmd/lc_setobjecttoforeground.png 
b/icon-themes/sukapura/cmd/lc_setobjecttoforeground.png
new file mode 100644
index ..2f6b8c6104b2
Binary files /dev/null and 
b/icon-themes/sukapura/cmd/lc_setobjecttoforeground.png differ
diff --git a/icon-themes/sukapura/cmd/sc_setobjecttobackground.png 
b/icon-themes/sukapura/cmd/sc_setobjecttobackground.png
new file mode 100644
index ..db26b2745af0
Binary files /dev/null and 
b/icon-themes/sukapura/cmd/sc_setobjecttobackground.png differ
diff --git a/icon-themes/sukapura/cmd/sc_setobjecttoforeground.png 
b/icon-themes/sukapura/cmd/sc_setobjecttoforeground.png
new file mode 100644
index ..bdac58fe27be
Binary files /dev/null and 
b/icon-themes/sukapura/cmd/sc_setobjecttoforeground.png differ
diff --git a/icon-themes/sukapura/links.txt b/icon-themes/sukapura/links.txt
index d7d7a952d24d..1a1939375511 100644
--- a/icon-themes/sukapura/links.txt
+++ b/icon-themes/sukapura/links.txt
@@ -1642,18 +1642,12 @@ cmd/sc_rehearsetimings.png cmd/sc_diatime.png
 # Arrange
 cmd/32/arrangeframemenu.png cmd/32/bringtofront.png
 cmd/32/arrangemenu.png cmd/32/bringtofront.png
-cmd/32/setobjecttobackground.png cmd/32/sendtoback.png
-cmd/32/setobjecttoforeground.png cmd/32/bringtofront.png
 
 cmd/lc_arrangeframemenu.png cmd/lc_bringtofront.png
 cmd/lc_arrangemenu.png cmd/lc_bringtofront.png
-cmd/lc_setobjecttobackground.png cmd/lc_sendtoback.png
-cmd/lc_setobjecttoforeground.png cmd/lc_bringtofront.png
 
 cmd/sc_arrangeframemenu.png cmd/sc_bringtofront.png
 cmd/sc_arrangemenu.png cmd/sc_bringtofront.png
-cmd/sc_setobjecttobackground.png cmd/sc_sendtoback.png
-cmd/sc_setobjecttoforeground.png cmd/sc_bringtofront.png
 
 # Reload
 cmd/32/draw.png cmd/32/reload.png
diff --git a/icon-themes/sukapura_svg/cmd/32/setobjecttobackground.svg 
b/icon-themes/sukapura_svg/cmd/32/setobjecttobackground.svg
new file mode 100644
index ..448ae1201662
--- /dev/null
+++ b/icon-themes/sukapura_svg/cmd/32/setobjecttobackground.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff --git a/icon-themes/sukapura_svg/cmd/32/setobjecttoforeground.svg 
b/icon-themes/sukapura_svg/cmd/32/setobjecttoforeground.svg
new file mode 100644
index ..36b400734e6e
--- /dev/null
+++ b/icon-themes/sukapura_svg/cmd/32/setobjecttoforeground.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff --git a/icon-themes/sukapura_svg/cmd/lc_setobjecttobackground.svg 
b/icon-themes/sukapura_svg/cmd/lc_setobjecttobackground.svg
new file mode 100644
index ..a03ac2631577
--- /dev/null
+++ 

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

2020-03-28 Thread Justin Luth (via logerrit)
 sw/qa/extras/ww8export/ww8export2.cxx |   14 ++
 sw/qa/extras/ww8import/ww8import.cxx  |8 
 sw/source/filter/ww8/ww8par2.cxx  |9 +
 3 files changed, 23 insertions(+), 8 deletions(-)

New commits:
commit 35b3a3eb001ec8ff8c808ad6d990a583163ad365
Author: Justin Luth 
AuthorDate: Thu Mar 26 09:33:08 2020 +0300
Commit: Justin Luth 
CommitDate: Sat Mar 28 08:50:08 2020 +0100

tdf#80635 ww8import:1 take float table CENTER to inlined table

Since SW has problems with floating tables, any unnecessarily
floated tables are converted to inline. However, the
positioning of the tables is mostly lost. So the choice is
either to refuse to inline a strangely positioned table
or else to transfer the positioning onto the inlined table.

Transferring is easier said than done. But for centered tables,
it is easy to copy that.

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

diff --git a/sw/qa/extras/ww8import/data/tdf107773.doc 
b/sw/qa/extras/ww8export/data/tdf107773.doc
similarity index 100%
rename from sw/qa/extras/ww8import/data/tdf107773.doc
rename to sw/qa/extras/ww8export/data/tdf107773.doc
diff --git a/sw/qa/extras/ww8export/ww8export2.cxx 
b/sw/qa/extras/ww8export/ww8export2.cxx
index 9abcdf7a9eef..b477b03bbeaa 100644
--- a/sw/qa/extras/ww8export/ww8export2.cxx
+++ b/sw/qa/extras/ww8export/ww8export2.cxx
@@ -252,6 +252,20 @@ DECLARE_WW8EXPORT_TEST(testTdf116570_exportFootnote, 
"tdf116570_exportFootnote.o
 CPPUNIT_ASSERT_EQUAL_MESSAGE( "Number of paragraphs in first footnote", 2, 
getParagraphs(xFootnoteText) );
 }
 
+DECLARE_WW8EXPORT_TEST(testTdf107773, "tdf107773.doc")
+{
+uno::Reference xDrawPageSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference xDrawPage = 
xDrawPageSupplier->getDrawPage();
+// This was 1, multi-page table was imported as a floating one.
+CPPUNIT_ASSERT_EQUAL(static_cast(0), xDrawPage->getCount());
+
+// tdf#80635 - transfer the float orientation to the table.
+uno::Reference xTextTablesSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xTables(xTextTablesSupplier->getTextTables(), uno::UNO_QUERY);
+uno::Reference xTable(xTables->getByIndex(0), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Horizontal Orientation", 
text::HoriOrientation::CENTER, getProperty(xTable, "HoriOrient"));
+}
+
 DECLARE_WW8EXPORT_TEST(testTdf112074_RTLtableJustification, 
"tdf112074_RTLtableJustification.doc")
 {
 uno::Reference xTextTablesSupplier(mxComponent, 
uno::UNO_QUERY);
diff --git a/sw/qa/extras/ww8import/ww8import.cxx 
b/sw/qa/extras/ww8import/ww8import.cxx
index 7f68b083cd88..1313eff345aa 100644
--- a/sw/qa/extras/ww8import/ww8import.cxx
+++ b/sw/qa/extras/ww8import/ww8import.cxx
@@ -79,14 +79,6 @@ DECLARE_WW8IMPORT_TEST(testFloatingTableSectionColumns, 
"floating-table-section-
 CPPUNIT_ASSERT( tableWidth.toInt32() > 1 );
 }
 
-DECLARE_WW8IMPORT_TEST(testTdf107773, "tdf107773.doc")
-{
-uno::Reference xDrawPageSupplier(mxComponent, 
uno::UNO_QUERY);
-uno::Reference xDrawPage = 
xDrawPageSupplier->getDrawPage();
-// This was 1, multi-page table was imported as a floating one.
-CPPUNIT_ASSERT_EQUAL(static_cast(0), xDrawPage->getCount());
-}
-
 DECLARE_WW8IMPORT_TEST(testTdf124601, "tdf124601.doc")
 {
 // Without the accompanying fix in place, this test would have failed, as 
the importer lost the
diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx
index 6f417543014d..3b1615793482 100644
--- a/sw/source/filter/ww8/ww8par2.cxx
+++ b/sw/source/filter/ww8/ww8par2.cxx
@@ -2423,6 +2423,15 @@ void WW8TabDesc::CreateSwTable()
 
 m_xTmpPos.reset(new SwPosition(*m_pIo->m_pPaM->GetPoint()));
 
+// Because SW cannot handle multi-page floating frames,
+// _any unnecessary_ floating tables have been converted to inline.
+if ( m_pIo->m_xSFlyPara && !m_pIo->m_xSFlyPara->pFlyFormat )
+{
+// Get the table orientation from the fly
+if ( m_pIo->m_xSFlyPara->eHAlign == text::HoriOrientation::CENTER )
+m_eOri = m_pIo->m_xSFlyPara->eHAlign;
+}
+
 // The table is small: The number of columns is the lowest count of
 // columns of the origin, because inserting is faster than deleting.
 // The number of rows is the count of bands because (identically)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: wizards/com

2020-03-28 Thread Julien Nabet (via logerrit)
 wizards/com/sun/star/wizards/table/FieldFormatter.java |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 70adbc53e88e5b99032d63065410716c54b4f96f
Author: Julien Nabet 
AuthorDate: Fri Mar 27 22:28:28 2020 +0100
Commit: Julien Nabet 
CommitDate: Sat Mar 28 08:25:13 2020 +0100

tdf#131576: fix "Field information" in table wizard, step 2

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

diff --git a/wizards/com/sun/star/wizards/table/FieldFormatter.java 
b/wizards/com/sun/star/wizards/table/FieldFormatter.java
index db401104a094..c3c38e7e2dae 100644
--- a/wizards/com/sun/star/wizards/table/FieldFormatter.java
+++ b/wizards/com/sun/star/wizards/table/FieldFormatter.java
@@ -73,7 +73,7 @@ public class FieldFormatter implements XItemListener
 },
 new Object[]
 {
-UIConsts.INTEGERS[8], sFieldNames, 91, 27, 
IFieldFormatStep, Short.valueOf(curtabindex++), 90
+UIConsts.INTEGERS[8], sFieldNames, 91, 27, 
IFieldFormatStep, Short.valueOf(curtabindex++), 67
 });
 
 try
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-03-28 Thread Rizal Muttaqin (via logerrit)
 icon-themes/breeze/cmd/32/behindobject.png   |binary
 icon-themes/breeze/cmd/32/objectforwardone.png   |binary
 icon-themes/breeze/cmd/32/setobjecttobackground.png  |binary
 icon-themes/breeze/cmd/32/setobjecttoforeground.png  |binary
 icon-themes/breeze/cmd/lc_behindobject.png   |binary
 icon-themes/breeze/cmd/lc_objectforwardone.png   |binary
 icon-themes/breeze/cmd/lc_setobjecttobackground.png  |binary
 icon-themes/breeze/cmd/lc_setobjecttoforeground.png  |binary
 icon-themes/breeze/cmd/sc_beforeobject.png   |binary
 icon-themes/breeze/cmd/sc_behindobject.png   |binary
 icon-themes/breeze/cmd/sc_objectforwardone.png   |binary
 icon-themes/breeze/cmd/sc_setobjecttobackground.png  |binary
 icon-themes/breeze/cmd/sc_setobjecttoforeground.png  |binary
 icon-themes/breeze/links.txt |7 +--
 icon-themes/breeze_dark/cmd/32/behindobject.png  |binary
 icon-themes/breeze_dark/cmd/32/objectforwardone.png  |binary
 icon-themes/breeze_dark/cmd/32/setobjecttobackground.png |binary
 icon-themes/breeze_dark/cmd/32/setobjecttoforeground.png |binary
 icon-themes/breeze_dark/cmd/lc_behindobject.png  |binary
 icon-themes/breeze_dark/cmd/lc_objectforwardone.png  |binary
 icon-themes/breeze_dark/cmd/lc_setobjecttobackground.png |binary
 icon-themes/breeze_dark/cmd/lc_setobjecttoforeground.png |binary
 icon-themes/breeze_dark/cmd/sc_beforeobject.png  |binary
 icon-themes/breeze_dark/cmd/sc_behindobject.png  |binary
 icon-themes/breeze_dark/cmd/sc_objectforwardone.png  |binary
 icon-themes/breeze_dark/cmd/sc_setobjecttobackground.png |binary
 icon-themes/breeze_dark/cmd/sc_setobjecttoforeground.png |binary
 icon-themes/breeze_dark/links.txt|7 +--
 icon-themes/breeze_dark_svg/cmd/32/behindobject.svg  |2 +-
 icon-themes/breeze_dark_svg/cmd/32/objectforwardone.svg  |2 +-
 icon-themes/breeze_dark_svg/cmd/32/setobjecttobackground.svg |1 +
 icon-themes/breeze_dark_svg/cmd/32/setobjecttoforeground.svg |1 +
 icon-themes/breeze_dark_svg/cmd/lc_behindobject.svg  |2 +-
 icon-themes/breeze_dark_svg/cmd/lc_objectforwardone.svg  |2 +-
 icon-themes/breeze_dark_svg/cmd/lc_setobjecttobackground.svg |1 +
 icon-themes/breeze_dark_svg/cmd/lc_setobjecttoforeground.svg |1 +
 icon-themes/breeze_dark_svg/cmd/sc_beforeobject.svg  |3 ++-
 icon-themes/breeze_dark_svg/cmd/sc_behindobject.svg  |3 ++-
 icon-themes/breeze_dark_svg/cmd/sc_objectforwardone.svg  |3 ++-
 icon-themes/breeze_dark_svg/cmd/sc_setobjecttobackground.svg |3 +++
 icon-themes/breeze_dark_svg/cmd/sc_setobjecttoforeground.svg |3 +++
 icon-themes/breeze_svg/cmd/32/behindobject.svg   |2 +-
 icon-themes/breeze_svg/cmd/32/objectforwardone.svg   |2 +-
 icon-themes/breeze_svg/cmd/32/setobjecttobackground.svg  |1 +
 icon-themes/breeze_svg/cmd/32/setobjecttoforeground.svg  |1 +
 icon-themes/breeze_svg/cmd/lc_behindobject.svg   |2 +-
 icon-themes/breeze_svg/cmd/lc_objectforwardone.svg   |2 +-
 icon-themes/breeze_svg/cmd/lc_setobjecttobackground.svg  |1 +
 icon-themes/breeze_svg/cmd/lc_setobjecttoforeground.svg  |1 +
 icon-themes/breeze_svg/cmd/sc_beforeobject.svg   |3 ++-
 icon-themes/breeze_svg/cmd/sc_behindobject.svg   |3 ++-
 icon-themes/breeze_svg/cmd/sc_objectforwardone.svg   |3 ++-
 icon-themes/breeze_svg/cmd/sc_setobjecttobackground.svg  |3 +++
 icon-themes/breeze_svg/cmd/sc_setobjecttoforeground.svg  |3 +++
 icon-themes/colibre/cmd/32/setobjecttobackground.png |binary
 icon-themes/colibre/cmd/32/setobjecttoforeground.png |binary
 icon-themes/colibre/cmd/lc_setobjecttobackground.png |binary
 icon-themes/colibre/cmd/lc_setobjecttoforeground.png |binary
 icon-themes/colibre/cmd/sc_setobjecttobackground.png |binary
 icon-themes/colibre/cmd/sc_setobjecttoforeground.png |binary
 icon-themes/colibre/links.txt|6 --
 icon-themes/colibre_svg/cmd/32/setobjecttobackground.svg |1 +
 icon-themes/colibre_svg/cmd/32/setobjecttoforeground.svg |1 +
 icon-themes/colibre_svg/cmd/lc_setobjecttobackground.svg |1 +
 icon-themes/colibre_svg/cmd/lc_setobjecttoforeground.svg |1 +
 icon-themes/colibre_svg/cmd/sc_setobjecttobackground.svg |1 +
 icon-themes/colibre_svg/cmd/sc_setobjecttoforeground.svg |1 +
 67 files changed, 48 insertions(+), 32 deletions(-)

New commits:
commit 96f41e79ad505239a5cd4c7991af767796f77672
Author: Rizal Muttaqin 
AuthorDate: Sat Mar 28 14:28:05 2020 +0700
Commit: Rizal Muttaqin 
CommitDate: 

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

2020-03-28 Thread Tamás Zolnai (via logerrit)
 sw/source/uibase/lingu/olmenu.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 190e783379a00b1ba82d4a48e95e47449ce2
Author: Tamás Zolnai 
AuthorDate: Fri Mar 27 13:58:52 2020 +0100
Commit: Tamás Zolnai 
CommitDate: Sat Mar 28 12:40:59 2020 +0100

sw lok: add uno command for submenus in Spellchecking popup.

Change-Id: I1c7591379ecbce0099ed7d969e5dc83831e322b6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91227
Tested-by: Jenkins
Reviewed-by: Tamás Zolnai 

diff --git a/sw/source/uibase/lingu/olmenu.cxx 
b/sw/source/uibase/lingu/olmenu.cxx
index 8098a6a4c7fd..813cfae970af 100644
--- a/sw/source/uibase/lingu/olmenu.cxx
+++ b/sw/source/uibase/lingu/olmenu.cxx
@@ -595,6 +595,7 @@ void SwSpellPopup::InitItemCommands(const 
css::uno::Sequence< OUString >& aSugge
 }
 
 PopupMenu *pMenu = m_xPopupMenu->GetPopupMenu(m_nLangSelectionMenuId);
+m_xPopupMenu->SetItemCommand(m_nLangSelectionMenuId, 
".uno:SetSelectionLanguageMenu");
 if(pMenu)
 {
 for (const auto& item : m_aLangTable_Text)
@@ -609,6 +610,7 @@ void SwSpellPopup::InitItemCommands(const 
css::uno::Sequence< OUString >& aSugge
 }
 
 pMenu = m_xPopupMenu->GetPopupMenu(m_nLangParaMenuId);
+m_xPopupMenu->SetItemCommand(m_nLangParaMenuId, 
".uno:SetParagraphLanguageMenu");
 if(pMenu)
 {
 for (const auto& item : m_aLangTable_Paragraph)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


cppunit

2020-03-28 Thread David Wiseman
Hi,
   As a developer, if make a contribution to the cppunit project, is it just 
required that it builds, or are there tests that I should run.  And I guess I 
would contribute to the test suite also.   Can you tell me if there is a review 
procedure for contributions?

Thanks,
David
Please see our Privacy Policy (https://www.iee.lu/en/privacy-policy) to learn 
how we handle personal data. This e-mail may contain trade secrets or 
privileged, undisclosed or otherwise confidential information. If you are not 
the intended recipient and have received this e-mail in error, you are hereby 
notified that any review, copying or distribution of it is strictly prohibited. 
Please inform us immediately and destroy the original transmittal from your 
system. Thank you for your co-operation.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


The 2nd Notice

2020-03-28 Thread thetrust
After several failed attempts, we are reaching again you as regards the estate 
of our deceased client who made you one of the beneficiaries of his estate. Do 
get back to me at your earliest convenience. The Trustees
  
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Subject: Oleg Shchelykalnov license statement

2020-03-28 Thread Oleg Shchelykalnov
   All of my past & future contributions to LibreOffice may be
   licensed under the MPLv2/LGPLv3+ dual license.

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: compilerplugins/clang

2020-03-28 Thread Julien Nabet (via logerrit)
 compilerplugins/clang/test/unnecessaryparen.cxx|2 +-
 compilerplugins/clang/test/unusedenumconstants.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b3822741430bf8ebea23b7457d19db00756ed2db
Author: Julien Nabet 
AuthorDate: Sat Mar 28 18:15:28 2020 +0100
Commit: Noel Grandin 
CommitDate: Sat Mar 28 20:29:45 2020 +0100

Fix is_typed_flags for BrowseMode (compilerplugins)

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

diff --git a/compilerplugins/clang/test/unnecessaryparen.cxx 
b/compilerplugins/clang/test/unnecessaryparen.cxx
index c33876ddae61..f932cd312558 100644
--- a/compilerplugins/clang/test/unnecessaryparen.cxx
+++ b/compilerplugins/clang/test/unnecessaryparen.cxx
@@ -25,7 +25,7 @@ enum class BrowseMode
 Modules = 0x01,
 Top = 0x02,
 Bottom = 0x04,
-Left = 0x04,
+Left = 0x08,
 };
 namespace o3tl
 {
diff --git a/compilerplugins/clang/test/unusedenumconstants.cxx 
b/compilerplugins/clang/test/unusedenumconstants.cxx
index 9f16c981acde..189a037670b8 100644
--- a/compilerplugins/clang/test/unusedenumconstants.cxx
+++ b/compilerplugins/clang/test/unusedenumconstants.cxx
@@ -28,7 +28,7 @@ enum class BrowseMode
 Modules = 0x01, // expected-error {{read Modules 
[loplugin:unusedenumconstants]}}
 Top = 0x02, // expected-error {{write Top [loplugin:unusedenumconstants]}}
 Bottom = 0x04, // expected-error {{read Bottom 
[loplugin:unusedenumconstants]}}
-Left = 0x04, // expected-error {{write Left 
[loplugin:unusedenumconstants]}}
+Left = 0x08, // expected-error {{write Left 
[loplugin:unusedenumconstants]}}
 };
 namespace o3tl
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-03-28 Thread Julien Nabet (via logerrit)
 dbaccess/source/ui/inc/sqlmessage.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1c9ced04189c9d23ffea05d5570960b54b05ef28
Author: Julien Nabet 
AuthorDate: Sat Mar 28 18:46:14 2020 +0100
Commit: Noel Grandin 
CommitDate: Sat Mar 28 20:30:16 2020 +0100

Fix is_typed_flags for MessBoxStyle (dbaccess)

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

diff --git a/dbaccess/source/ui/inc/sqlmessage.hxx 
b/dbaccess/source/ui/inc/sqlmessage.hxx
index 2aaa4bd5a18e..434250b39e41 100644
--- a/dbaccess/source/ui/inc/sqlmessage.hxx
+++ b/dbaccess/source/ui/inc/sqlmessage.hxx
@@ -63,7 +63,7 @@ enum class MessBoxStyle {
 }
 
 namespace o3tl {
-template<> struct typed_flags : 
is_typed_flags {};
+template<> struct typed_flags : 
is_typed_flags {};
 }
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-03-28 Thread Oleg Shchelykalnov (via logerrit)
 sw/source/uibase/dbui/dbmgr.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a039725510f13c77591106b02f32f5899c37c007
Author: Oleg Shchelykalnov 
AuthorDate: Sat Mar 28 15:48:18 2020 +0300
Commit: Noel Grandin 
CommitDate: Sat Mar 28 20:29:04 2020 +0100

tdf#131618 MailMerge: Don't require DataSourceName if ResultSet provided

Allows to use ResultSet instead of DataSourceName and DataCommand
options.

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

diff --git a/sw/source/uibase/dbui/dbmgr.cxx b/sw/source/uibase/dbui/dbmgr.cxx
index 0fd0ffc46cf5..a51cb6366753 100644
--- a/sw/source/uibase/dbui/dbmgr.cxx
+++ b/sw/source/uibase/dbui/dbmgr.cxx
@@ -466,7 +466,7 @@ bool SwDBManager::Merge( const SwMergeDescriptor& 
rMergeDesc )
 if ( 
rMergeDesc.rDescriptor.has(svx::DataAccessDescriptorProperty::Connection) )
 rMergeDesc.rDescriptor[svx::DataAccessDescriptorProperty::Connection] 
>>= xConnection;
 
-if(aData.sDataSource.isEmpty() || aData.sCommand.isEmpty() || 
!xResSet.is())
+if((aData.sDataSource.isEmpty() || aData.sCommand.isEmpty()) && 
!xResSet.is())
 {
 return false;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-03-28 Thread Justin Luth (via logerrit)
 sw/qa/extras/ww8export/data/tdf80635_marginRightRTL.doc |binary
 sw/qa/extras/ww8export/data/tdf80635_pageRightRTL.doc   |binary
 sw/qa/extras/ww8export/ww8export2.cxx   |   22 
 sw/source/filter/ww8/ww8par2.cxx|8 +
 4 files changed, 29 insertions(+), 1 deletion(-)

New commits:
commit cd868678583fa92833c37a63089131ba905dd3a6
Author: Justin Luth 
AuthorDate: Fri Mar 27 08:32:05 2020 +0300
Commit: Justin Luth 
CommitDate: Sat Mar 28 20:17:19 2020 +0100

tdf#80635 ww8import:2 take float table RIGHT to inlined table

Since SW has problems with floating tables, any unnecessarily
floated tables are converted to inline. However, the
positioning of the tables is mostly lost. So the choice is
either to refuse to inline a strangely positioned table
or else to transfer the positioning onto the inlined table.

Transferring is easier said than done. But for right-aligned
tables, hopefully it is easy to copy that without causing trouble.

I didn't find any real-world examples in existing unit tests
or bug reports, so I made up my own complicated one
using both right margin and BIDI.

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

diff --git a/sw/qa/extras/ww8export/data/tdf80635_marginRightRTL.doc 
b/sw/qa/extras/ww8export/data/tdf80635_marginRightRTL.doc
new file mode 100644
index ..6e509a1907e5
Binary files /dev/null and 
b/sw/qa/extras/ww8export/data/tdf80635_marginRightRTL.doc differ
diff --git a/sw/qa/extras/ww8export/data/tdf80635_pageRightRTL.doc 
b/sw/qa/extras/ww8export/data/tdf80635_pageRightRTL.doc
new file mode 100644
index ..71f9adf4a8b5
Binary files /dev/null and 
b/sw/qa/extras/ww8export/data/tdf80635_pageRightRTL.doc differ
diff --git a/sw/qa/extras/ww8export/ww8export2.cxx 
b/sw/qa/extras/ww8export/ww8export2.cxx
index b477b03bbeaa..4672b750baa3 100644
--- a/sw/qa/extras/ww8export/ww8export2.cxx
+++ b/sw/qa/extras/ww8export/ww8export2.cxx
@@ -252,6 +252,28 @@ DECLARE_WW8EXPORT_TEST(testTdf116570_exportFootnote, 
"tdf116570_exportFootnote.o
 CPPUNIT_ASSERT_EQUAL_MESSAGE( "Number of paragraphs in first footnote", 2, 
getParagraphs(xFootnoteText) );
 }
 
+DECLARE_WW8EXPORT_TEST(testTdf80635_pageRightRTL, "tdf80635_pageRightRTL.doc")
+{
+// tdf#80635 - transfer the float orientation to the table.
+uno::Reference xTextTablesSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xTables(xTextTablesSupplier->getTextTables(), uno::UNO_QUERY);
+uno::Reference xTable(xTables->getByIndex(0), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Horizontal Orientation", 
text::HoriOrientation::LEFT_AND_WIDTH, getProperty(xTable, 
"HoriOrient"));
+//CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Table Indent", long(3500), 
getProperty(xTable, "LeftMargin"), 100);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Did you fix me? Text probably should wrap 
here", 2, getPages() );
+// If so, replace test with the table set to a greater preferred width so 
that the text shouldn't wrap
+}
+
+DECLARE_WW8EXPORT_TEST(testTdf80635_marginRTL, "tdf80635_marginRightRTL.doc")
+{
+// tdf#80635 - transfer the float orientation to the table.
+uno::Reference xTextTablesSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xTables(xTextTablesSupplier->getTextTables(), uno::UNO_QUERY);
+uno::Reference xTable(xTables->getByIndex(0), 
uno::UNO_QUERY);
+if ( !mbExported )
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Horizontal Orientation", 
text::HoriOrientation::RIGHT, getProperty(xTable, "HoriOrient"));
+}
+
 DECLARE_WW8EXPORT_TEST(testTdf107773, "tdf107773.doc")
 {
 uno::Reference xDrawPageSupplier(mxComponent, 
uno::UNO_QUERY);
diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx
index 3b1615793482..775dae384f6d 100644
--- a/sw/source/filter/ww8/ww8par2.cxx
+++ b/sw/source/filter/ww8/ww8par2.cxx
@@ -2428,7 +2428,13 @@ void WW8TabDesc::CreateSwTable()
 if ( m_pIo->m_xSFlyPara && !m_pIo->m_xSFlyPara->pFlyFormat )
 {
 // Get the table orientation from the fly
-if ( m_pIo->m_xSFlyPara->eHAlign == text::HoriOrientation::CENTER )
+// Do we also need to check 
m_pIo->m_xSFlyPara->bToggelPos/IsPosToggle()? [Probably not - layout-only 
concern]
+const bool bAdjustMargin = m_pIo->m_xSFlyPara->eHRel == 
text::RelOrientation::PAGE_FRAME || m_pIo->m_xSFlyPara->nXPos;
+const bool bIsInsideMargin = m_bIsBiDi ? m_pIo->m_xSFlyPara->eHAlign 
== text::HoriOrientation::RIGHT
+   : m_pIo->m_xSFlyPara->eHAlign 
== text::HoriOrientation::LEFT;
+if ( bIsInsideMargin && bAdjustMargin )
+m_eOri = text::HoriOrientation::LEFT_AND_WIDTH;
+else if ( m_pIo->m_xSFlyPara->eHAlign != text::HoriOrientation::NONE )
  

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

2020-03-28 Thread Julien Nabet (via logerrit)
 xmloff/source/forms/formattributes.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fffe585ae397ef3e1c850d648c2d153cb3a6e2e8
Author: Julien Nabet 
AuthorDate: Sat Mar 28 15:50:30 2020 +0100
Commit: Noel Grandin 
CommitDate: Sat Mar 28 17:24:51 2020 +0100

Fix is_typed_flags for SCAFlags

Since:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=0c2d51e0daf2ce5e18af915ec40ec3196db8ab88
author  Noel Grandin  2016-05-12 14:32:30 +0200
committer   Noel Grandin  2016-05-12 14:33:35 +0200
commit  0c2d51e0daf2ce5e18af915ec40ec3196db8ab88 (patch)
tree720d61287f718a66747e31a156b0c98eb2d3e24e
parent  aba06d6f8d69632559ca9a74320fcd048855a3a3 (diff)
Convert SCA flags to scoped enum

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

diff --git a/xmloff/source/forms/formattributes.hxx 
b/xmloff/source/forms/formattributes.hxx
index 464cffa83f77..0ffef7c0189b 100644
--- a/xmloff/source/forms/formattributes.hxx
+++ b/xmloff/source/forms/formattributes.hxx
@@ -131,7 +131,7 @@ enum class SCAFlags {
 ImagePosition = 0x08
 };
 namespace o3tl {
-template<> struct typed_flags : is_typed_flags {};
+template<> struct typed_flags : is_typed_flags {};
 }
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-03-28 Thread Tomaž Vajngerl (via logerrit)
 include/basegfx/matrix/Matrix.hxx |  126 ++
 svx/source/svdraw/svdpdf.hxx  |  106 ---
 2 files changed, 128 insertions(+), 104 deletions(-)

New commits:
commit befd6880873cc3f63a0566b76246d2ae54f8a3c5
Author: Tomaž Vajngerl 
AuthorDate: Sat Mar 28 18:00:22 2020 +0100
Commit: Tomaž Vajngerl 
CommitDate: Sat Mar 28 19:15:03 2020 +0100

svdpdf: move Matrix to basegfx just to get it separated

Change-Id: I9d887dc7a2836b90151ef352b47a9b9ad3b6f12b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91280
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/include/basegfx/matrix/Matrix.hxx 
b/include/basegfx/matrix/Matrix.hxx
new file mode 100644
index ..b742d8cdf293
--- /dev/null
+++ b/include/basegfx/matrix/Matrix.hxx
@@ -0,0 +1,126 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#pragma once
+
+class Matrix
+{
+public:
+Matrix()
+: Matrix(1, 0, 0, 1, 0, 0)
+{
+}
+
+Matrix(const Matrix& other)
+: Matrix(other.ma, other.mb, other.mc, other.md, other.me, other.mf)
+{
+}
+
+Matrix(double da, double db, double dc, double dd, double de, double df)
+: ma(da)
+, mb(db)
+, mc(dc)
+, md(dd)
+, me(de)
+, mf(df)
+{
+}
+
+const Matrix& operator=(const Matrix& other)
+{
+ma = other.ma;
+mb = other.mb;
+mc = other.mc;
+md = other.md;
+me = other.me;
+mf = other.mf;
+return *this;
+}
+
+double a() const { return ma; }
+double b() const { return mb; }
+double c() const { return mc; }
+double d() const { return md; }
+double e() const { return me; }
+double f() const { return mf; }
+
+/// Multiply this * other.
+void Concatinate(const Matrix& other)
+{
+ma = ma * other.ma + mb * other.mc;
+mb = ma * other.mb + mb * other.md;
+mc = mc * other.ma + md * other.mc;
+md = mc * other.mb + md * other.md;
+me = me * other.ma + mf * other.mc + other.me;
+mf = me * other.mb + mf * other.md + other.mf;
+}
+
+/// Transform the point (x, y) by this Matrix.
+template  void Transform(T& x, T& y)
+{
+x = ma * x + mc * y + me;
+y = mb * x + md * y + mf;
+}
+
+/// Transform the rectangle (left, right, top, bottom) by this Matrix.
+template  void Transform(T& left, T& right, T& top, T& bottom)
+{
+T leftTopX = left;
+T leftTopY = top;
+Transform(leftTopX, leftTopY);
+
+T leftBottomX = left;
+T leftBottomY = bottom;
+Transform(leftBottomX, leftBottomY);
+
+T rightTopX = right;
+T rightTopY = top;
+Transform(rightTopX, rightTopY);
+
+T rightBottomX = right;
+T rightBottomY = bottom;
+Transform(rightBottomX, rightBottomY);
+
+left = std::min(leftTopX, leftBottomX);
+right = std::max(rightTopX, rightBottomX);
+
+if (top > bottom)
+top = std::max(leftTopY, rightTopY);
+else
+top = std::min(leftTopY, rightTopY);
+
+if (top > bottom)
+bottom = std::max(leftBottomY, rightBottomY);
+else
+bottom = std::min(leftBottomY, rightBottomY);
+}
+
+std::string toString() const
+{
+std::ostringstream oss;
+oss << '(' << ma << ", " << mb << ", " << mc << ", " << md << ", " << 
me << ", " << mf
+<< ')';
+return oss.str();
+}
+
+private:
+double ma, mb, mc, md, me, mf;
+};
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svx/source/svdraw/svdpdf.hxx b/svx/source/svdraw/svdpdf.hxx
index 1648eeb3cdd1..46e63a7783ba 100644
--- a/svx/source/svdraw/svdpdf.hxx
+++ b/svx/source/svdraw/svdpdf.hxx
@@ -34,6 +34,8 @@
 #include 
 #include 
 
+#include 
+
 // Prevent workdir/UnpackedTarball/pdfium/public/fpdfview.h from including 
windows.h in a way that
 // it will define e.g. Yield as a macro:
 #include 
@@ -52,110 +54,6 @@ class 

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

2020-03-28 Thread Jim Raykowski (via logerrit)
 sw/uiconfig/swriter/ui/navigatorpanel.ui |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 179bcf810809efb8ec1b4658e5f30d3a75513315
Author: Jim Raykowski 
AuthorDate: Fri Mar 27 16:50:01 2020 -0800
Commit: Jim Raykowski 
CommitDate: Sun Mar 29 05:57:52 2020 +0200

Enable Writer Navigator content tree tooltips for Gtk3

Change-Id: I7a8b1e9007b7913c05205c6f01b43fc8d60ae07d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91269
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/sw/uiconfig/swriter/ui/navigatorpanel.ui 
b/sw/uiconfig/swriter/ui/navigatorpanel.ui
index caac5279152b..1f0b21543508 100644
--- a/sw/uiconfig/swriter/ui/navigatorpanel.ui
+++ b/sw/uiconfig/swriter/ui/navigatorpanel.ui
@@ -601,6 +601,7 @@
 True
 True
 True
+True
 True
 True
 liststore1
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Ahad Shabbir License Statement

2020-03-28 Thread Ahad Shabbir
All of my past & future contributions to LibreOffice may be
licensed under the MPLv2/LGPLv3+ dual license.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: cppunit

2020-03-28 Thread Markus Mohrhard
Hey David,


On Sun, Mar 29, 2020 at 8:29 AM David Wiseman  wrote:

> Hi,
>
>As a developer, if make a contribution to the cppunit project, is it
> just required that it builds, or are there tests that I should run.  And I
> guess I would contribute to the test suite also.   Can you tell me if there
> is a review procedure for contributions?
>


make check needs to pass.

The code will need to be pushed to gerrit, our reviewing platform, where it
will be reviewed and finally pushed.

Cheers,
Markus

>
>
> Thanks,
>
> David
> Please see our Privacy Policy (https://www.iee.lu/en/privacy-policy) to
> learn how we handle personal data. This e-mail may contain trade secrets or
> privileged, undisclosed or otherwise confidential information. If you are
> not the intended recipient and have received this e-mail in error, you are
> hereby notified that any review, copying or distribution of it is strictly
> prohibited. Please inform us immediately and destroy the original
> transmittal from your system. Thank you for your co-operation.
> ___
> LibreOffice mailing list
> LibreOffice@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/libreoffice
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_dark_svg icon-themes/breeze_svg icon-themes/colibre icon-themes/colibre_svg

2020-03-28 Thread Rizal Muttaqin (via logerrit)
 icon-themes/breeze/cmd/32/behindobject.png   |binary
 icon-themes/breeze/cmd/32/objectforwardone.png   |binary
 icon-themes/breeze/cmd/32/setobjecttobackground.png  |binary
 icon-themes/breeze/cmd/32/setobjecttoforeground.png  |binary
 icon-themes/breeze/cmd/lc_behindobject.png   |binary
 icon-themes/breeze/cmd/lc_objectforwardone.png   |binary
 icon-themes/breeze/cmd/lc_setobjecttobackground.png  |binary
 icon-themes/breeze/cmd/lc_setobjecttoforeground.png  |binary
 icon-themes/breeze/cmd/sc_beforeobject.png   |binary
 icon-themes/breeze/cmd/sc_behindobject.png   |binary
 icon-themes/breeze/cmd/sc_objectforwardone.png   |binary
 icon-themes/breeze/cmd/sc_setobjecttobackground.png  |binary
 icon-themes/breeze/cmd/sc_setobjecttoforeground.png  |binary
 icon-themes/breeze/links.txt |7 +--
 icon-themes/breeze_dark/cmd/32/behindobject.png  |binary
 icon-themes/breeze_dark/cmd/32/objectforwardone.png  |binary
 icon-themes/breeze_dark/cmd/32/setobjecttobackground.png |binary
 icon-themes/breeze_dark/cmd/32/setobjecttoforeground.png |binary
 icon-themes/breeze_dark/cmd/lc_behindobject.png  |binary
 icon-themes/breeze_dark/cmd/lc_objectforwardone.png  |binary
 icon-themes/breeze_dark/cmd/lc_setobjecttobackground.png |binary
 icon-themes/breeze_dark/cmd/lc_setobjecttoforeground.png |binary
 icon-themes/breeze_dark/cmd/sc_beforeobject.png  |binary
 icon-themes/breeze_dark/cmd/sc_behindobject.png  |binary
 icon-themes/breeze_dark/cmd/sc_objectforwardone.png  |binary
 icon-themes/breeze_dark/cmd/sc_setobjecttobackground.png |binary
 icon-themes/breeze_dark/cmd/sc_setobjecttoforeground.png |binary
 icon-themes/breeze_dark/links.txt|7 +--
 icon-themes/breeze_dark_svg/cmd/32/behindobject.svg  |2 +-
 icon-themes/breeze_dark_svg/cmd/32/objectforwardone.svg  |2 +-
 icon-themes/breeze_dark_svg/cmd/32/setobjecttobackground.svg |1 +
 icon-themes/breeze_dark_svg/cmd/32/setobjecttoforeground.svg |1 +
 icon-themes/breeze_dark_svg/cmd/lc_behindobject.svg  |2 +-
 icon-themes/breeze_dark_svg/cmd/lc_objectforwardone.svg  |2 +-
 icon-themes/breeze_dark_svg/cmd/lc_setobjecttobackground.svg |1 +
 icon-themes/breeze_dark_svg/cmd/lc_setobjecttoforeground.svg |1 +
 icon-themes/breeze_dark_svg/cmd/sc_beforeobject.svg  |3 ++-
 icon-themes/breeze_dark_svg/cmd/sc_behindobject.svg  |3 ++-
 icon-themes/breeze_dark_svg/cmd/sc_objectforwardone.svg  |3 ++-
 icon-themes/breeze_dark_svg/cmd/sc_setobjecttobackground.svg |3 +++
 icon-themes/breeze_dark_svg/cmd/sc_setobjecttoforeground.svg |3 +++
 icon-themes/breeze_svg/cmd/32/behindobject.svg   |2 +-
 icon-themes/breeze_svg/cmd/32/objectforwardone.svg   |2 +-
 icon-themes/breeze_svg/cmd/32/setobjecttobackground.svg  |1 +
 icon-themes/breeze_svg/cmd/32/setobjecttoforeground.svg  |1 +
 icon-themes/breeze_svg/cmd/lc_behindobject.svg   |2 +-
 icon-themes/breeze_svg/cmd/lc_objectforwardone.svg   |2 +-
 icon-themes/breeze_svg/cmd/lc_setobjecttobackground.svg  |1 +
 icon-themes/breeze_svg/cmd/lc_setobjecttoforeground.svg  |1 +
 icon-themes/breeze_svg/cmd/sc_beforeobject.svg   |3 ++-
 icon-themes/breeze_svg/cmd/sc_behindobject.svg   |3 ++-
 icon-themes/breeze_svg/cmd/sc_objectforwardone.svg   |3 ++-
 icon-themes/breeze_svg/cmd/sc_setobjecttobackground.svg  |3 +++
 icon-themes/breeze_svg/cmd/sc_setobjecttoforeground.svg  |3 +++
 icon-themes/colibre/cmd/32/setobjecttobackground.png |binary
 icon-themes/colibre/cmd/32/setobjecttoforeground.png |binary
 icon-themes/colibre/cmd/lc_setobjecttobackground.png |binary
 icon-themes/colibre/cmd/lc_setobjecttoforeground.png |binary
 icon-themes/colibre/cmd/sc_setobjecttobackground.png |binary
 icon-themes/colibre/cmd/sc_setobjecttoforeground.png |binary
 icon-themes/colibre/links.txt|6 --
 icon-themes/colibre_svg/cmd/32/setobjecttobackground.svg |1 +
 icon-themes/colibre_svg/cmd/32/setobjecttoforeground.svg |1 +
 icon-themes/colibre_svg/cmd/lc_setobjecttobackground.svg |1 +
 icon-themes/colibre_svg/cmd/lc_setobjecttoforeground.svg |1 +
 icon-themes/colibre_svg/cmd/sc_setobjecttobackground.svg |1 +
 icon-themes/colibre_svg/cmd/sc_setobjecttoforeground.svg |1 +
 67 files changed, 48 insertions(+), 32 deletions(-)

New commits:
commit 4183a7f7423998d5497c67752624731c2fb00346
Author: Rizal Muttaqin 
AuthorDate: Sat Mar 28 14:28:05 2020 +0700
Commit: Adolfo Jayme Barrientos 

[Libreoffice-bugs] [Bug 117273] Pasting HTML with inline styles does not lead to character formatting in Impress/Draw

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117273

Buovjaga  changed:

   What|Removed |Added

Version|6.4.2.2 release |3.6.7.2 release

--- Comment #4 from Buovjaga  ---
Correcting earliest version

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


[Libreoffice-bugs] [Bug 98902] Right clicking on selected text unselects it if the cursor is on a misspelled word

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98902

Buovjaga  changed:

   What|Removed |Added

Version|6.4.2.2 release |5.1.1.3 release

--- Comment #7 from Buovjaga  ---
Correcting earliest version

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


[Libreoffice-bugs] [Bug 113672] Unnecessarily floated table HORIZONTAL position not correct for DOCX when converted to inline table (comment 5)

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113672

Justin L  changed:

   What|Removed |Added

   Keywords|filter:doc  |
Summary|Wrap Around Table Position  |Unnecessarily floated table
   |Not Correct for DOC and |HORIZONTAL position not
   |DOCX When Table Border  |correct for DOCX when
   |Outside of Margins  |converted to inline table
   ||(comment 5)
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=61
   ||594

--- Comment #5 from Justin L  ---
Let's focus this bug report on DOCX.
The doc portion should be fixed in 7.0 by patches for bug 80635.

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


[Libreoffice-bugs] [Bug 131323] Libreoffice pdf conversion fails in FIPS mode

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131323

Timur  changed:

   What|Removed |Added

 Ever confirmed|0   |1
URL||https://www.howtogeek.com/2
   ||45859/why-you-shouldnt-enab
   ||le-fips-compliant-encryptio
   ||n-on-windows/
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Timur  ---
Please explain:
1. Does GUI File-Export to PDF work? 
2. Does your sample.xls use some security/cryptography? If so, please attach.

Note for testers: To set FIPS in Windows, use the Windows Registry, go to
HKLM\System\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy\Enabled and set
Enabled to 1.

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


[Libreoffice-bugs] [Bug 131320] Document Recovery window opens behind all other windows.

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131320

Timur  changed:

   What|Removed |Added

   Severity|normal  |trivial
   Priority|medium  |lowest
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Timur  ---
I tested in Windows but couldn't reproduce. 
Even if other file is open, recovery comes first. 
I guess, unless clicked around - which would be WontFix.
Please explain and test again.

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


[Libreoffice-bugs] [Bug 131639] Font size changing when I save the document to doc ('97-2003)

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131639

Julien Nabet  changed:

   What|Removed |Added

Summary|Fon size changing when I|Font size changing when I
   |save the document to doc|save the document to doc
   |('97-2003)  |('97-2003)

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


[Libreoffice-bugs] [Bug 130778] Branding for 7.0

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130778

--- Comment #10 from Adolfo Jayme  ---
Comment on attachment 158353
  --> https://bugs.documentfoundation.org/attachment.cgi?id=158353
LibreOffice7 Splash, About, Mac OS

This attachment 158353 doesn’t present a high-quality logo IMO.

Also, it violates the branding guidelines (there should be no numbers inside
the Document icon). And citing myself for the thousandth time:
https://redmine.documentfoundation.org/issues/2905#change-16960

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


[Libreoffice-ux-advise] [Bug 130778] Branding for 7.0

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130778

--- Comment #10 from Adolfo Jayme  ---
Comment on attachment 158353
  --> https://bugs.documentfoundation.org/attachment.cgi?id=158353
LibreOffice7 Splash, About, Mac OS

This attachment 158353 doesn’t present a high-quality logo IMO.

Also, it violates the branding guidelines (there should be no numbers inside
the Document icon). And citing myself for the thousandth time:
https://redmine.documentfoundation.org/issues/2905#change-16960

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


[Libreoffice-bugs] [Bug 129410] Corrupted spreadsheet, unable to open in Linux

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129410

Timur  changed:

   What|Removed |Added

   Priority|medium  |high
   Severity|normal  |major
Summary|Corrupted spreadsheet,  |Corrupted spreadsheet,
   |unable to open  |unable to open in Linux

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


[Libreoffice-bugs] [Bug 131636] Icons for To Background/To Foreground

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131636

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.0.0

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


[Libreoffice-bugs] [Bug 131636] Icons for To Background/To Foreground

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131636

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

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

Sukapura:Fix for tdf#131636: icons for to Background and to Foreground

It will be available in 7.0.0.

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

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

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


[Libreoffice-bugs] [Bug 131636] Icons for To Background/To Foreground

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131636

--- Comment #2 from Rizal Muttaqin  ---
@Andreas Kainz, do you have idea how Breeze version should look like?

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


[Libreoffice-bugs] [Bug 128803] Copy / pasting cell in Calc sometimes pastes as an image; failure in Mutter's integrated X11 clipboard manager; workaround: use Wayland session

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128803

--- Comment #18 from Timur  ---
(In reply to Timur from comment #9)
> This bug is marked All and reproduced also on Windows.

Shall we open a separate bug for Windows?

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


[Libreoffice-bugs] [Bug 94950] FILEOPEN: text line inside .doc file showed in wrong position

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94950

--- Comment #16 from Justin L  ---


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

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


[Libreoffice-bugs] [Bug 80717] FILEOPEN: DOC DOCX file has incorrect vertical position relative to 'page' of floating table

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80717

Justin L  changed:

   What|Removed |Added

 CC||npla...@gmail.com

--- Comment #19 from Justin L  ---
*** Bug 94950 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 61594] FILEOPEN:docx with multi-page floating table (workaround from MS Office: Table Properties - set Text Wrapping to None)

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61594

Justin L  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94955] FILEOPEN: image inside .doc file showed in wrong position

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94955

--- Comment #12 from Justin L  ---


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

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


[Libreoffice-bugs] [Bug 131639] New: Fon size changing when I save the document to doc ('97-2003)

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131639

Bug ID: 131639
   Summary: Fon size changing when I save the document to doc
('97-2003)
   Product: LibreOffice
   Version: 6.4.1.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: szellszab...@gmail.com

Description:
When I save my document (pictures and text one page only) it saves not corret
format. I set the fontsize to 9 and after reopening will be partly 9 and party
12 randomly.

Actual Results:
When I save my document (pictures and text one page only) it saves not corret
format. I set the fontsize to 9 and after reopening will be partly 9 and party
12 randomly.

Expected Results:
I want to save, and open what I saved, like normally.


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: hu
Module: TextDocument
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: no

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


[Libreoffice-bugs] [Bug 131638] New: Text cell prompting about incorect formula

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131638

Bug ID: 131638
   Summary: Text cell prompting about incorect formula
   Product: LibreOffice
   Version: 6.3.0.4 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafallauterb...@gmail.com

If you set cell to text type and than write -/[number](eg. -/2) , than it pops
up message "LibreOffice Calc found an error in the formula entered.
Do you want to accept the correction proposed below =/-2"

I discused this on forum and it might be incorrect behaviour.

I would not expect libbre office to interpret anything that is in text cell. It
should set cell to text that I just wrote, no matter what's in here.

I'm using version 6.3.0.4 and couldn't check it out if in newer version it is
already fixed.

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


[Libreoffice-bugs] [Bug 80635] FILEOPEN: DOC file floating table spacing (margin) not imported properly

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80635

Justin L  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |jl...@mail.com
   |desktop.org |

--- Comment #31 from Justin L  ---
The proposed patches should cover most, if not all, bugs reported here.
-https://gerrit.libreoffice.org/c/core/+/91188 tdf#80635 ww8import:1 take float
table CENTER to inlined table
fixes:
-GE Bilokin Nadia.doc from this bug



-gerrit.libreoffice.org/c/core/+/91272 tdf#80635 ww8import:2 take float table
RIGHT to inlined table
-gerrit.libreoffice.org/c/core/+/91273 tdf#80635 ww8import:3 take float table
orient to inlined table

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


[Libreoffice-bugs] [Bug 124525] FILEOPEN Calc doesn't open XLSX archive - opens if extracted and rezipped

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124525

--- Comment #9 from Timur  ---
Similar to bug 76115  opens if extracted and rezipped.
But there #The problem is that the zip has "\" instead of "/" as the
separators.# which may not be here.

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


[Libreoffice-bugs] [Bug 131638] Text cell prompting about incorect formula

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131638

rafallauterb...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |minor

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


[Libreoffice-bugs] [Bug 80717] FILEOPEN: DOC DOCX file has incorrect vertical position relative to 'page' of floating table

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80717

Justin L  changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #20 from Justin L  ---
*** Bug 94955 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 131638] Text cell prompting about incorect formula

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131638

--- Comment #2 from Mike Kaganski  ---
In fact, it pre-processes any formula (starting with +, -, or =). The prompt
appears on "invalid formulas", despite it's not going to store it as formula
eventually.

Cf.: "=///2" with "=2": in first case, it would try correct the input before
storing the result as string, while in the second case, it will store it as
string immediately.

A code pointer: see ScViewFunc::EnterData, which processes formula (see "bool
bFormula") before processing cell type (see "if (nType ==
SvNumFormatType::TEXT").

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


[Libreoffice-bugs] [Bug 131640] Allow overlap does not work when vertical position is "Bottom + Page text area"

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131640

--- Comment #1 from jose.ve...@urjc.es ---
Created attachment 159087
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159087=edit
Screenshot

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


[Libreoffice-bugs] [Bug 131640] New: Allow overlap does not work when vertical position is "Bottom + Page text area"

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131640

Bug ID: 131640
   Summary: Allow overlap does not work when vertical position is
"Bottom + Page text area"
   Product: LibreOffice
   Version: 6.4.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jose.ve...@urjc.es

Description:
Allow overlap does not work when vertical position is set to "Bottom" respect
to "Page text area".

This is a very common configuration because, in a formal text like a book,
figures must be at the bottom of the pages instead of in the middle of the
pages.

Steps to Reproduce:
1 - Create a text that fulfill two pages with the same paragraph.
2 - Insert two images, both anchored to the first paragraph (or to the first
letter of the first page).
3 - Set vertical position for both figures as "bottom" respect "page text area"
4 - For both figures, set "None" in Wrap settings and uncheck "Allow overlap"

Actual Results:
Result: The figures remain overlapped.

Expected Results:
Result: The figures does not overlap.


Reproducible: Always


User Profile Reset: No



Additional Info:
It does not work either with any warp configurations.
Also, It does not work with "top" and "Page text area".

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


[Libreoffice-bugs] [Bug 131636] Icons for To Background/To Foreground

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131636

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 131638] Text cell prompting about incorect formula

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131638

Mike Kaganski  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||er...@redhat.com
 Status|UNCONFIRMED |NEW

--- Comment #1 from Mike Kaganski  ---
Reproducible with Version: 6.4.2.2 (x64)
Build ID: 4e471d8c02c9c90f512f7f9ead8875b57fcb1ec3
CPU threads: 12; OS: Windows 10.0 Build 18363; UI render: default; VCL: win; 
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: CL

and with Version: 7.0.0.0.alpha0+ (x64)
Build ID: 5a94ac9eec4a63708262b2389aa2a434aa47112e
CPU threads: 12; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL:
win; 
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: CL

So setting Text format to the cell does not prevent interpreting formulas
starting with "-", as opposed to formulas starting with "=".

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


[Libreoffice-bugs] [Bug 73971] FILEOPEN: PPT file will not open if set password to modify (no problem with PPTX)

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73971

Timur  changed:

   What|Removed |Added

   Keywords||filter:ppt

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


[Libreoffice-bugs] [Bug 123604] How to fix QuickBooks error 6000?

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123604

kristren  changed:

   What|Removed |Added

URL||http://instant-yahoo-mail-c
   ||ustomer-service.over-blog.c
   ||om/yahoo-customer-support.h
   ||tml

--- Comment #1 from kristren  ---
[url= https://yahoo-helpcentral.com/]  yahoo helpline number [/url]

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


[Libreoffice-bugs] [Bug 131333] Cannot change data point icons in Calc's XY chart.

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131333

--- Comment #4 from Hans  ---
Bug is in the new release, 6.4.2.2, Mac OS X 10.11.6, too.
The older release, 6.3.5.2, does not have it.

Version: 6.4.2.2
Build ID: 4e471d8c02c9c90f512f7f9ead8875b57fcb1ec3
CPU threads: 2; OS: Mac OS X 10.11.6; UI render: GL; VCL: osx; 
Locale: de-DE (en.UTF-8); UI-Language: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 131333] Cannot change data point icons in Calc's XY chart.

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131333

--- Comment #7 from Hans  ---
Created attachment 159089
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159089=edit
v6.4.x.x, icon does not change

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


[Libreoffice-bugs] [Bug 131333] Cannot change data point icons in Calc's XY chart.

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131333

--- Comment #6 from Hans  ---
Created attachment 159088
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159088=edit
v6.3.5.2, icon does change

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


[Libreoffice-bugs] [Bug 131615] FILEOPEN DOC: Tables aren't into frames by default

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131615

Timur  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED

--- Comment #3 from Timur  ---
You made a classical mistake in bug report to report document and not a single
bug. maybe without searching existing bugs. 
https://wiki.documentfoundation.org/QA/BugReport

Moreover, if this DOC is saved in MSO as DOCX, MSO itself opens it wrong.
Yes, MSO will still open DOC the same, bug we cannot emulate wrong behaviour.
I usually close such reports as NotOutBug. 
Whatever, I'll close this one.

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


[Libreoffice-bugs] [Bug 112700] [META] DOC (binary) table-related issues

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112700
Bug 112700 depends on bug 131615, which changed state.

Bug 131615 Summary: FILEOPEN DOC: Tables aren't into frames by default
https://bugs.documentfoundation.org/show_bug.cgi?id=131615

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

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


[Libreoffice-bugs] [Bug 131643] Fileopen DOCX: tables misplaced

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131643

--- Comment #1 from Timur  ---
Created attachment 159094
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159094=edit
Sample compared MSO 2013 LO 7.0+

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


[Libreoffice-bugs] [Bug 131636] Icons for To Background/To Foreground

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131636

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

https://git.libreoffice.org/core/commit/96f41e79ad505239a5cd4c7991af767796f77672

Breeze & Colibre:  Fix for tdf#131636 to Bg & to Fg icons

It will be available in 7.0.0.

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

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

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


[Libreoffice-bugs] [Bug 131618] MailMerge contradictory data source error

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131618

Oleg Shchelykalnov  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |olegsh...@yandex.ru
   |desktop.org |

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


[Libreoffice-bugs] [Bug 131611] global document odm is not in the context menu in windows like odt, odg, odp and ods

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131611

--- Comment #4 from paulyste...@web.de ---
ee windows 7, 8, 10

 .\LibreOffice\share\template\shellnew

no odm-file for global document
no odm-document in shell new menu in windows


so more options for shell menu new
in the options of Libre Office.

there is no option for on off in Windows or LO, except Regedit

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


[Libreoffice-bugs] [Bug 131441] Can't undock locked toolbar (which is the case for any default toolbar)

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131441

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote  ---
When unlocked the docked toolbars receive a visual status indicator of the
'vertical ellipsis'.

So the changed locked by default for docked toolbars, done intentionally for
bug 92484, is immediately noticeable in GUI as a change.

I agree with changes of bug 92484

And here IMHO better UI would be to suppress the undock action on the context
menu when the specific toolbar is locked.

And with new defaults, an additional UNO command to unlock/lock all toolbars in
user profile might be worthwhile customization enhancement.

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


[Libreoffice-ux-advise] [Bug 131441] Can't undock locked toolbar (which is the case for any default toolbar)

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131441

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote  ---
When unlocked the docked toolbars receive a visual status indicator of the
'vertical ellipsis'.

So the changed locked by default for docked toolbars, done intentionally for
bug 92484, is immediately noticeable in GUI as a change.

I agree with changes of bug 92484

And here IMHO better UI would be to suppress the undock action on the context
menu when the specific toolbar is locked.

And with new defaults, an additional UNO command to unlock/lock all toolbars in
user profile might be worthwhile customization enhancement.

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


[Libreoffice-bugs] [Bug 131625] Failed to load libreoffice with Cairo and QT5

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131625

--- Comment #3 from Hans P. Möller  ---
for got to mention that whith:
SAL_USE_VCLPLUGIN=qt5 SAL_VCL_QT5_USE_CAIRO=true libreoffice6.4 --safe-mode
the problem ALSO happens.

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


[Libreoffice-bugs] [Bug 131600] Cannot save XStorable to file

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131600

Oliver Brinzing  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||oliver.brinz...@gmx.de
 Status|UNCONFIRMED |NEEDINFO

--- Comment #2 from Oliver Brinzing  ---
(In reply to Oleg Shchelykalnov from comment #1)
> I found I miss:
> librdf.so.0 => not found
> libraptor2.so.0 => not found
> 
> which provided by librdf0 package. Looks like PPA missing dependencies.

I am not sure whether I understood you correctly, is it an issue from your
point of view or have you solved the problem?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the issue is still present

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


[Libreoffice-bugs] [Bug 130473] LibreOffice Writer does not display document formatted in wordcorrectly

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130473

Timur  changed:

   What|Removed |Added

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

--- Comment #2 from Timur  ---
No response and documents. 
This is classical example of wrong bug report "this document is wrong". 
YOu must pinpoint an issue, after you searched for already reported bugs.

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


[Libreoffice-bugs] [Bug 131642] Fileopen DOC: non-existing table added in between

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131642

Timur  changed:

   What|Removed |Added

   Priority|medium  |low
Summary|Fileopen DOC: table added   |Fileopen DOC: non-existing
   ||table added in between

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


[Libreoffice-bugs] [Bug 131426] Skia: Cropped text when I scroll page up-down-up in Writer

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131426

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

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #9 from Roman Kuznetsov <79045_79...@mail.ru> ---
verified in

Версия: 7.0.0.0.alpha0+ (x64)
ID сборки: f265b14d6f8e3e63260b3c8ecce48d4251288fea
Потоков ЦП: 4; ОС: Windows 10.0 Build 17763; Отрисовка ИП: Skia/Vulkan; VCL:
win; 
Локаль: ru-RU (ru_RU); Язык интерфейса: ru-RU
Calc: threaded

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


[Libreoffice-bugs] [Bug 115409] 'rehearse timings' resolution insufficient

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115409

--- Comment #3 from Robert Simpson  ---
Two years since I reported this problem. It must be really simple to fix. Is
there any chance of something happening?

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


[Libreoffice-bugs] [Bug 131595] Very slow switching between sheets in the attached xlsx document

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131595

--- Comment #5 from Julien Nabet  ---
Created attachment 159096
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159096=edit
Flamegraph (when switching sheet)

I must say that I use gtk3 so with all accessibility mechanism which seems to
slow down things.

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


[Libreoffice-bugs] [Bug 131641] New: find toolbar: selected text not inserted int find combo box (different from writer)

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131641

Bug ID: 131641
   Summary: find toolbar: selected text not inserted int find
combo box (different from writer)
   Product: LibreOffice
   Version: 4.4.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: oliver.brinz...@gmx.de
Blocks: 108743

steps to reproduce:

- open basic editor
- edit a macro
- select some text, e.g. "sub"
- press Ctrl+F

expected: "sub" should be inserted into find text combo box

it works in writer:
Bug 37791 - Insert selected word in the Find bar by Ctrl F 

Version: 4.4.7.2
Build-ID: f3153a8b245191196a4b6b9abd1d0da16eead600
Gebietsschema: de_DE

Version: 7.0.0.0.alpha0+ (x64)
Build ID: 54d3760f7dbd759cc8de6c777c6a2154d2382f16
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win; 
Locale: de-DE (de_DE); UI-Language: en-US
Calc: threaded


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108743
[Bug 108743] [META] Find toolbar bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108743

Oliver Brinzing  changed:

   What|Removed |Added

 Depends on||131641


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=131641
[Bug 131641] find toolbar: selected text not inserted int find combo box
(different from writer)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 131600] Cannot save XStorable to file

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131600

--- Comment #3 from Oleg Shchelykalnov  ---
It's issue of LibreOffice PPA. Not sure where this bug should be placed.

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


[Libreoffice-bugs] [Bug 72994] Make the same logic for Goal Seek and Solver tools from end-user perspective

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72994

--- Comment #8 from miltonwill  ---
Nice to see this post here. https://leptitoxreviews.me

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


[Libreoffice-bugs] [Bug 97792] Sending mail fails on Windows 10 with Mail app

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97792

AngelaAngie  changed:

   What|Removed |Added

   Keywords||accessibility
URL||https://belgieitworld.site1
   ||23.me/blog/hoe-meldingen-op
   ||-facebook-verwijderen-of-ve
   ||rwijderen

--- Comment #9 from AngelaAngie  ---


u kunt de manier waarop u meldingen van Facebook ontvangt aanpassen aan uw
voorkeuren. Als u uw probleem niet kunt oplossen en u zich nog steeds afvraagt
​​hoe u meldingen op Facebook kunt verwijderen, kunt u 24/7 contact opnemen met
Facebook België.
https://belgieitworld.site123.me/blog/hoe-meldingen-op-facebook-verwijderen-of-verwijderen

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


[Libreoffice-bugs] [Bug 131595] Very slow switching between sheets in the attached xlsx document

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131595

--- Comment #4 from Julien Nabet  ---
Created attachment 159095
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159095=edit
perf flamegraph (when loading the file)

Here's a Flamegraph retrieved on pc Debian x86-64 with master sources updated
today.
It corresponds to loading only.

I'll attach another Flamegraph about the switching part.

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


[Libreoffice-bugs] [Bug 131644] New: make CppunitTest_emfio_emf CPPUNIT_TEST_NAME=TestLinearGradient fails on Windows with UI scale 150%

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131644

Bug ID: 131644
   Summary: make CppunitTest_emfio_emf
CPPUNIT_TEST_NAME=TestLinearGradient fails on Windows
with UI scale 150%
   Product: LibreOffice
   Version: 7.0.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Keywords: bibisectNotNeeded, regression
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com
CC: gan...@poczta.onet.pl

make CppunitTest_emfio_emf CPPUNIT_TEST_NAME=TestLinearGradient fails on
Windows with UI scale 150%.

> make CppunitTest_emfio_emf CPPUNIT_TEST_NAME=TestLinearGradient
> C:/cygwin/home/user/lode/opt/bin/make -j 4 -rs -f 
> C:/cygwin/home/user/lode/dev/core/Makefile.gbuild CppunitTest_emfio_
> emf
> [CUT] emfio_emf
> warn:emfio:16536:21072:emfio/source/reader/emfreader.cxx:804:   
> unknown id: 0x50504e54
> warn:emfio:16536:21072:emfio/source/reader/emfreader.cxx:804:   
> unknown id: 0x50504e54
> C:/cygwin/home/user/lode/dev/core/test/source/xmltesttools.cxx:168:`anonymous 
> namespace'::Test::TestLinearGradient
> equality assertion failed
> - Expected: m0 
> 0.216110019646294h7615.75822989746v7610.21611001965h-7615.75822989746z
> - Actual  : m0 
> 3805.32416502947h11423.6373448462v11415.3241650295h-11423.6373448462z
> - In <>, attribute 'path' of 
> '/primitive2D/metafile/transform/mask/svglineargradient[1]/polypolygon' 
> incorrect value.
> 
> `anonymous namespace'::Test::TestLinearGradient finished in: 91ms
> C:/cygwin/home/user/lode/dev/core/test/source/xmltesttools.cxx(168) : error : 
> Assertion
> Test name: `anonymous namespace'::Test::TestLinearGradient
> equality assertion failed
> - Expected: m0 
> 0.216110019646294h7615.75822989746v7610.21611001965h-7615.75822989746z
> - Actual  : m0 
> 3805.32416502947h11423.6373448462v11415.3241650295h-11423.6373448462z
> - In <>, attribute 'path' of 
> '/primitive2D/metafile/transform/mask/svglineargradient[1]/polypolygon' 
> incorrect value.
> 
> Failures !!!
> Run: 1   Failure total: 1   Failures: 1   Errors: 0
> warn:fwk.desktop:16536:21072:framework/source/services/desktop.cxx:1065: 
> Desktop disposed before terminating it
> warn:fwk.desktop:16536:21072:framework/source/services/desktop.cxx:179: 
> Desktop not terminated before being destructed
> 
> Error: a unit test failed, please do one of:
> make CppunitTest_emfio_emf CPPUNITTRACE=TRUE # which is a shortcut for the 
> following line
> make CppunitTest_emfio_emf CPPUNITTRACE="'C:/Program Files (x86)/Microsoft 
> Visual Studio/2019/Community/Common7/IDE/deve
> nv.exe' /debugexe" # for interactive debugging in Visual Studio
> make CppunitTest_emfio_emf CPPUNITTRACE="drmemory -free_max_frames 20" # for 
> memory checking (install Dr.Memory first, a
> nd put it to your PATH)
> 
> You can limit the execution to just one particular test by:
> 
> make CppunitTest_emfio_emf CPPUNIT_TEST_NAME="testXYZ" ...above mentioned 
> params...
> 
> make[1]: *** 
> [C:/cygwin/home/user/lode/dev/core/solenv/gbuild/CppunitTest.mk:113: 
> C:/cygwin/home/user/lode/dev/core/wo
> rkdir/CppunitTest/emfio_emf.test] Error 1
> make: *** [Makefile:166: CppunitTest_emfio_emf] Error 2

Regression after
https://git.libreoffice.org/core/+/1f540cc7613cdbc0048f4013efe43886d256f86b

Bartosz, do you have an idea how to exclude it from testing when DPI is not
default, or maybe pass some params to the function that will make gradient
handling DPI-independent?

(IMO each and every instance of DPI dependence that is not at the time of
actual screen output is a bug, so likely your test revealed an actual bug.)

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


[Libreoffice-bugs] [Bug 131333] Cannot change data point icons in Calc's XY chart.

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131333

Julien Nabet  changed:

   What|Removed |Added

 CC||ipla...@tuta.io
   Keywords||wantBacktrace

--- Comment #9 from Julien Nabet  ---
Thank you for your feedback.
I gave a new try with master sources updated today (gtk3 and gen rendering), I
still don't reproduce this.
Idem with LO Debian package 6.4.2.2

Would it be possible you attach a backtrace? (see
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information#macOS:_How_to_get_debug_information)

Alex: Would you have some time to give it a try on your Mac?

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


[Libreoffice-bugs] [Bug 131645] New: Wrong line width representation in an ole draw object

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131645

Bug ID: 131645
   Summary: Wrong line width representation in an ole draw object
   Product: LibreOffice
   Version: 6.3.4.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: carlb...@tin.it

Description:
When I insert an ole draw object in a writer document and I insert a line with
a width <0,03 mm the line width visualized is wrong after exiting ole edit
mode.

Steps to Reproduce:
1.Create a new writer document
2.Insert an ole draw object
3.Insert a line with a width <0,03 mm and exit edit mode

Actual Results:
The line width in edit mode is ok.
When I close the ole edit mode the line with visualised is wrong: more thick.

Expected Results:
The line width must be the same.


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:
Versione: 6.4.2.2
Build ID: 4e471d8c02c9c90f512f7f9ead8875b57fcb1ec3
Thread CPU: 4; SO: Mac OS X 10.14.6; Resa interfaccia: predefinito; VCL: osx; 
Versione locale: it-IT (it_IT.UTF-8); Lingua interfaccia: it-IT
Calc: threaded

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


[Libreoffice-bugs] [Bug 131646] "Distributed" alignment of text not shown correctly in LO Impress

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131646

--- Comment #1 from Walter Cheuk  ---
Created attachment 159098
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159098=edit
The .pptx file that have problem

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


[Libreoffice-bugs] [Bug 131646] New: "Distributed" alignment of text not shown correctly in LO Impress

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131646

Bug ID: 131646
   Summary: "Distributed" alignment of text not shown correctly in
LO Impress
   Product: LibreOffice
   Version: 6.4.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: wwych...@gmail.com

Description:
Some text set to "Distributed" alignment are not shown correctly in LO Impress.

Steps to Reproduce:
1. Open the attached the file.
2.
3.

Actual Results:
The text is not shown in distributed alignment

Expected Results:
The text should be not shown in distributed alignment


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.4.2.2 (x64)
Build ID: 4e471d8c02c9c90f512f7f9ead8875b57fcb1ec3
CPU threads: 4; OS: Windows 10.0 Build 18362; UI render: GL; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 131639] Font size changing when I save the document to doc ('97-2003)

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131639

ian  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from ian  ---
Thank you for reporting the bug. Please attach the document you mentioned in
the bug report, as this makes it easier for us to verify the bug. 

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.

(Note that the attachment will be public, so please remove any sensitive
information before attaching it.
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for further details.)

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


[Libreoffice-bugs] [Bug 131333] Cannot change data point icons in Calc's XY chart.

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131333

--- Comment #5 from Julien Nabet  ---
Would it be possible you attach a screencast?
It may help people to reproduce this.

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


[Libreoffice-bugs] [Bug 131641] find toolbar: selected text not inserted into find combo box (different from writer)

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131641

Oliver Brinzing  changed:

   What|Removed |Added

 CC||oliver.brinz...@gmx.de
Summary|find toolbar: selected text |find toolbar: selected text
   |not inserted int find combo |not inserted into find
   |box (different from writer) |combo box (different from
   ||writer)

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


[Libreoffice-bugs] [Bug 131560] Data/Form provides access to cells that are protected

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131560

Oliver Brinzing  changed:

   What|Removed |Added

 CC||oliver.brinz...@gmx.de
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Oliver Brinzing  ---
Thank you for reporting the bug. 

Please attach a sample document, as this makes it easier for us to verify the
bug. 
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.

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


[Libreoffice-bugs] [Bug 130447] [META] DOCX (OOXML) section-related issues

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130447
Bug 130447 depends on bug 131511, which changed state.

Bug 131511 Summary: FILESAVE DOC(X):  "Evenly distribute contents to all 
columns"  not saved when turned off
https://bugs.documentfoundation.org/show_bug.cgi?id=131511

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTOURBUG

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


[Libreoffice-bugs] [Bug 104527] [META] DOC (binary) format bug tracker

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104527
Bug 104527 depends on bug 131511, which changed state.

Bug 131511 Summary: FILESAVE DOC(X):  "Evenly distribute contents to all 
columns"  not saved when turned off
https://bugs.documentfoundation.org/show_bug.cgi?id=131511

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTOURBUG

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


[Libreoffice-bugs] [Bug 131511] FILESAVE DOC(X): "Evenly distribute contents to all columns" not saved when turned off

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131511

Timur  changed:

   What|Removed |Added

 Resolution|--- |NOTOURBUG
 Status|UNCONFIRMED |RESOLVED

--- Comment #24 from Timur  ---
Let it be NOB.

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


[Libreoffice-bugs] [Bug 107836] [META] Page and section column bugs and enhancements

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107836
Bug 107836 depends on bug 131511, which changed state.

Bug 131511 Summary: FILESAVE DOC(X):  "Evenly distribute contents to all 
columns"  not saved when turned off
https://bugs.documentfoundation.org/show_bug.cgi?id=131511

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTOURBUG

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


[Libreoffice-bugs] [Bug 131619] The document doesn't try to update its styles

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131619

--- Comment #3 from Oliver Brinzing  ---
I think there should be a configuration option to let the user know that the
document template is not available. In this case, you should be able to
reassign the template.

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


[Libreoffice-bugs] [Bug 131619] The document doesn't try to update its styles

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131619

--- Comment #4 from larson  ---
> I think there should be a configuration option to let the user know
> that the document template is not available. 

Yes, I think it is good idea. It could be considered as a temporary solution
until LO will be able to handle it in a more elegant way.

> https://extensions.libreoffice.org/extensions/template-changer

Deprecated. One should use DocumentTemplateChanger instead.

* https://extensions.libreoffice.org/extensions/documenttemplatechanger
* https://bugs.documentfoundation.org/show_bug.cgi?id=50699

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


[Libreoffice-bugs] [Bug 90397] file does't open correctly

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90397

Timur  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 131642] New: Fileopen DOC: table added

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131642

Bug ID: 131642
   Summary: Fileopen DOC: table added
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:doc
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gti...@gmail.com

Created attachment 159091
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159091=edit
Sample DOC

Sample DOC is 1 page in MSO and more in LO 6.4 and 7.0+ because LO added empty
table on 1st page after table Totale Veicolo and before table PNEUMATICI
INCLUSI NEL CANONE.

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


[Libreoffice-bugs] [Bug 128652] Free Internet security solutions

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128652

Zen watson  changed:

   What|Removed |Added

URL|http://umcafee.uk.com/  |http://easy-mcafeecom-activ
   ||ate.com/

--- Comment #3 from Zen watson  ---
http://ask-norton.com/ 
http://easy-mcafeecom-activate.com/
http://go-officecom.com/
http://prooffice-comsetup.com/

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


[Libreoffice-bugs] [Bug 108777] Undo doesnt work after setting 'Resize shape to fit text'

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108777

Gerald Pfeifer  changed:

   What|Removed |Added

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

--- Comment #6 from Gerald Pfeifer  ---
This appears to have been fixed since I last tested in November 2019.

Version: 7.0.0.0.alpha0+
Build ID: 4bca67d21e418eb3981cd63390bf2cb401dabe13
CPU threads: 4; OS: Linux 5.5; UI render: default; VCL: gtk3; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-03-08_02:59:34
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 108776] [META] Text attributes dialog bugs and enhancements

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108776
Bug 108776 depends on bug 108777, which changed state.

Bug 108777 Summary: Undo doesnt work after setting 'Resize shape to fit text'
https://bugs.documentfoundation.org/show_bug.cgi?id=108777

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 105948] [META] Undo/Redo bugs and enhancements

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105948
Bug 105948 depends on bug 108777, which changed state.

Bug 108777 Summary: Undo doesnt work after setting 'Resize shape to fit text'
https://bugs.documentfoundation.org/show_bug.cgi?id=108777

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 131643] New: Fileopen DOCX: tables misplaced

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131643

Bug ID: 131643
   Summary: Fileopen DOCX: tables misplaced
   Product: LibreOffice
   Version: 5.2.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:docx
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gti...@gmail.com

Created attachment 159093
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159093=edit
Sample DOCX

DOCX with tables doesn't look good.
Never was fine. Actually better around 5.2.
May be a duplicate but I cannot find.

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


[Libreoffice-bugs] [Bug 131642] Fileopen DOC: non-existing table added in between

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131642

Timur  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 131221] Draw : pullwown menu for Line Width (line thickness) is empty

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131221

--- Comment #6 from Julien Nabet  ---
I noticed OpenGL in your last comment, could you give a try at
https://wiki.documentfoundation.org/QA/FirstSteps#Graphics-related_issues_.28OpenGL.29
?

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


[Libreoffice-bugs] [Bug 131408] high-res or skia or non-default-scaling problem?: remarkable slowdowns in Calc for scrolling in ver. 7.0

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131408

--- Comment #14 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to Roman Kuznetsov from comment #6)
> heh, it's a Skia problem here (possible)
> 
> I got 20 000 cells for 20 sec with  UI render: Skia/Raster;
> 
> and 28 000 cells with UI render: default; VCL: win; 
> 
> in version
> 
> Version: 7.0.0.0.alpha0+ (x64)
> Build ID: 6388c578c672690fff662cb04b6a0436cd742f37
> CPU threads: 4; OS: Windows 10.0 Build 18362; UI render: Skia/Raster; VCL:
> win; 
> Locale: ru-RU (ru_RU); UI-Language: en-US
> Calc: threaded

I got

18 000 selected cells for 20 sec in

Версия: 7.0.0.0.alpha0+ (x64)
ID сборки: f265b14d6f8e3e63260b3c8ecce48d4251288fea
Потоков ЦП: 4; ОС: Windows 10.0 Build 17763; Отрисовка ИП: Skia/Vulkan; VCL:
win; 
Локаль: ru-RU (ru_RU); Язык интерфейса: ru-RU
Calc: threaded

but i got the same result in the same build without Skia or OpenGL

and the same result I got with OpenGL >_<

possibly it linked with hardware and video drivers ? Or may be it matters 
version of Windows 10

Here I have 

DriverVersion: 24.20.100.6286
DriverDate: 8-15-2018
DeviceID: PCI\VEN_8086_591B_1A101043_04
AdapterVendorID: 0x8086
AdapterDeviceID: 0x591b
AdapterSubsysID: 0x1a101043
DeviceKey:
System\CurrentControlSet\Control\Video\{50593AB0-5855-11E9-A9D9-E7305D07F358}\
DeviceString: Intel(R) HD Graphics 630

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


[Libreoffice-bugs] [Bug 131625] Failed to load libreoffice with Cairo and QT5

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131625

--- Comment #2 from Hans P. Möller  ---
Created attachment 159097
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159097=edit
backtrace

Backtrace of latest 6.4.2.2 Build ID: 4e471d8c02c9c90f512f7f9ead8875b57fcb1ec3

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


[Libreoffice-bugs] [Bug 131573] Saving sorted table with pictures to .ods file breaks embedded images

2020-03-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131573

Oliver Brinzing  changed:

   What|Removed |Added

Version|6.4.2.2 release |6.1.6.3 release
 CC||oliver.brinz...@gmx.de

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


  1   2   >