[Libreoffice-bugs] [Bug 133051] FILESAVE. An .ods file, when Save As .csv or .xlsx, Aborts without Saving File when Overwriting Existing File

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133051

--- Comment #14 from Alex Thurgood  ---
(In reply to Alex Thurgood from comment #12)

> 
> codesign -vvv --deep --strict LibreOffice.app

In a zsh shell, this needs the full path to the app bundle:
e.g.
codesign -vvv --deep --strict /Applications/LibreOffice.app

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


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

2020-09-16 Thread Caolán McNamara (via logerrit)
 sc/inc/document.hxx   |2 -
 sc/qa/unit/ucalc_condformat.cxx   |2 -
 sc/source/core/data/documen2.cxx  |   44 +++---
 sc/source/core/data/documen3.cxx  |2 -
 sc/source/ui/docshell/docsh5.cxx  |2 -
 sc/source/ui/docshell/tablink.cxx |2 -
 6 files changed, 27 insertions(+), 27 deletions(-)

New commits:
commit 5e522d5c9b49ba2ed04cca8111044994427c20aa
Author: Caolán McNamara 
AuthorDate: Tue Sep 15 10:11:17 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 16 10:57:44 2020 +0200

TransferTab always dereferences its ScDocument* argument

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

diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 1b756f8e82fb..0e2fc1142356 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -954,7 +954,7 @@ public:
 boolMoveTab( SCTAB nOldPos, SCTAB nNewPos, 
ScProgress* pProgress = nullptr );
 boolCopyTab( SCTAB nOldPos, SCTAB nNewPos,
  const ScMarkData* pOnlyMarked = 
nullptr );
-SC_DLLPUBLIC sal_uLong  TransferTab(ScDocument* pSrcDoc, SCTAB 
nSrcPos, SCTAB nDestPos,
+SC_DLLPUBLIC sal_uLong  TransferTab(ScDocument& rSrcDoc, SCTAB 
nSrcPos, SCTAB nDestPos,
 bool bInsertNew = true,
 bool bResultsOnly = false );
 SC_DLLPUBLIC void   TransferDrawPage(const ScDocument* pSrcDoc, 
SCTAB nSrcPos, SCTAB nDestPos);
diff --git a/sc/qa/unit/ucalc_condformat.cxx b/sc/qa/unit/ucalc_condformat.cxx
index d6f32d13b7c4..b0d66091fe2b 100644
--- a/sc/qa/unit/ucalc_condformat.cxx
+++ b/sc/qa/unit/ucalc_condformat.cxx
@@ -507,7 +507,7 @@ void Test::testCondCopyPasteSheetBetweenDoc()
 m_pDoc->AddCondFormat(std::move(pFormat), 0);
 
 ScDocument aDoc;
-aDoc.TransferTab(m_pDoc, 0, 0);
+aDoc.TransferTab(*m_pDoc, 0, 0);
 
 ScConditionalFormatList* pList = aDoc.GetCondFormList(0);
 CPPUNIT_ASSERT_EQUAL(size_t(1), pList->size());
diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx
index 34af43060d15..7b50c9d1ec38 100644
--- a/sc/source/core/data/documen2.cxx
+++ b/sc/source/core/data/documen2.cxx
@@ -903,7 +903,7 @@ bool ScDocument::CopyTab( SCTAB nOldPos, SCTAB nNewPos, 
const ScMarkData* pOnlyM
 return bValid;
 }
 
-sal_uLong ScDocument::TransferTab( ScDocument* pSrcDoc, SCTAB nSrcPos,
+sal_uLong ScDocument::TransferTab( ScDocument& rSrcDoc, SCTAB nSrcPos,
 SCTAB nDestPos, bool bInsertNew,
 bool bResultsOnly )
 {
@@ -911,29 +911,29 @@ sal_uLong ScDocument::TransferTab( ScDocument* pSrcDoc, 
SCTAB nSrcPos,
 // 3 => NameBox
 // 4 => both
 
-if (pSrcDoc->mpShell->GetMedium())
+if (rSrcDoc.mpShell->GetMedium())
 {
-pSrcDoc->maFileURL = 
pSrcDoc->mpShell->GetMedium()->GetURLObject().GetMainURL(INetURLObject::DecodeMechanism::ToIUri);
+rSrcDoc.maFileURL = 
rSrcDoc.mpShell->GetMedium()->GetURLObject().GetMainURL(INetURLObject::DecodeMechanism::ToIUri);
 // for unsaved files use the title name and adjust during save of file
-if (pSrcDoc->maFileURL.isEmpty())
-pSrcDoc->maFileURL = pSrcDoc->mpShell->GetName();
+if (rSrcDoc.maFileURL.isEmpty())
+rSrcDoc.maFileURL = rSrcDoc.mpShell->GetName();
 }
 else
 {
-pSrcDoc->maFileURL = pSrcDoc->mpShell->GetName();
+rSrcDoc.maFileURL = rSrcDoc.mpShell->GetName();
 }
 
 bool bValid = true;
 if (bInsertNew) // re-insert
 {
 OUString aName;
-pSrcDoc->GetName(nSrcPos, aName);
+rSrcDoc.GetName(nSrcPos, aName);
 CreateValidTabName(aName);
 bValid = InsertTab(nDestPos, aName);
 
 // Copy the RTL settings
-
maTabs[nDestPos]->SetLayoutRTL(pSrcDoc->maTabs[nSrcPos]->IsLayoutRTL());
-
maTabs[nDestPos]->SetLoadingRTL(pSrcDoc->maTabs[nSrcPos]->IsLoadingRTL());
+maTabs[nDestPos]->SetLayoutRTL(rSrcDoc.maTabs[nSrcPos]->IsLayoutRTL());
+
maTabs[nDestPos]->SetLoadingRTL(rSrcDoc.maTabs[nSrcPos]->IsLoadingRTL());
 }
 else// replace existing tables
 {
@@ -953,12 +953,12 @@ sal_uLong ScDocument::TransferTab( ScDocument* pSrcDoc, 
SCTAB nSrcPos,
 SetNoListening( true );
 if ( bResultsOnly )
 {
-bOldAutoCalcSrc = pSrcDoc->GetAutoCalc();
-pSrcDoc->SetAutoCalc( true );   // in case something needs 
calculation
+bOldAutoCalcSrc = rSrcDoc.GetAutoCalc();
+rSrcDoc.SetAutoCalc( true );   // in case something needs 
calculation
 }
 
 {
- 

[Libreoffice-bugs] [Bug 136800] Translation error in Spanish LO Writer 7.0 - "Ver"> "Show Whitespace" option.

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136800

--- Comment #5 from Albert Acer  ---
Created attachment 165560
  --> https://bugs.documentfoundation.org/attachment.cgi?id=165560=edit
Screenshot No. 03

Screenshot No. 03

-- 
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 136453] Duplication of content after undo (spurious)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136453

Michael Stahl (CIB)  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |michael.st...@cib.de
   |desktop.org |
 Status|NEW |ASSIGNED

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


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

2020-09-16 Thread Caolán McNamara (via logerrit)
 sc/source/ui/view/gridwin.cxx |   26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

New commits:
commit 5c434aee89d2316db739ab86578c8dfed60151de
Author: Caolán McNamara 
AuthorDate: Tue Sep 15 10:05:10 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 16 10:56:03 2020 +0200

lcl_GetHyperlinkCell never passed a null ScDocument*

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

diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index 0144dd264b55..d52b0e5d354f 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -382,13 +382,13 @@ static void lcl_UnLockComment( ScDrawView* pView, const 
Point& rPos, const ScVie
 }
 
 static bool lcl_GetHyperlinkCell(
-ScDocument* pDoc, SCCOL& rPosX, SCROW nPosY, SCTAB nTab, ScRefCellValue& 
rCell, OUString& rURL )
+ScDocument& rDoc, SCCOL& rPosX, SCROW nPosY, SCTAB nTab, ScRefCellValue& 
rCell, OUString& rURL )
 {
 bool bFound = false;
 do
 {
 ScAddress aPos(rPosX, nPosY, nTab);
-rCell.assign(*pDoc, aPos);
+rCell.assign(rDoc, aPos);
 if (rCell.isEmpty())
 {
 if ( rPosX <= 0 )
@@ -398,7 +398,7 @@ static bool lcl_GetHyperlinkCell(
 }
 else
 {
-const ScPatternAttr* pPattern = pDoc->GetPattern(aPos);
+const ScPatternAttr* pPattern = rDoc.GetPattern(aPos);
 if ( !pPattern->GetItem(ATTR_HYPERLINK).GetValue().isEmpty() )
 {
 rURL = pPattern->GetItem(ATTR_HYPERLINK).GetValue();
@@ -2328,7 +2328,7 @@ void ScGridWindow::MouseButtonUp( const MouseEvent& rMEvt 
)
 pViewData->GetPosFromPixel( aPos.X(), aPos.Y(), eWhich, nPosX, 
nPosY );
 OUString sURL;
 ScRefCellValue aCell;
-if (lcl_GetHyperlinkCell(, nPosX, nPosY, nTab, aCell, 
sURL))
+if (lcl_GetHyperlinkCell(rDoc, nPosX, nPosY, nTab, aCell, 
sURL))
 {
 ScAddress aCellPos( nPosX, nPosY, nTab );
 uno::Reference< table::XCell > xCell( new ScCellObj( 
pViewData->GetDocShell(), aCellPos ) );
@@ -3482,21 +3482,21 @@ static bool lcl_TestScenarioRedliningDrop( const 
ScDocument* pDoc, const ScRange
 return bReturn;
 }
 
-static ScRange lcl_MakeDropRange( const ScDocument* pDoc, SCCOL nPosX, SCROW 
nPosY, SCTAB nTab, const ScRange& rSource )
+static ScRange lcl_MakeDropRange( const ScDocument& rDoc, SCCOL nPosX, SCROW 
nPosY, SCTAB nTab, const ScRange& rSource )
 {
 SCCOL nCol1 = nPosX;
 SCCOL nCol2 = nCol1 + ( rSource.aEnd.Col() - rSource.aStart.Col() );
-if ( nCol2 > pDoc->MaxCol() )
+if ( nCol2 > rDoc.MaxCol() )
 {
-nCol1 -= nCol2 - pDoc->MaxCol();
-nCol2 = pDoc->MaxCol();
+nCol1 -= nCol2 - rDoc.MaxCol();
+nCol2 = rDoc.MaxCol();
 }
 SCROW nRow1 = nPosY;
 SCROW nRow2 = nRow1 + ( rSource.aEnd.Row() - rSource.aStart.Row() );
-if ( nRow2 > pDoc->MaxRow() )
+if ( nRow2 > rDoc.MaxRow() )
 {
-nRow1 -= nRow2 - pDoc->MaxRow();
-nRow2 = pDoc->MaxRow();
+nRow1 -= nRow2 - rDoc.MaxRow();
+nRow2 = rDoc.MaxRow();
 }
 
 return ScRange( nCol1, nRow1, nTab, nCol2, nRow2, nTab );
@@ -3579,7 +3579,7 @@ sal_Int8 ScGridWindow::AcceptPrivateDrop( const 
AcceptDropEvent& rEvt )
 
 //  don't break scenario ranges, don't drop on filtered
 SCTAB nTab = pViewData->GetTabNo();
-ScRange aDropRange = lcl_MakeDropRange( , nNewDragX, 
nNewDragY, nTab, aSourceRange );
+ScRange aDropRange = lcl_MakeDropRange( rThisDoc, nNewDragX, 
nNewDragY, nTab, aSourceRange );
 if ( lcl_TestScenarioRedliningDrop( , aDropRange ) ||
  lcl_TestScenarioRedliningDrop( pSourceDoc, aSourceRange ) ||
  ScViewUtil::HasFiltered( aDropRange, ) )
@@ -5291,7 +5291,7 @@ bool ScGridWindow::GetEditUrl( const Point& rPos,
 ScDocument& rDoc = pDocSh->GetDocument();
 OUString sURL;
 ScRefCellValue aCell;
-bool bFound = lcl_GetHyperlinkCell(, nPosX, nPosY, nTab, aCell, sURL);
+bool bFound = lcl_GetHyperlinkCell(rDoc, nPosX, nPosY, nTab, aCell, sURL);
 if( !bFound )
 return false;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 136577] [EDITING] "Replace All" does not undo properly if the replacement string is empty

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136577

Michael Stahl (CIB)  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |michael.st...@cib.de
   |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 128233] macOS: Can't save or open files using Finder dialog on Standard accounts on macOS 10.15 Catalina

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128233

Alex Thurgood  changed:

   What|Removed |Added

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

-- 
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 133051] FILESAVE. An .ods file, when Save As .csv or .xlsx, Aborts without Saving File when Overwriting Existing File

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133051

Alex Thurgood  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #12 from Alex Thurgood  ---
:Peter 

This sounds like a permissions problem on your Mac with the location where your
files are stored, and LibreOffice not being able to write to that location.

In many respects, it sounds a lot like the behaviour reported in bug 128233.

Quit LO if running, and try executing the following command from a terminal: 

codesign -vvv --deep --strict LibreOffice.app

(or whatever you have called the LibreOffice.app bundle)

Then try the load/change/save operation again and report back 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 133051] FILESAVE. An .ods file, when Save As .csv or .xlsx, Aborts without Saving File when Overwriting Existing File

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133051

Alex Thurgood  changed:

   What|Removed |Added

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

--- Comment #13 from Alex Thurgood  ---
Possible DUP of bug 128233

-- 
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 136800] Translation error in Spanish LO Writer 7.0 - "Ver"> "Show Whitespace" option.

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136800

--- Comment #4 from Albert Acer  ---
Created attachment 165559
  --> https://bugs.documentfoundation.org/attachment.cgi?id=165559=edit
Screenshot No. 02

Screenshot No. 02

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


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

2020-09-16 Thread Caolán McNamara (via logerrit)
 sc/source/ui/inc/drawutil.hxx  |2 +-
 sc/source/ui/view/drawutil.cxx |8 
 sc/source/ui/view/drawvie4.cxx |4 ++--
 sc/source/ui/view/drawview.cxx |2 +-
 sc/source/ui/view/gridwin3.cxx |8 
 5 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit 3ea27befefc3de06596fd19d8991e3a7f9d68af1
Author: Caolán McNamara 
AuthorDate: Tue Sep 15 10:03:56 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 16 10:50:12 2020 +0200

CalcScale never passed a null ScDocument*

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

diff --git a/sc/source/ui/inc/drawutil.hxx b/sc/source/ui/inc/drawutil.hxx
index 0623347f8356..cc921e07aa8f 100644
--- a/sc/source/ui/inc/drawutil.hxx
+++ b/sc/source/ui/inc/drawutil.hxx
@@ -29,7 +29,7 @@ class ScDocument;
 class ScDrawUtil
 {
 public:
-static void CalcScale( const ScDocument* pDoc, SCTAB nTab,
+static void CalcScale( const ScDocument& rDoc, SCTAB nTab,
 SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW 
nEndRow,
 const OutputDevice* pDev, const Fraction& rZoomX, 
const Fraction& rZoomY,
 double nPPTX, double nPPTY,
diff --git a/sc/source/ui/view/drawutil.cxx b/sc/source/ui/view/drawutil.cxx
index ff859eb2074c..52f8c7a259cd 100644
--- a/sc/source/ui/view/drawutil.cxx
+++ b/sc/source/ui/view/drawutil.cxx
@@ -24,7 +24,7 @@
 #include 
 #include 
 
-void ScDrawUtil::CalcScale( const ScDocument* pDoc, SCTAB nTab,
+void ScDrawUtil::CalcScale( const ScDocument& rDoc, SCTAB nTab,
 SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, 
SCROW nEndRow,
 const OutputDevice* pDev,
 const Fraction& rZoomX, const Fraction& rZoomY,
@@ -37,7 +37,7 @@ void ScDrawUtil::CalcScale( const ScDocument* pDoc, SCTAB 
nTab,
 long nTwipsY = 0;
 for (SCCOL i=nStartCol; iGetColWidth(i,nTab);
+sal_uInt16 nWidth = rDoc.GetColWidth(i,nTab);
 nTwipsX += static_cast(nWidth);
 nPixelX += ScViewData::ToPixel( nWidth, nPPTX );
 }
@@ -45,13 +45,13 @@ void ScDrawUtil::CalcScale( const ScDocument* pDoc, SCTAB 
nTab,
 for (SCROW nRow = nStartRow; nRow <= nEndRow-1; ++nRow)
 {
 SCROW nLastRow = nRow;
-if (pDoc->RowHidden(nRow, nTab, nullptr, ))
+if (rDoc.RowHidden(nRow, nTab, nullptr, ))
 {
 nRow = nLastRow;
 continue;
 }
 
-sal_uInt16 nHeight = pDoc->GetRowHeight(nRow, nTab);
+sal_uInt16 nHeight = rDoc.GetRowHeight(nRow, nTab);
 nTwipsY += static_cast(nHeight);
 nPixelY += ScViewData::ToPixel(nHeight, nPPTY);
 }
diff --git a/sc/source/ui/view/drawvie4.cxx b/sc/source/ui/view/drawvie4.cxx
index 66102caa1b23..e4f12a36626a 100644
--- a/sc/source/ui/view/drawvie4.cxx
+++ b/sc/source/ui/view/drawvie4.cxx
@@ -425,8 +425,8 @@ void ScDrawView::CalcNormScale( Fraction& rFractX, 
Fraction& rFractY ) const
 nEndRow = 1000;
 
 Fraction aZoom(1,1);
-ScDrawUtil::CalcScale( , nTab, 0,0, nEndCol,nEndRow, pDev, 
aZoom,aZoom,
-nPPTX, nPPTY, rFractX,rFractY );
+ScDrawUtil::CalcScale( rDoc, nTab, 0,0, nEndCol,nEndRow, pDev, aZoom,aZoom,
+   nPPTX, nPPTY, rFractX,rFractY );
 }
 
 void ScDrawView::SetMarkedOriginalSize()
diff --git a/sc/source/ui/view/drawview.cxx b/sc/source/ui/view/drawview.cxx
index e372d060bb44..029220816f25 100644
--- a/sc/source/ui/view/drawview.cxx
+++ b/sc/source/ui/view/drawview.cxx
@@ -325,7 +325,7 @@ void ScDrawView::RecalcScale()
 nEndRow = 20;
 
 ScDrawUtil::CalcScale(
-, nTab, 0, 0, nEndCol, nEndRow, pDev, aZoomX, aZoomY, nPPTX, 
nPPTY,
+rDoc, nTab, 0, 0, nEndCol, nEndRow, pDev, aZoomX, aZoomY, nPPTX, nPPTY,
 aScaleX, aScaleY);
 
 // clear all evtl existing GridOffset vectors
diff --git a/sc/source/ui/view/gridwin3.cxx b/sc/source/ui/view/gridwin3.cxx
index a68f525ff3c7..92cbbcfa8558 100644
--- a/sc/source/ui/view/gridwin3.cxx
+++ b/sc/source/ui/view/gridwin3.cxx
@@ -275,10 +275,10 @@ MapMode ScGridWindow::GetDrawMapMode( bool bForce )
 rDoc.GetTableArea( nTab, nEndCol, nEndRow );
 if (nEndCol<20) nEndCol = 20;
 if (nEndRow<20) nEndRow = 1000;
-ScDrawUtil::CalcScale( , nTab, 0,0, nEndCol,nEndRow, this,
-
pViewData->GetZoomX(),pViewData->GetZoomY(),
-pViewData->GetPPTX(),pViewData->GetPPTY(),
-aScaleX,aScaleY );
+ScDrawUtil::CalcScale( rDoc, nTab, 0,0, nEndCol,nEndRow, this,
+   pViewData->GetZoomX(),pViewData->GetZoomY(),
+   pViewData->GetPPTX(),pViewData->GetPPTY(),
+  

[Libreoffice-bugs] [Bug 133717] enhancement request - FORMATTING calc sheet-specific page orentation

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133717

Alex Thurgood  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #3 from Alex Thurgood  ---
For example, as described here:

https://www.ahuka.com/libreoffice-3-5-tutorials/libreoffice-calc/libreoffice-calc-page-styles-and-page-settings/

Doesn't that do what you are looking for ?

-- 
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 136800] Translation error in Spanish LO Writer 7.0 - "Ver"> "Show Whitespace" option.

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136800

Julien Nabet  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 CC||fit...@ubuntu.com
 Status|NEW |RESOLVED

--- Comment #2 from Julien Nabet  ---
Fixed with:
https://translations.documentfoundation.org/languages/es/libo_ui-master/search/?offset==+note%3AXAsfn+_by=-priority%2Cposition=

I used:
Mostrar ~espacios en blanco

because helpcontent2/source/text/swriter.po contains already this:
#. EsnVW
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"hd_id102720150854018740\n"
"help.text"
msgid "Show Whitespace"
msgstr "Mostrar espacios en blanco"


I used shortcut on "e" because it wasn't already used in "Ver" menu.

Adolfo: put you in cc so you got the information but of course, don't hesitate
to uncc if you want.

-- 
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 136800] Translation error in Spanish LO Writer 7.0 - "Ver"> "Show Whitespace" option.

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136800

--- Comment #3 from Albert Acer  ---
Created attachment 165558
  --> https://bugs.documentfoundation.org/attachment.cgi?id=165558=edit
Bug 136800 in LO Writer 7 Spanish version

In the screenshot that I am attaching today 16-Sept-2020 you can see how and
where the translation error appears.

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


[Libreoffice-commits] online.git: Changes to 'feature/calc-canvas2'

2020-09-16 Thread Jan Holesovsky (via logerrit)
New branch 'feature/calc-canvas2' available with the following commits:
commit 09efef5982764b2ab7566bc4d3b327fdcc638bef
Author: Jan Holesovsky 
Date:   Tue Sep 15 22:04:52 2020 +0200

split panes: Don't expose the freeze panes buttons in the toolbar.

The split panes are not modified that often, no need to have buttons to
set that up in the toolbar.

Change-Id: I9c7920f6dd57de5f507450e15fcde615ad941f1c

commit 2e2e5a7a346b46769d83332abb727f64a9499e24
Author: Pranam Lashkari 
Date:   Fri Aug 21 07:44:11 2020 +0530

leaflet: added freeze pan buttons to view menu

Change-Id: I9ba7a0982b15d097e21d93a6e18289455f0f8139

commit ee2a357911dbda9c8106f27af49975793c6c79ef
Author: Pranam Lashkari 
Date:   Thu Aug 20 03:47:07 2020 +0530

leaflet: added freeze pan buttons to toolbar

Change-Id: Ifb9ae58deef77397a5d5eb7c0bfd85625f1a4e74

commit 7dd235cac769ef15929c8f33e86f9ac00c130767
Author: Pranam Lashkari 
Date:   Thu Aug 20 03:46:39 2020 +0530

notebookbar: added freeze pan buttons in calc

added icons too

Change-Id: I913f315c2e5bfcfbf6f82677ecffe76eaf86ea2a

commit 5215552f9a4b4811f439ae6a95e18064c4728b23
Author: Jan Holesovsky 
Date:   Tue Sep 15 21:36:14 2020 +0200

split panes: No dragging of the split lines currently.

It is too buggy, let's instead allow only setting of that via the menu,
similarly to what the desktop LO does.

Change-Id: I219b2535e0cbd5310fe2a3a9ebf2098536d5c175

commit a439a6336cfa0e3078b85082b652dcba63a3b0fb
Author: Jan Holesovsky 
Date:   Tue Sep 15 21:33:14 2020 +0200

split panes: No split lines at all when they are at 0 position.

Change-Id: I9fee28f32acdabd4768b095a471f26e5e8e9a378

commit 187e21c5c565e6d73e9c67dc4a14027ed8855603
Author: Jan Holesovsky 
Date:   Tue Sep 15 09:15:44 2020 +0200

calc canvas: More reliable check for the desktop / mobile / tablet.

Change-Id: I7b1ea581051608e020fd6e4615be9bc9b919c01f

commit f3a6075e3510305adac51ffe96c3119d2c58ebe3
Author: Michael Meeks 
Date:   Thu Sep 10 15:35:27 2020 +0100

calc canvas: get the right core px size of the canvas across.

Change-Id: Ib079097b9d5caf707bd95b286d675791b5df9255

commit 18153819cc2405e078993f3205751713354e63a1
Author: Szymon Kłos 
Date:   Thu Sep 10 12:47:42 2020 +0200

Adjust splitline thickness according to zoom level

Change-Id: I33c398f1545860fb2f77d9d8dcdd8f632c2603ca

commit bba82f524dc6eff18eeb752d00b85b7ad9bcd0d7
Author: Szymon Kłos 
Date:   Wed Sep 9 15:08:20 2020 +0200

Don't block handling of touch events

This is partial revert of 901ecca313.
Handles (Markers) 'down' handler disabled
main TouchGesture handler what caused
taps to be ignored. Eg. double click didn't
enter edit mode for a Calc cell.

Change-Id: Id7097e9ad513e56a71423a6d6a8ac5105c373f77

commit e16840a53354308155ff24f235e3a0d268eb9fba
Author: Michael Meeks 
Date:   Wed Sep 9 12:02:50 2020 +0100

calc tiles: clarify some magic.

Change-Id: I2d95dd09b5640a5216e72366493ddf77541c8b73

commit dab0521fbd69f294f432831d20d4927c36f55a64
Author: Michael Meeks 
Date:   Tue Sep 8 16:18:31 2020 +0100

calc canvas: avoid repeated setTransform; build the right offset.

Change-Id: Iab153b25fa38f27742a052ad0892e3d55c2c04cc

commit 9e9a0bd83be8e21e39c9118e228826e72f064476
Author: Michael Meeks 
Date:   Tue Sep 8 16:03:34 2020 +0100

calc canvas: use sub image blitting instead of clipping.

Avoids thrashing the canvas rendering context / clip state.

Change-Id: I547ce22a171874cd7be3a0fac50b4afc56faf084

commit f8877801831c85434f0e267706a63761d9b3445c
Author: Michael Meeks 
Date:   Tue Sep 8 16:03:15 2020 +0100

calc canvas: round view co-ordinates to the real pixels we need.

Change-Id: I768cd9015da1f1301f3ddad242130d4eddb426d1

commit 5dbc118188f3eec3aab79ec3cd4545f2ab52f078
Author: Michael Meeks 
Date:   Tue Sep 8 15:25:09 2020 +0100

calc canvas: avoid lots of canvas context save/restores.

Change-Id: Ib813686ef7d495e660ad8fa3b545391180b9e019

commit bfdda065a579e98bea8ca5a383f8231210a668ed
Author: Szymon Kłos 
Date:   Tue Sep 8 13:52:33 2020 +0200

Split lines only in the corner when set to 0

Change-Id: I6192219cede2d0888ecd77236f72ff734d99d778

commit 1851763a4906a7e349bc0a55dc3ed2020987c57c
Author: Jan Holesovsky 
Date:   Thu Sep 3 23:19:13 2020 +0200

calc canvas: Preserving of the top left cell should be desktop-only.

On mobile, the center of the zooming has to be according to the center
of the pinch-to-zoom, ie. the center has to be taken into account.

Change-Id: I3ba2ea90b7bac9bc1ba27f8068ea7ed6bbb4910d

commit 5834b50de26a5b89015e73484f5a0568cfffdcd1
Author: Michael Meeks 
Date:   Tue Sep 1 21:35:35 2020 +0100

calc canvas: paint invalid tiles until their replacement arrives.

This avoids display corruption when panning, whereby stale/old
canvas 

[Libreoffice-bugs] [Bug 133717] enhancement request - FORMATTING calc sheet-specific page orentation

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133717

--- Comment #2 from Alex Thurgood  ---
@skyhook : is this not possible using Page Styles for Calc ? I don't know that
it is, I'm just asking.

-- 
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 87676] TOOLBAR: Hiding 'line and filling', 'text formatting' and image toolbars by default

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87676

Heiko Tietze  changed:

   What|Removed |Added

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

-- 
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 136174] Enhancement: Font drop down in toolbar in Impress

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136174

Heiko Tietze  changed:

   What|Removed |Added

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

--- Comment #7 from Heiko Tietze  ---
(In reply to andreas_k from comment #5)
> the font toolbar isn't activated.

Which reminds me that it was a conscious decision to hide the formatting
toolbar in bug 87676.

> For me it's a bit confuse, that 
> - writer/calc use standard two line toolbar
> - impress/draw use standard two line toolbar with sidebar

Reason to hide the formatting toolbar was exactly this: two toolbars instead of
four. 

My comment 3 was about the addition of just the font name dropdown. But in fact
we should rather find a better solution.

-- 
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 136800] Translation error in Spanish LO Writer 7.0 - "Ver"> "Show Whitespace" option.

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136800

Julien Nabet  changed:

   What|Removed |Added

 OS|Windows (All)   |All
 Ever confirmed|0   |1
 CC||serval2...@yahoo.fr
 Status|UNCONFIRMED |NEW

--- Comment #1 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I could reproduce this.

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


[Libreoffice-ux-advise] [Bug 136174] Enhancement: Font drop down in toolbar in Impress

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136174

Heiko Tietze  changed:

   What|Removed |Added

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

--- Comment #7 from Heiko Tietze  ---
(In reply to andreas_k from comment #5)
> the font toolbar isn't activated.

Which reminds me that it was a conscious decision to hide the formatting
toolbar in bug 87676.

> For me it's a bit confuse, that 
> - writer/calc use standard two line toolbar
> - impress/draw use standard two line toolbar with sidebar

Reason to hide the formatting toolbar was exactly this: two toolbars instead of
four. 

My comment 3 was about the addition of just the font name dropdown. But in fact
we should rather find a better solution.

-- 
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 128831] Progress bar isn't full length when I save a document

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128831

Alex Thurgood  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #11 from Alex Thurgood  ---
I think I see what you mean and can reproduce this with

Version: 7.0.1.2
Build ID: 7cbcfc562f6eb6708b5ff7d7397325de9e764452
CPU threads: 4; OS: Mac OS X 10.15.6; UI render: default; VCL: osx
Locale: fr-FR (fr_FR.UTF-8); Langue IHM : fr-FR
Calc: threaded


During the save operation, the progress bar extends across the bottom of LO
display area, however, it disappears (i.e. indicating completion of the save)
before the progress bar reaches the end of the available space reserved for it.

Confirming

Display Output Monitor : 30,5 pouces (1920 x 1080)

-- 
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 136800] New: Translation error in Spanish LO Writer 7.0 - "Ver"> "Show Whitespace" option.

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136800

Bug ID: 136800
   Summary: Translation error in Spanish LO Writer 7.0 - "Ver">
"Show Whitespace" option.
   Product: LibreOffice
   Version: 7.0.1.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: albac...@gmail.com

Description:
Working with LibreOffice Writer 7.0 in Spanish, I see the option "Show
Whitespace" of the "Ver" Menu without translating into Spanish.

Steps to Reproduce:
1. Open LibreOffice Writer 7.0 or 7.0.1 in Spanish
2. Click on the "Ver" Menu.
3. Find the option "Show Whitespace".

Actual Results:
The option "Show Whitespace" appears in English, without translating into
Spanish as it should be.

Expected Results:
LibreOffice 7.0 or later, in Spanish, should put "Mostrar espacios en blanco"
instead of "Show Whitespace".


Reproducible: Always


User Profile Reset: Yes



Additional Info:
[Information automatically included from LibreOffice]
Locale: es
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 136445] Write-protected content cannot be changed error box appears when deleting comments in RTF (comments will be deleted)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136445

Attila Baraksó (NISZ)  changed:

   What|Removed |Added

Version|7.1.0.0.alpha0+ Master  |7.0.0.0.alpha0+

-- 
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 136445] Write-protected content cannot be changed error box appears when deleting comments in RTF (comments will be deleted)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136445

Attila Baraksó (NISZ)  changed:

   What|Removed |Added

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

--- Comment #4 from Attila Baraksó (NISZ)  ---
Bibisected using bibisect-win64-7.0 to:
URL:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=0788ab19869aa2ae5f7fbef9e3c13ceb641f80ee
author: Michael Stahl 
committer: Michael Stahl 
summary: sw: read-only/protected content dialog was missing on Delete/Backspace

Adding CC: Michael Stahl

-- 
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 136799] New: SVG icons not appearing in Styles tab in sidebar

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136799

Bug ID: 136799
   Summary: SVG icons not appearing in Styles tab in sidebar
   Product: LibreOffice
   Version: 7.0.1.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: andis.lazd...@gmail.com

Description:
When any of SVG icons are selected in Options > View > Icon style, no icons
appears in Styles tab of the sidebar. After returning to non-SVG Icon style,
icons in Styles tab returns.

Steps to Reproduce:
1.Open Writer document
2.Select Standard toolbar in View > User interface
3.Activate sidebar and select Styles tab
4.In Tools > Options > View > Icon style select any of SVG icons, e.g. Colibre
(SVG) and press apply

Actual Results:
All icons in the top of Style tab disappear.
After returning to non-SVG icons, e.g. Colibre, icons returns.

Expected Results:
After changing Icon style they should change but not disappear.


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:
Version: 7.0.1.2
Build ID: 7cbcfc562f6eb6708b5ff7d7397325de9e764452
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: lv-LV (en_US.UTF-8); UI: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 136798] New: Realtime update of the zoom slider and zoom factor value on the Status bar

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136798

Bug ID: 136798
   Summary: Realtime update of the zoom slider and zoom factor
value on the Status bar
   Product: LibreOffice
   Version: 7.0.1.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rogalissi...@gmail.com

Description:
While changing zoom with a mouses (ctrl + scroll-wheel) or keyboard shortcuts
its current value is not updated until zooming is done and all engaged keys has
been released.

Steps to Reproduce:
Just keep zooming with a ctrl+scroll-wheel and observe Status bar zoom slider
or zoom factor next to it. They don't update until ctrl key is released.

Actual Results:
It's not known about actual zoom factor while performing zoom operation.

Expected Results:
Status bar zoom slider and factor indicator updates in realtime corresponding
to its current value.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.1.2 (x64)
Build ID: 7cbcfc562f6eb6708b5ff7d7397325de9e764452
CPU threads: 8; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: pl-PL (pl_PL); UI: pl-PL
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 54068] The "Edit>Compare Documents" command does not detect changes in tables properly

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54068

--- Comment #12 from kkivi  ---
I found this problem very annoying. While this bug is not resolved for 8 years,
I propose a dirty workaround - add a command 'convert ALL tables to text', 
similar to 'convert table to text', but in a single command, so that it will be
possible to at least quickly review changes.

-- 
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 135069] FILEOPEN DOCX TOC style indent settings not imported correctly

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135069

László Németh  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |nem...@numbertext.org
   |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 135816] Tip of the Day should draw keycaps for keyboard shortcuts to be less confusing.

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135816

Heiko Tietze  changed:

   What|Removed |Added

 CC||heiko.tietze@documentfounda
   ||tion.org

--- Comment #1 from Heiko Tietze  ---
CSS requires an HTML engine behind the style and that makes the simple text
rendering a huge thing. Not saying it's impossible, even without HTML parts of
the text could be replaced by graphical elements, but the effort is out of all
proportion to the benefit.

-- 
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 50585] FILESAVE: Save in format 'docbook' does not work

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50585

--- Comment #11 from t...@nurfuerspam.de ---
Please have a look at my LO version. I always test against the current
production release. Possibly fixed in 7.X.X

Bye Thomas

-- 
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 135006] URL not displayed in Tip of the Day (re documentation and donations)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135006

Heiko Tietze  changed:

   What|Removed |Added

 CC||heiko.tietze@documentfounda
   ||tion.org

--- Comment #7 from Heiko Tietze  ---
It was an intentional decision to not show the URL in full length but a "human
readable" short URL. And you figured out how to read the URL anyway, so my take
is NAB/WF.

-- 
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 134136] Enhancement: Change tab names in "Page Style" dialog

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134136

--- Comment #9 from Heiko Tietze  ---
(In reply to Thomas Lendo from comment #8)
> Is there a consent for renaming and to what?

The idea was accepted in the design meeting. The one who implements decides,
hopefully based on feedback given in this thread, and s/he is always right.

Actually I hope DarkTrick will do patch.

-- 
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 136075] Sidebar: Move List content back to the Paragraph section in Draw/Impress

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136075

--- Comment #5 from Heiko Tietze  ---
List style (or actually Bullets/Numbering) is part of the paragraph
format/style. Since you define it in the same dialog it seems natural to not
separate.

-- 
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 136075] Sidebar: Move List content back to the Paragraph section in Draw/Impress

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136075

--- Comment #5 from Heiko Tietze  ---
List style (or actually Bullets/Numbering) is part of the paragraph
format/style. Since you define it in the same dialog it seems natural to not
separate.

-- 
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 122648] [RFE] Missing advanced sum formulas in Writer: SUM(ABOVE), SUM(LEFT), SUM(BELOW), SUM(RIGHT)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122648

Timur  changed:

   What|Removed |Added

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

-- 
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 122719] DOCX: wrong result of calculation in table with function SUM(LEFT)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122719

Timur  changed:

   What|Removed |Added

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

-- 
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 122755] [META] Formulae in Writer tables bugs and enhancements

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122755
Bug 122755 depends on bug 122648, which changed state.

Bug 122648 Summary: [RFE] Missing advanced sum formulas in Writer: SUM(ABOVE), 
SUM(LEFT), SUM(BELOW), SUM(RIGHT)
https://bugs.documentfoundation.org/show_bug.cgi?id=122648

   What|Removed |Added

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

-- 
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 107707] [META] Writer table enhancements requests

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107707
Bug 107707 depends on bug 122648, which changed state.

Bug 122648 Summary: [RFE] Missing advanced sum formulas in Writer: SUM(ABOVE), 
SUM(LEFT), SUM(BELOW), SUM(RIGHT)
https://bugs.documentfoundation.org/show_bug.cgi?id=122648

   What|Removed |Added

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

-- 
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 122648] [RFE] Missing advanced sum formulas in Writer: SUM(ABOVE), SUM(LEFT), SUM(BELOW), SUM(RIGHT)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122648

Timur  changed:

   What|Removed |Added

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

--- Comment #4 from Timur  ---
I don't see this as fixed. If it is, please write steps.

-- 
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 136797] Can I freeze in open position at the "print" window, the "number of copies"?

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136797

--- Comment #1 from Szabi  ---
Created attachment 165557
  --> https://bugs.documentfoundation.org/attachment.cgi?id=165557=edit
print 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 136797] New: Can I freeze in open position at the "print" window, the "number of copies"?

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136797

Bug ID: 136797
   Summary: Can I freeze in open position at the "print" window,
the "number of copies"?
   Product: LibreOffice
   Version: 6.4.4.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: szellszab...@gmail.com

Description:
Since a few weeks, when I print a document (Calc or Writer), at the Print
windows (general tab) is the "number of copies". But, it is in a closed
openable "tree", where can I see "more". Every time, when I print, I have to
open the "more" tree, to reach the "number of copies", but it is very
uncomfortable, every time to open this. Can I "freeze" in open position, or
something? I don't undertand, this feature :(

Actual Results:
Above is the description

Expected Results:
Above is the description


Reproducible: Always


User Profile Reset: No



Additional Info:
Above is the description

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


[Libreoffice-commits] online.git: Branch 'distro/collabora/co-4-2' - loleaflet/src

2020-09-16 Thread mert (via logerrit)
 loleaflet/src/layer/marker/Annotation.js  |6 +--
 loleaflet/src/map/handler/Map.TouchGesture.js |   45 --
 2 files changed, 38 insertions(+), 13 deletions(-)

New commits:
commit 94e461f8248341f9a24de2b2dc7cc48a755a
Author: mert 
AuthorDate: Fri Sep 11 17:05:30 2020 +0300
Commit: Andras Timar 
CommitDate: Wed Sep 16 09:51:44 2020 +0200

Fix annotation kebab menu brings up keyboard on mobile

Also fixed other weirdnesses on touch event with
annotation box. It was sending click events to
LOK even if we click on annotation box, which is not
wanted.

Change-Id: Ia43a879c72c22276c482e463fa725ce1c76df911
Signed-off-by: mert 
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/102468
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 

diff --git a/loleaflet/src/layer/marker/Annotation.js 
b/loleaflet/src/layer/marker/Annotation.js
index b5c7f3069..bcf3ab74d 100644
--- a/loleaflet/src/layer/marker/Annotation.js
+++ b/loleaflet/src/layer/marker/Annotation.js
@@ -203,7 +203,7 @@ L.Annotation = L.Layer.extend({
var tr = L.DomUtil.create('tr', empty, tbody);
var tdImg = L.DomUtil.create(tagTd, 'loleaflet-annotation-img', 
tr);
var tdAuthor = L.DomUtil.create(tagTd, 
'loleaflet-annotation-author', tr);
-   var imgAuthor = L.DomUtil.create('img', 'avatar-img', tdImg);
+   var imgAuthor = L.DomUtil.create('img', 'avatar-img 
loleaflet-annotation-avatar-img', tdImg);
imgAuthor.setAttribute('src', L.LOUtil.getImageURL('user.svg'));
imgAuthor.setAttribute('width', this.options.imgSize.x);
imgAuthor.setAttribute('height', this.options.imgSize.y);
@@ -238,12 +238,12 @@ L.Annotation = L.Layer.extend({
}
if (this._data.trackchange) {
this._captionNode = L.DomUtil.create(tagDiv, 
'loleaflet-annotation-caption', wrapper);
-   this._captionText = L.DomUtil.create(tagDiv, empty, 
this._captionNode);
+   this._captionText = L.DomUtil.create(tagDiv, 
'loleaflet-annotation-caption-text', this._captionNode);
}
this._contentNode = L.DomUtil.create(tagDiv, 
'loleaflet-annotation-content loleaflet-dont-break', wrapper);
this._nodeModify = L.DomUtil.create(tagDiv, classEdit, wrapper);
this._nodeModifyText = L.DomUtil.create(tagTextArea, 
classTextArea, this._nodeModify);
-   this._contentText = L.DomUtil.create(tagDiv, empty, 
this._contentNode);
+   this._contentText = L.DomUtil.create(tagDiv, 
'loleaflet-annotation-content-text', this._contentNode);
this._nodeReply = L.DomUtil.create(tagDiv, classEdit, wrapper);
this._nodeReplyText = L.DomUtil.create(tagTextArea, 
classTextArea, this._nodeReply);
 
diff --git a/loleaflet/src/map/handler/Map.TouchGesture.js 
b/loleaflet/src/map/handler/Map.TouchGesture.js
index 4257c0212..677d15dec 100644
--- a/loleaflet/src/map/handler/Map.TouchGesture.js
+++ b/loleaflet/src/map/handler/Map.TouchGesture.js
@@ -320,20 +320,27 @@ L.Map.TouchGesture = L.Handler.extend({
}
 
this._map.fire('closepopups');
-   this._map.fire('editorgotfocus');
 
var docLayer = this._map._docLayer;
-   // unselect if anything is selected already
-   if (docLayer && docLayer._annotations && 
docLayer._annotations.unselect) {
-   docLayer._annotations.unselect();
-   var pointPx = docLayer._twipsToPixels(mousePos);
-   var bounds = docLayer._annotations.getBounds();
-   if (bounds && bounds.contains(pointPx)) {
-   // not forward mouse events to core if the user 
tap on a comment box
-   // for instance on Writer that causes the text 
cursor to be moved
-   return;
+   if (docLayer && docLayer._annotations) {
+   var annotationClicked = false;
+   if (e.target) {
+   var className = e.target.className;
+   if (className && typeof className === 'string') 
{
+   if (className.indexOf('annotation') >= 
0) {
+   annotationClicked = true;
+   return;
+   }
+   }
+   }
+   // unselect if anything is selected already
+   if (!annotationClicked && 
docLayer._annotations.unselect) {
+   docLayer._annotations.unselect();
}
}
+
+   

[Libreoffice-bugs] [Bug 133548] Custom format for heading not shown in Navigator

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133548

--- Comment #3 from Jim Raykowski  ---
Seems creating a new style from the Styles context menu item New... is not the
same as creating a new style with 'New Style from Selection'. Would expect
numbering and outline level to be inherited and not set to no numbering and 0
level (text body). On my  list of things to try to solve.

-- 
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 134598] Calc's Fill Format Mode function not available after New and Cancel (comment 9)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134598

Timur  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||3183,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||3180,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||5438,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||5640
   Keywords|bibisectRequest |bibisected, bisected
 CC||caol...@redhat.com

--- Comment #11 from Timur  ---
fc2d2db21e7b4a83026e781feeba2cc49bc941c2 is the first bad commit
Author: Jenkins Build User 
Date:   Wed Apr 29 10:33:00 2020 +0200

source sha:fe9a13dc0e6d1384416c2a2343223b33925fc925
previous source sha:cf36fe5eb41910c26d58fb25e54ccf2e0ee01365

author  Caolán McNamara 2020-04-26 15:43:25 +0100
committer   Caolán McNamara 2020-04-29 09:46:08
+0200
commit  fe9a13dc0e6d1384416c2a2343223b33925fc925 (patch)
treea43a8ea0cc46407b8932dced64cf34d595f3b3e9
parent  cf36fe5eb41910c26d58fb25e54ccf2e0ee01365 (diff)
weld SfxTemplatePanelControl
Change-Id: Ib3f6d01ddec37afc3987423dc15ab84ad6475f37
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92942
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

Adding Caolán to CC.

-- 
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 136765] formatting marks not visible any more

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136765

BogdanB  changed:

   What|Removed |Added

 Status|UNCONFIRMED |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 102345] [META] Formatting marks (aka Non-printing characters) bugs and enhancements

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102345
Bug 102345 depends on bug 136765, which changed state.

Bug 136765 Summary: formatting marks not visible any more
https://bugs.documentfoundation.org/show_bug.cgi?id=136765

   What|Removed |Added

 Status|UNCONFIRMED |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-commits] online.git: Branch 'distro/collabora/co-4-2' - loleaflet/src

2020-09-16 Thread Pranam Lashkari (via logerrit)
 loleaflet/src/layer/tile/TileLayer.js |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d0a0950c48ba6c0a00b908eae7af4c53a784d0f2
Author: Pranam Lashkari 
AuthorDate: Wed Sep 16 11:33:55 2020 +0530
Commit: Andras Timar 
CommitDate: Wed Sep 16 09:44:43 2020 +0200

leaflet: removed resolve thread option from impress

Change-Id: I325ff47ea8961056e4fd23aa2c7f8c20113e0166
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/102829
Tested-by: Andras Timar 
Reviewed-by: Andras Timar 

diff --git a/loleaflet/src/layer/tile/TileLayer.js 
b/loleaflet/src/layer/tile/TileLayer.js
index bb8b905de..c178bdb34 100644
--- a/loleaflet/src/layer/tile/TileLayer.js
+++ b/loleaflet/src/layer/tile/TileLayer.js
@@ -253,7 +253,7 @@ L.TileLayer = L.GridLayer.extend({

that.onAnnotationRemove.call(that, options.$trigger.get(0).annotation._data.id);
}
},
-   removeThread: {
+   removeThread: that._docType !== 
'text' ? undefined : {
name: _('Remove 
Thread'),
callback: function 
(key, options) {

that.onAnnotationRemoveThread.call(that, 
options.$trigger.get(0).annotation._data.id);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-09-16 Thread Caolán McNamara (via logerrit)
 sc/inc/document.hxx|4 ++--
 sc/qa/unit/subsequent_filters-test.cxx |2 +-
 sc/qa/unit/ucalc.cxx   |6 +++---
 sc/source/core/data/document.cxx   |   11 ---
 sc/source/ui/view/drawvie4.cxx |2 +-
 5 files changed, 11 insertions(+), 14 deletions(-)

New commits:
commit 3fd389ffe987d3b10f55e73b1b61a9babb88785d
Author: Caolán McNamara 
AuthorDate: Tue Sep 15 10:02:30 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 16 09:44:34 2020 +0200

CopyStaticToDocument never passed a null ScDocument*

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

diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 36bd437c2773..1b756f8e82fb 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -1577,9 +1577,9 @@ public:
  *
  * @param rSrcRange source range in the source document
  * @param nDestTab table in the clip document to copy to.
- * @param pDestDoc document to copy to
+ * @param rDestDoc document to copy to
  */
-SC_DLLPUBLIC void CopyStaticToDocument(const ScRange& rSrcRange, SCTAB 
nDestTab, ScDocument* pDestDoc);
+SC_DLLPUBLIC void CopyStaticToDocument(const ScRange& rSrcRange, SCTAB 
nDestTab, ScDocument& rDestDoc);
 
 /**
  * Copy only cell, nothing but cell to another document.
diff --git a/sc/qa/unit/subsequent_filters-test.cxx 
b/sc/qa/unit/subsequent_filters-test.cxx
index 0f0f39a419c0..42118a15fc4c 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -3416,7 +3416,7 @@ void ScFiltersTest::testCopyMergedNumberFormats()
 
 ScDocument aCopyDoc;
 aCopyDoc.InsertTab(0, "CopyHere");
-rDoc.CopyStaticToDocument(ScRange(1,0,0,3,0,0), 0, );
+rDoc.CopyStaticToDocument(ScRange(1,0,0,3,0,0), 0, aCopyDoc);
 
 // Make sure the date formats are copied to the new document.
 CPPUNIT_ASSERT_EQUAL(aStrB1, aCopyDoc.GetString(ScAddress(1,0,0)));
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index bfb741b07166..7d18f131852d 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -857,9 +857,9 @@ void Test::testCopyToDocument()
 pDestDoc->InsertTab(0, "src");
 pDestDoc->InitDrawLayer(xDocSh2.get()); // for note caption objects
 
-m_pDoc->CopyStaticToDocument(ScRange(0,1,0,0,3,0), 0, pDestDoc); // Copy 
A2:A4
-m_pDoc->CopyStaticToDocument(ScAddress(0,0,0), 0, pDestDoc); // Copy A1
-m_pDoc->CopyStaticToDocument(ScRange(0,4,0,0,7,0), 0, pDestDoc); // Copy 
A5:A8
+m_pDoc->CopyStaticToDocument(ScRange(0,1,0,0,3,0), 0, *pDestDoc); // Copy 
A2:A4
+m_pDoc->CopyStaticToDocument(ScAddress(0,0,0), 0, *pDestDoc); // Copy 
A1
+m_pDoc->CopyStaticToDocument(ScRange(0,4,0,0,7,0), 0, *pDestDoc); // Copy 
A5:A8
 
 CPPUNIT_ASSERT_EQUAL(m_pDoc->GetString(0,0,0), pDestDoc->GetString(0,0,0));
 CPPUNIT_ASSERT_EQUAL(m_pDoc->GetString(0,1,0), pDestDoc->GetString(0,1,0));
diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index 6ccd0dfa9b66..86fe8a318263 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -2244,19 +2244,16 @@ void ScDocument::CopyToClip(const ScClipParam& 
rClipParam,
 pClipDoc->ExtendMerge(aClipRange, true);
 }
 
-void ScDocument::CopyStaticToDocument(const ScRange& rSrcRange, SCTAB 
nDestTab, ScDocument* pDestDoc)
+void ScDocument::CopyStaticToDocument(const ScRange& rSrcRange, SCTAB 
nDestTab, ScDocument& rDestDoc)
 {
-if (!pDestDoc)
-return;
-
 ScTable* pSrcTab = rSrcRange.aStart.Tab() < 
static_cast(maTabs.size()) ? maTabs[rSrcRange.aStart.Tab()].get() : 
nullptr;
-ScTable* pDestTab = nDestTab < static_cast(pDestDoc->maTabs.size()) 
? pDestDoc->maTabs[nDestTab].get() : nullptr;
+ScTable* pDestTab = nDestTab < static_cast(rDestDoc.maTabs.size()) 
? rDestDoc.maTabs[nDestTab].get() : nullptr;
 
 if (!pSrcTab || !pDestTab)
 return;
 
-pDestDoc->GetFormatTable()->MergeFormatter(*GetFormatTable());
-SvNumberFormatterMergeMap aMap = 
pDestDoc->GetFormatTable()->ConvertMergeTableToMap();
+rDestDoc.GetFormatTable()->MergeFormatter(*GetFormatTable());
+SvNumberFormatterMergeMap aMap = 
rDestDoc.GetFormatTable()->ConvertMergeTableToMap();
 
 pSrcTab->CopyStaticToDocument(
 rSrcRange.aStart.Col(), rSrcRange.aStart.Row(), rSrcRange.aEnd.Col(), 
rSrcRange.aEnd.Row(),
diff --git a/sc/source/ui/view/drawvie4.cxx b/sc/source/ui/view/drawvie4.cxx
index f07c44c6904e..66102caa1b23 100644
--- a/sc/source/ui/view/drawvie4.cxx
+++ b/sc/source/ui/view/drawvie4.cxx
@@ -287,7 +287,7 @@ public:
 // Sheet by this name doesn't exist.
 return;
 
-mrSrc.CopyStaticToDocument(rRange, nTab, );
+mrSrc.CopyStaticToDocument(rRange, nTab, mrDest);
 }
 };
 

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

2020-09-16 Thread Caolán McNamara (via logerrit)
 sc/source/ui/view/drawvie4.cxx |   26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

New commits:
commit 15a4bde9d6d3b6df097d0066f33e6eb79bb18b56
Author: Caolán McNamara 
AuthorDate: Tue Sep 15 10:00:28 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 16 09:44:16 2020 +0200

copyChartRefDataToClipDoc never passed a null ScDocument*

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

diff --git a/sc/source/ui/view/drawvie4.cxx b/sc/source/ui/view/drawvie4.cxx
index 7717979a39b4..f07c44c6904e 100644
--- a/sc/source/ui/view/drawvie4.cxx
+++ b/sc/source/ui/view/drawvie4.cxx
@@ -272,26 +272,26 @@ public:
 
 class CopyRangeData
 {
-ScDocument* mpSrc;
-ScDocument* mpDest;
+ScDocument& mrSrc;
+ScDocument& mrDest;
 public:
-CopyRangeData(ScDocument* pSrc, ScDocument* pDest) : mpSrc(pSrc), 
mpDest(pDest) {}
+CopyRangeData(ScDocument& rSrc, ScDocument& rDest) : mrSrc(rSrc), 
mrDest(rDest) {}
 
 void operator() (const ScRange& rRange)
 {
 OUString aTabName;
-mpSrc->GetName(rRange.aStart.Tab(), aTabName);
+mrSrc.GetName(rRange.aStart.Tab(), aTabName);
 
 SCTAB nTab;
-if (!mpDest->GetTable(aTabName, nTab))
+if (!mrDest.GetTable(aTabName, nTab))
 // Sheet by this name doesn't exist.
 return;
 
-mpSrc->CopyStaticToDocument(rRange, nTab, mpDest);
+mrSrc.CopyStaticToDocument(rRange, nTab, );
 }
 };
 
-void copyChartRefDataToClipDoc(ScDocument* pSrcDoc, ScDocument* pClipDoc, 
const std::vector& rRanges)
+void copyChartRefDataToClipDoc(ScDocument& rSrcDoc, ScDocument& rClipDoc, 
const std::vector& rRanges)
 {
 // Get a list of referenced table indices.
 std::vector aTabs;
@@ -306,20 +306,20 @@ void copyChartRefDataToClipDoc(ScDocument* pSrcDoc, 
ScDocument* pClipDoc, const
 // Create sheets only for referenced source sheets.
 OUString aName;
 std::vector::const_iterator it = aTabs.begin(), itEnd = aTabs.end();
-if (!pSrcDoc->GetName(*it, aName))
+if (!rSrcDoc.GetName(*it, aName))
 return;
 
-pClipDoc->SetTabNameOnLoad(0, aName); // document initially has one sheet.
+rClipDoc.SetTabNameOnLoad(0, aName); // document initially has one sheet.
 
 for (++it; it != itEnd; ++it)
 {
-if (!pSrcDoc->GetName(*it, aName))
+if (!rSrcDoc.GetName(*it, aName))
 return;
 
-pClipDoc->AppendTabOnLoad(aName);
+rClipDoc.AppendTabOnLoad(aName);
 }
 
-std::for_each(rRanges.begin(), rRanges.end(), CopyRangeData(pSrcDoc, 
pClipDoc));
+std::for_each(rRanges.begin(), rRanges.end(), CopyRangeData(rSrcDoc, 
rClipDoc));
 }
 
 }
@@ -344,7 +344,7 @@ void ScDrawView::DoCopy()
 // document. We need to do this before CreateMarkedObjModel() below.
 ScDocShellRef xDocSh = ScGlobal::xDrawClipDocShellRef;
 ScDocument& rClipDoc = xDocSh->GetDocument();
-copyChartRefDataToClipDoc(, , aRanges);
+copyChartRefDataToClipDoc(rDoc, rClipDoc, aRanges);
 }
 std::unique_ptr pModel(CreateMarkedObjModel());
 ScDrawLayer::SetGlobalDrawPersist(nullptr);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 136445] Write-protected content cannot be changed error box appears when deleting comments in RTF (comments will be deleted)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136445

Attila Baraksó (NISZ)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||barakso.att...@gmail.com

--- Comment #3 from Attila Baraksó (NISZ)  ---
Reproduced in:

Version: 7.1.0.0.alpha0+ (x64)
Build ID: 8c18cd6823ddf4ef5ba67801a84cee26c9b5a9a6
CPU threads: 4; OS: Windows 10.0 Build 17134; UI render: Skia/Raster; VCL: win
Locale: hu-HU (hu_HU); UI: hu-HU
Calc: threaded

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


[Libreoffice-commits] core.git: sc/inc sc/source

2020-09-16 Thread Caolán McNamara (via logerrit)
 sc/inc/charthelper.hxx  |2 +-
 sc/source/core/tool/charthelper.cxx |8 
 sc/source/ui/drawfunc/fusel.cxx |2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit bd8083916362d121cc7b16d273b5983a11eb1bda
Author: Caolán McNamara 
AuthorDate: Tue Sep 15 09:47:53 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 16 09:42:50 2020 +0200

AddRangesIfProtectedChart never passed a null ScDocument*

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

diff --git a/sc/inc/charthelper.hxx b/sc/inc/charthelper.hxx
index 4889c9de8eff..4f850f155b38 100644
--- a/sc/inc/charthelper.hxx
+++ b/sc/inc/charthelper.hxx
@@ -45,7 +45,7 @@ public:
 static void SetChartRanges( const css::uno::Reference< 
css::chart2::XChartDocument >& xChartDoc,
 const css::uno::Sequence< OUString >& rRanges );
 
-static void AddRangesIfProtectedChart( ScRangeListVector& rRangesVector, 
const ScDocument* pDocument, SdrObject* pObject );
+static void AddRangesIfProtectedChart( ScRangeListVector& rRangesVector, 
const ScDocument& rDocument, SdrObject* pObject );
 static void FillProtectedChartRangesVector( ScRangeListVector& 
rRangesVector, const ScDocument& rDocument, const SdrPage* pPage );
 static void GetChartNames( ::std::vector< OUString >& rChartNames, const 
SdrPage* pPage );
 static void CreateProtectedChartListenersAndNotify( ScDocument& rDoc, 
const SdrPage* pPage, ScModelObj* pModelObj, SCTAB nTab,
diff --git a/sc/source/core/tool/charthelper.cxx 
b/sc/source/core/tool/charthelper.cxx
index 669a622f02ff..572da8014b47 100644
--- a/sc/source/core/tool/charthelper.cxx
+++ b/sc/source/core/tool/charthelper.cxx
@@ -281,9 +281,9 @@ void ScChartHelper::SetChartRanges( const uno::Reference< 
chart2::XChartDocument
 xChartDoc->unlockControllers();
 }
 
-void ScChartHelper::AddRangesIfProtectedChart( ScRangeListVector& 
rRangesVector, const ScDocument* pDocument, SdrObject* pObject )
+void ScChartHelper::AddRangesIfProtectedChart( ScRangeListVector& 
rRangesVector, const ScDocument& rDocument, SdrObject* pObject )
 {
-if ( !(pDocument && pObject && ( pObject->GetObjIdentifier() == OBJ_OLE2 
)) )
+if ( !(pObject && ( pObject->GetObjIdentifier() == OBJ_OLE2 )) )
 return;
 
 SdrOle2Obj* pSdrOle2Obj = dynamic_cast< SdrOle2Obj* >( pObject );
@@ -302,7 +302,7 @@ void ScChartHelper::AddRangesIfProtectedChart( 
ScRangeListVector& rRangesVector,
  ( xProps->getPropertyValue("DisableDataTableDialog") >>= 
bDisableDataTableDialog ) &&
  bDisableDataTableDialog )
 {
-ScChartListenerCollection* pCollection = 
pDocument->GetChartListenerCollection();
+ScChartListenerCollection* pCollection = 
rDocument.GetChartListenerCollection();
 if (pCollection)
 {
 const OUString& aChartName = pSdrOle2Obj->GetPersistName();
@@ -331,7 +331,7 @@ void ScChartHelper::FillProtectedChartRangesVector( 
ScRangeListVector& rRangesVe
 SdrObject* pObject = aIter.Next();
 while ( pObject )
 {
-AddRangesIfProtectedChart( rRangesVector, , pObject );
+AddRangesIfProtectedChart( rRangesVector, rDocument, pObject );
 pObject = aIter.Next();
 }
 }
diff --git a/sc/source/ui/drawfunc/fusel.cxx b/sc/source/ui/drawfunc/fusel.cxx
index 72be7847faef..dca0beaa1ef1 100644
--- a/sc/source/ui/drawfunc/fusel.cxx
+++ b/sc/source/ui/drawfunc/fusel.cxx
@@ -370,7 +370,7 @@ bool FuSelection::MouseButtonUp(const MouseEvent& rMEvt)
 pObj = ( pMark ? pMark->GetMarkedSdrObj() : nullptr );
 if ( pObj )
 {
-ScChartHelper::AddRangesIfProtectedChart( 
aProtectedChartRangesVector, , pObj );
+ScChartHelper::AddRangesIfProtectedChart( 
aProtectedChartRangesVector, rDocument, pObj );
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - sc/inc sc/source

2020-09-16 Thread Caolán McNamara (via logerrit)
 sc/inc/document.hxx |2 +-
 sc/source/core/data/documen5.cxx|4 ++--
 sc/source/core/data/drwlayer.cxx|2 +-
 sc/source/core/tool/charthelper.cxx |2 +-
 sc/source/ui/view/cliputil.cxx  |8 
 5 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit 705ee514e228dc6b6fe6f13964ef866cd9df1702
Author: Caolán McNamara 
AuthorDate: Tue Sep 15 09:51:25 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 16 09:43:37 2020 +0200

lcl_checkClassification never passed a null ScDocument* destination doc

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

diff --git a/sc/source/ui/view/cliputil.cxx b/sc/source/ui/view/cliputil.cxx
index ff3878e600f2..595e5b2e9d7a 100644
--- a/sc/source/ui/view/cliputil.cxx
+++ b/sc/source/ui/view/cliputil.cxx
@@ -27,13 +27,13 @@ namespace
 {
 
 /// Paste only if SfxClassificationHelper recommends so.
-bool lcl_checkClassification(ScDocument* pSourceDoc, const ScDocument* 
pDestinationDoc)
+bool lcl_checkClassification(ScDocument* pSourceDoc, const ScDocument& 
rDestinationDoc)
 {
-if (!pSourceDoc || !pDestinationDoc)
+if (!pSourceDoc)
 return true;
 
 ScClipOptions* pSourceOptions = pSourceDoc->GetClipOptions();
-SfxObjectShell* pDestinationShell = pDestinationDoc->GetDocumentShell();
+SfxObjectShell* pDestinationShell = rDestinationDoc.GetDocumentShell();
 if (!pSourceOptions || !pDestinationShell)
 return true;
 
@@ -84,7 +84,7 @@ void ScClipUtil::PasteFromClipboard( ScViewData* pViewData, 
ScTabViewShell* pTab
 // For multi-range paste, we paste values by default.
 nFlags &= ~InsertDeleteFlags::FORMULA;
 
-if (lcl_checkClassification(pClipDoc, ))
+if (lcl_checkClassification(pClipDoc, rThisDoc))
 pTabViewShell->PasteFromClip( nFlags, pClipDoc,
 ScPasteFunc::NONE, false, false, false, INS_NONE, 
InsertDeleteFlags::NONE,
 bShowDialog );  // allow warning dialog
commit 4e65a506f29c886195be3ee17e166a9fe1cb7a7a
Author: Caolán McNamara 
AuthorDate: Tue Sep 15 09:50:19 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 16 09:43:14 2020 +0200

GetChartRanges never passed a null ScDocument*

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

diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 370effa1b01b..36bd437c2773 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -840,7 +840,7 @@ public:
 
 css::uno::Reference< css::chart2::XChartDocument > GetChartByName( const 
OUString& rChartName );
 
-SC_DLLPUBLIC void GetChartRanges( const OUString& rChartName, std::vector< 
ScRangeList >& rRanges, const ScDocument* pSheetNameDoc );
+SC_DLLPUBLIC void GetChartRanges( const OUString& rChartName, std::vector< 
ScRangeList >& rRanges, const ScDocument& rSheetNameDoc );
 void  SetChartRanges( const OUString& rChartName, const 
std::vector< ScRangeList >& rRanges );
 
 void  UpdateChartArea( const OUString& rChartName, const 
ScRange& rNewArea,
diff --git a/sc/source/core/data/documen5.cxx b/sc/source/core/data/documen5.cxx
index 2ae03f5f299b..33d0d74703b0 100644
--- a/sc/source/core/data/documen5.cxx
+++ b/sc/source/core/data/documen5.cxx
@@ -164,7 +164,7 @@ uno::Reference< chart2::XChartDocument > 
ScDocument::GetChartByName( const OUStr
 return xReturn;
 }
 
-void ScDocument::GetChartRanges( const OUString& rChartName, ::std::vector< 
ScRangeList >& rRangesVector, const ScDocument* pSheetNameDoc )
+void ScDocument::GetChartRanges( const OUString& rChartName, ::std::vector< 
ScRangeList >& rRangesVector, const ScDocument& rSheetNameDoc )
 {
 rRangesVector.clear();
 uno::Reference< chart2::XChartDocument > xChartDoc( GetChartByName( 
rChartName ) );
@@ -175,7 +175,7 @@ void ScDocument::GetChartRanges( const OUString& 
rChartName, ::std::vector< ScRa
 for(const OUString & aRangeString : aRangeStrings)
 {
 ScRangeList aRanges;
-aRanges.Parse( aRangeString, *pSheetNameDoc, 
pSheetNameDoc->GetAddressConvention() );
+aRanges.Parse( aRangeString, rSheetNameDoc, 
rSheetNameDoc.GetAddressConvention() );
 rRangesVector.push_back(aRanges);
 }
 }
diff --git a/sc/source/core/data/drwlayer.cxx b/sc/source/core/data/drwlayer.cxx
index 4830dcc4f0fb..3a22bc354a18 100644
--- a/sc/source/core/data/drwlayer.cxx
+++ b/sc/source/core/data/drwlayer.cxx
@@ -1751,7 +1751,7 @@ void ScDrawLayer::CopyFromClip( ScDrawLayer* pClipModel, 
SCTAB nSourceTab, const
 {
 OUString aChartName = 

[Libreoffice-commits] online.git: Branch 'distro/collabora/co-4-2' - loleaflet/po

2020-09-16 Thread Andras Timar (via logerrit)
 loleaflet/po/templates/loleaflet-ui.pot |  132 +---
 loleaflet/po/ui-es.po   |  132 +---
 2 files changed, 148 insertions(+), 116 deletions(-)

New commits:
commit 00690aa37b0539319b9060ed15b0b8d7269af303
Author: Andras Timar 
AuthorDate: Wed Sep 16 07:35:50 2020 +0200
Commit: Andras Timar 
CommitDate: Wed Sep 16 09:44:14 2020 +0200

Spanish translation of new resolve/remove comment options

Change-Id: I0b611be6272fff9d49288796a5aa3da9414dff22
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/102828
Tested-by: Andras Timar 
Reviewed-by: Andras Timar 

diff --git a/loleaflet/po/templates/loleaflet-ui.pot 
b/loleaflet/po/templates/loleaflet-ui.pot
index f9dde8b71..2a4a5cf26 100644
--- a/loleaflet/po/templates/loleaflet-ui.pot
+++ b/loleaflet/po/templates/loleaflet-ui.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-09-11 10:07+0200\n"
+"POT-Creation-Date: 2020-09-16 07:23+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -122,7 +122,7 @@ msgid "Network Graph"
 msgstr ""
 
 #: admin/admin.strings.js:32 src/layer/marker/Annotation.js:254
-#: src/layer/tile/TileLayer.js:404
+#: src/layer/tile/TileLayer.js:423
 msgid "Save"
 msgstr ""
 
@@ -191,18 +191,18 @@ msgid "Are you sure you want to terminate this session?"
 msgstr ""
 
 #: admin/src/AdminSocketOverview.js:107 admin/src/AdminSocketSettings.js:36
-#: src/control/Control.Menubar.js:1197
-#: src/control/Control.PresentationBar.js:86 src/control/Control.Tabs.js:200
+#: src/control/Control.Menubar.js:1194
+#: src/control/Control.PresentationBar.js:87 src/control/Control.Tabs.js:200
 #: src/control/Control.Tabs.js:217 src/control/Toolbar.js:614
 msgid "OK"
 msgstr ""
 
 #: admin/src/AdminSocketOverview.js:108 admin/src/AdminSocketSettings.js:37
-#: src/control/Control.LanguageDialog.js:86 src/control/Control.Menubar.js:1198
+#: src/control/Control.LanguageDialog.js:86 src/control/Control.Menubar.js:1195
 #: src/control/Control.MobileTopBar.js:45
-#: src/control/Control.PresentationBar.js:87 src/control/Control.Tabs.js:201
+#: src/control/Control.PresentationBar.js:88 src/control/Control.Tabs.js:201
 #: src/control/Control.Tabs.js:218 src/control/Toolbar.js:615
-#: src/layer/marker/Annotation.js:184 src/layer/tile/TileLayer.js:405
+#: src/layer/marker/Annotation.js:184 src/layer/tile/TileLayer.js:424
 msgid "Cancel"
 msgstr ""
 
@@ -306,7 +306,7 @@ msgstr ""
 msgid "Index"
 msgstr ""
 
-#: src/control/Control.DocumentRepair.js:48 src/layer/tile/TileLayer.js:276
+#: src/control/Control.DocumentRepair.js:48 src/layer/tile/TileLayer.js:292
 msgid "Comment"
 msgstr ""
 
@@ -346,100 +346,100 @@ msgstr ""
 msgid "Function Wizard"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:282
-#: src/control/Control.StatusBar.js:330
+#: src/control/Control.JSDialogBuilder.js:284
+#: src/control/Control.StatusBar.js:331
 msgid "None"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:285
+#: src/control/Control.JSDialogBuilder.js:287
 msgid "Solid"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:288
+#: src/control/Control.JSDialogBuilder.js:290
 msgid "Linear"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:291
+#: src/control/Control.JSDialogBuilder.js:293
 msgid "Axial"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:294
+#: src/control/Control.JSDialogBuilder.js:296
 msgid "Radial"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:297
+#: src/control/Control.JSDialogBuilder.js:299
 msgid "Ellipsoid"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:301
+#: src/control/Control.JSDialogBuilder.js:303
 msgid "Quadratic"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:304
+#: src/control/Control.JSDialogBuilder.js:306
 msgid "Square"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:307
+#: src/control/Control.JSDialogBuilder.js:309
 msgid "Fixed size"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:1193
+#: src/control/Control.JSDialogBuilder.js:1195
 msgid "From"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:1196
+#: src/control/Control.JSDialogBuilder.js:1198
 msgid "To"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:1321
+#: src/control/Control.JSDialogBuilder.js:1323
 msgid "Select range"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:1350
+#: src/control/Control.JSDialogBuilder.js:1352
 msgid "Font Name"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:1352
+#: src/control/Control.JSDialogBuilder.js:1354
 msgid "Font Size"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:1929
+#: src/control/Control.JSDialogBuilder.js:1935
 msgid "Cell borders"
 msgstr ""
 
-#: src/control/Control.JSDialogBuilder.js:1968
+#: src/control/Control.JSDialogBuilder.js:1974
 msgid "Background Color"
 msgstr ""
 
-#: 

[Libreoffice-commits] core.git: sc/inc sc/source

2020-09-16 Thread Caolán McNamara (via logerrit)
 sc/inc/charthelper.hxx  |2 +-
 sc/source/core/tool/charthelper.cxx |6 +++---
 sc/source/ui/app/drwtrans.cxx   |2 +-
 sc/source/ui/view/viewfun3.cxx  |2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 8ef82d25fc806885b42ac9cafe45eb41bd3e1b7b
Author: Caolán McNamara 
AuthorDate: Tue Sep 15 09:46:42 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 16 09:42:34 2020 +0200

FillProtectedChartRangesVector never passed a null ScDocument*

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

diff --git a/sc/inc/charthelper.hxx b/sc/inc/charthelper.hxx
index 1dc55ffd312a..4889c9de8eff 100644
--- a/sc/inc/charthelper.hxx
+++ b/sc/inc/charthelper.hxx
@@ -46,7 +46,7 @@ public:
 const css::uno::Sequence< OUString >& rRanges );
 
 static void AddRangesIfProtectedChart( ScRangeListVector& rRangesVector, 
const ScDocument* pDocument, SdrObject* pObject );
-static void FillProtectedChartRangesVector( ScRangeListVector& 
rRangesVector, const ScDocument* pDocument, const SdrPage* pPage );
+static void FillProtectedChartRangesVector( ScRangeListVector& 
rRangesVector, const ScDocument& rDocument, const SdrPage* pPage );
 static void GetChartNames( ::std::vector< OUString >& rChartNames, const 
SdrPage* pPage );
 static void CreateProtectedChartListenersAndNotify( ScDocument& rDoc, 
const SdrPage* pPage, ScModelObj* pModelObj, SCTAB nTab,
 const ScRangeListVector& rRangesVector, const ::std::vector< OUString 
>& rExcludedChartNames, bool bSameDoc = true );
diff --git a/sc/source/core/tool/charthelper.cxx 
b/sc/source/core/tool/charthelper.cxx
index 13bb73b86f8a..669a622f02ff 100644
--- a/sc/source/core/tool/charthelper.cxx
+++ b/sc/source/core/tool/charthelper.cxx
@@ -323,15 +323,15 @@ void ScChartHelper::AddRangesIfProtectedChart( 
ScRangeListVector& rRangesVector,
 }
 }
 
-void ScChartHelper::FillProtectedChartRangesVector( ScRangeListVector& 
rRangesVector, const ScDocument* pDocument, const SdrPage* pPage )
+void ScChartHelper::FillProtectedChartRangesVector( ScRangeListVector& 
rRangesVector, const ScDocument& rDocument, const SdrPage* pPage )
 {
-if ( pDocument && pPage )
+if ( pPage )
 {
 SdrObjListIter aIter( pPage, SdrIterMode::DeepNoGroups );
 SdrObject* pObject = aIter.Next();
 while ( pObject )
 {
-AddRangesIfProtectedChart( rRangesVector, pDocument, pObject );
+AddRangesIfProtectedChart( rRangesVector, , pObject );
 pObject = aIter.Next();
 }
 }
diff --git a/sc/source/ui/app/drwtrans.cxx b/sc/source/ui/app/drwtrans.cxx
index 2c3c11ca6b9b..246c549c6105 100644
--- a/sc/source/ui/app/drwtrans.cxx
+++ b/sc/source/ui/app/drwtrans.cxx
@@ -201,7 +201,7 @@ ScDrawTransferObj::ScDrawTransferObj( 
std::unique_ptr pClipModel, ScDo
 ScDocument& rDoc = pContainerShell->GetDocument();
 if ( pPage )
 {
-ScChartHelper::FillProtectedChartRangesVector( 
m_aProtectedChartRangesVector, , pPage );
+ScChartHelper::FillProtectedChartRangesVector( 
m_aProtectedChartRangesVector, rDoc, pPage );
 }
 }
 }
diff --git a/sc/source/ui/view/viewfun3.cxx b/sc/source/ui/view/viewfun3.cxx
index 989037bc6369..407c10782fc2 100644
--- a/sc/source/ui/view/viewfun3.cxx
+++ b/sc/source/ui/view/viewfun3.cxx
@@ -269,7 +269,7 @@ bool ScViewFunc::CopyToClipSingleRange( ScDocument* 
pClipDoc, const ScRangeList&
 SdrPage* pPage = pDrawLayer->GetPage( static_cast< sal_uInt16 >( 
nTab ) );
 if ( pPage )
 {
-ScChartHelper::FillProtectedChartRangesVector( rRangesVector, 
, pPage );
+ScChartHelper::FillProtectedChartRangesVector( rRangesVector, 
rDoc, pPage );
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 136765] formatting marks not visible any more

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136765

--- Comment #7 from Paolo Benvenuto  ---
> Actual and AFAIK expected behaviour is
> - use VIEW => Formatting Marks to show / hide Formatting Marks
>   (or press Strg+F10)
> - select the Formatting Marks that are displayed in Tools => Options = 
>   LibreOffice Writer => Formatting Aids => Display formatting

That works.

The problem is that I got the Formatting Marks in "Tools => Options =
LibreOffice Writer => Formatting Aids => Display formatting" reset when I
upgraded libreoffice to 6.0, and I suspect that an upgrade from < 6 to any new
version reset the marks too

-- 
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 136453] Duplication of content after undo (spurious)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136453

Attila Baraksó (NISZ)  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||4252

--- Comment #6 from Attila Baraksó (NISZ)  ---
Bibisected using bibisect-win64-7.1 to:
URL:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=740f1796504f66408b692225a9676c9ee3d63722
author: Michael Stahl 
committer: Michael Stahl 
summary: tdf#134252 sw_redlinehide: fix SwUndoDelete for table before end of
section

-- 
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 103164] [META] Footnote and Endnote bugs and enhancements

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103164

Dieter  changed:

   What|Removed |Added

 Depends on||136563


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136563
[Bug 136563] Selection of the text should also include footnotes (see comment
8)
-- 
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 136163] Crash in: rtl_uString_newConcat | Deleting unused styles

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136163

Dieter  changed:

   What|Removed |Added

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

--- Comment #6 from Dieter  ---
(In reply to Kieran Grant from comment #4)
> I have been unable to reproduce the issue.

Kiera, thanks for testing again.
=> RESOLVED 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 134784] Paragraph spacing of first paragraph in a text frames is set to 0, 42 cm when importing/opening docx

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134784

--- Comment #13 from László Németh  ---
tdf#134784 DOCX import: fix shape paragraph margins

based on bad style inheritance.

Regression from commit dc0300eac3b755bc207cd1fe87217f4ebaeb9f58
(tdf#118521 DOCX import: fix paragraph margin from paragraph style),
revealing the problematic m_sCurrentParaStyleName, see also

https://cgit.freedesktop.org/libreoffice/core/commit/?id=8920d865ee148518bf71f71ce1866b24cc17c07e)


for more information.

-- 
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 125651] Can't select last line of footnotes/endnotes by dragging down from the left side of the document if it's not the last footnote of a page

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125651

Dieter  changed:

   What|Removed |Added

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

-- 
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 136563] Selection of the text should also include footnotes (see comment 8)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136563

Dieter  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=99
   ||096,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||5651
Summary|Footnote are not included   |Selection of the text
   |into the selection of the   |should also include
   |text with a footnote (see   |footnotes (see comment 8)
   |comment 8)  |
   Keywords||needsUXEval
   Severity|normal  |enhancement
 Blocks||103164
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

--- Comment #10 from Dieter  ---
I think this is more an enhancement request than a bug. There might be good
reasons, why footnotes are not selected at the moment. But I would at least
expect, that all footnotes are selected if cursor is placed in footnote and
Strg+A is used.

cc: Design-Team


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103164
[Bug 103164] [META] Footnote and Endnote 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-ux-advise] [Bug 136563] Selection of the text should also include footnotes (see comment 8)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136563

Dieter  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=99
   ||096,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||5651
Summary|Footnote are not included   |Selection of the text
   |into the selection of the   |should also include
   |text with a footnote (see   |footnotes (see comment 8)
   |comment 8)  |
   Keywords||needsUXEval
   Severity|normal  |enhancement
 Blocks||103164
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

--- Comment #10 from Dieter  ---
I think this is more an enhancement request than a bug. There might be good
reasons, why footnotes are not selected at the moment. But I would at least
expect, that all footnotes are selected if cursor is placed in footnote and
Strg+A is used.

cc: Design-Team


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103164
[Bug 103164] [META] Footnote and Endnote bugs and enhancements
-- 
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 99096] The ability to select and copy multiple footnotes/endnotes (into a new document)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99096

Dieter  changed:

   What|Removed |Added

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

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


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

2020-09-16 Thread László Németh (via logerrit)
 sw/qa/extras/ooxmlexport/data/tdf134784.docx  |binary
 sw/qa/extras/ooxmlexport/ooxmlexport11.cxx|   11 +++
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |7 ++-
 3 files changed, 17 insertions(+), 1 deletion(-)

New commits:
commit c04ee66c7cfeb725d637b0f9ec3e3b1f8776bfe9
Author: László Németh 
AuthorDate: Tue Sep 15 16:13:34 2020 +0200
Commit: László Németh 
CommitDate: Wed Sep 16 09:31:10 2020 +0200

tdf#134784 DOCX import: fix shape paragraph margins

based on bad style inheritance.

Regression from commit dc0300eac3b755bc207cd1fe87217f4ebaeb9f58
(tdf#118521 DOCX import: fix paragraph margin from paragraph style),
revealing the problematic m_sCurrentParaStyleName, see also
commit 8920d865ee148518bf71f71ce1866b24cc17c07e for more information.

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

diff --git a/sw/qa/extras/ooxmlexport/data/tdf134784.docx 
b/sw/qa/extras/ooxmlexport/data/tdf134784.docx
new file mode 100644
index ..2099db66e0f6
Binary files /dev/null and b/sw/qa/extras/ooxmlexport/data/tdf134784.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
index cd00389f063c..e7b996562803 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
@@ -802,6 +802,17 @@ DECLARE_OOXMLEXPORT_TEST(testMarginsFromStyle, 
"margins_from_style.docx")
 CPPUNIT_ASSERT_EQUAL(sal_Int32(600), 
getProperty(getParagraph(3), "ParaBottomMargin"));
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf134784, "tdf134784.docx")
+{
+uno::Reference textbox(getShape(1), uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(3, getParagraphs(textbox));
+uno::Reference xParagraph = getParagraphOfText(1, 
textbox);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(212), getProperty(xParagraph, 
"ParaBottomMargin"));
+
+// This wasn't zero (it was inherited from style of the previous paragraph 
in the main text)
+CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xParagraph, 
"ParaTopMargin"));
+}
+
 DECLARE_OOXMLEXPORT_TEST(testTdf104348_contextMargin, 
"tdf104348_contextMargin.docx")
 {
 // tdf#104348 shows that ContextMargin belongs with Top/Bottom handling
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 25030cbff4b6..b0facd429e0e 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -780,8 +780,13 @@ uno::Sequence< style::TabStop > 
DomainMapper_Impl::GetCurrentTabStopAndClear()
 
 OUString DomainMapper_Impl::GetCurrentParaStyleName()
 {
+OUString sName;
 // use saved currParaStyleName as a fallback, in case no particular para 
style name applied.
-OUString sName = m_sCurrentParaStyleName;
+// tdf#134784 except in the case of first paragraph of shapes to avoid bad 
fallback.
+// TODO fix this "highly inaccurate" m_sCurrentParaStyleName
+if ( !m_bIsFirstParaInShape )
+sName = m_sCurrentParaStyleName;
+
 PropertyMapPtr pParaContext = GetTopContextOfType(CONTEXT_PARAGRAPH);
 if ( pParaContext && pParaContext->isSet(PROP_PARA_STYLE_NAME) )
 pParaContext->getProperty(PROP_PARA_STYLE_NAME)->second >>= sName;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 134784] Paragraph spacing of first paragraph in a text frames is set to 0, 42 cm when importing/opening docx

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134784

László Németh  changed:

   What|Removed |Added

   Assignee|nem...@numbertext.org   |libreoffice-b...@lists.free
   ||desktop.org
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

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


[Libreoffice-bugs] [Bug 107830] [META] DOCX (OOXML) paragraph-related issues

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107830
Bug 107830 depends on bug 134784, which changed state.

Bug 134784 Summary: Paragraph spacing of first paragraph in a text frames is 
set to 0,42 cm when importing/opening docx
https://bugs.documentfoundation.org/show_bug.cgi?id=134784

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |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 136796] New: Fill down cells with VLOOKUP formula is slow

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136796

Bug ID: 136796
   Summary: Fill down cells with VLOOKUP formula is slow
   Product: LibreOffice
   Version: 6.4.6.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: suokunl...@126.com

Created attachment 165556
  --> https://bugs.documentfoundation.org/attachment.cgi?id=165556=edit
test ods file

It is very slow to fill down a column with VLOOKUP formula.

Steps to Reproduce:
1. Type in "=VLOOKUP(A2,$aufnr.A:B,2,0)" in cell B2 of tab Sheet3.
2. Fill down the formula by double-clicking the + handle at the bottom-right
corner of cell B2.

Current Behaviour:
It takes a lot of time (>40s) on my pc before this column is successfully
filled.

Expected:
The column is filled with vlookup formula within 3 seconds. 
Even the old Microsoft Excel 2010 can do this within 3s.

Version: 6.4.6.2
Build ID: 0ce51a4fd21bff07a5c061082cc82c5ed232f115
CPU threads: 4; OS: Linux 5.8; UI render: default; VCL: gtk3; 
Locale: zh-CN (zh_CN.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 105250] insert cross-reference: "insert reference to" should remember user selection

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105250

--- Comment #4 from Evangeline Castillo  ---
Different commands are used to find out the bugs and errors so that most of the
people use insertion command. More instance of
https://www.dissertationhqhelp.com/ are available here to get advantage of
insertion commands in finding out the 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 135938] Inserting Cross-reference [1]

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135938

Dieter  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|REOPENED|UNCONFIRMED

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


[Libreoffice-bugs] [Bug 136692] NAVIGATOR: Headings in Navigator should collapse, if cursor is moved to a different heading

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136692

Dieter  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||8766,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||5668

--- Comment #7 from Dieter  ---
(In reply to Christian Lehmann from comment #6)
> This is indeed a manual solution to the problem. Maybe it would be better to
> reassign the default behavior:
> - What is now called Focus should be the default setting.
> - What is now called Default may be called Spread [or something similar].

I agree.

BTW, see bug 135668 with request for update documentation.

-- 
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 135668] Writer Navigator: add info about sub-menu items in heading context menu

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135668

Dieter  changed:

   What|Removed |Added

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

-- 
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 135668] Writer Navigator: add info about sub-menu items in heading context menu

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135668

Dieter  changed:

   What|Removed |Added

Summary|Writer Navigator: add info  |Writer Navigator: add info
   |about sub-menu items in |about sub-menu items in
   |right-click menu|heading context menu

-- 
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 136795] Blastlands: Team Combat For PC (Windows & MAC)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136795

Ming Hua  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID
  Component|BASIC   |deletionRequest
Version|3.3.2 release   |unspecified

-- 
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 133921] McAfee login page

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133921

Ming Hua  changed:

   What|Removed |Added

URL|https://www.techwikies.com/ |
   |category/apps-for-pc/   |

-- 
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 133921] McAfee login page

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133921

Ming Hua  changed:

   What|Removed |Added

  Alias|techwikies  |
 Status|RESOLVED|CLOSED

-- 
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 50585] FILESAVE: Save in format 'docbook' does not work

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50585

--- Comment #10 from Buovjaga  ---
(In reply to tbb from comment #9)
> Dear QA Team,
> 
> a retest is not possible because the selection of the save format "Docbook
> (.XML)" results in a "Word 2003 XML" format. Short the Docbook support is
> completely off.

What do you mean? It seems to work for me:

http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd;>

  dsff


Tested with
Arch Linux 64-bit
Version: 7.0.1.2
Build ID: 00(Build:2)
CPU threads: 8; OS: Linux 5.8; UI render: default; VCL: kf5
Locale: fi-FI (fi_FI.UTF-8); Käyttöliittymä: fi-FI
=7.0.1-1
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 136453] Duplication of content after undo (spurious)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136453

Attila Baraksó (NISZ)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #5 from Attila Baraksó (NISZ)  ---
Reproduced in:

Version: 7.1.0.0.alpha0+ (x64)
Build ID: 8c18cd6823ddf4ef5ba67801a84cee26c9b5a9a6
CPU threads: 4; OS: Windows 10.0 Build 17134; UI render: Skia/Raster; VCL: win
Locale: hu-HU (hu_HU); UI: hu-HU
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 136773] The table of contents deletes the end of the document

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136773

--- Comment #17 from BogdanB  ---
The cursor should be one row down that in the video from comment 2. After that
line.

-- 
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 136773] The table of contents deletes the end of the document

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136773

BogdanB  changed:

   What|Removed |Added

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

--- Comment #16 from BogdanB  ---
Confirm this.

Version: 7.0.1.2 (x64)
Build ID: 7cbcfc562f6eb6708b5ff7d7397325de9e764452
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL: win
Locale: ro-RO (ro_RO); UI: en-US
Calc: threaded

The cursor should be on a second line from the image and the content is gone.

-- 
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


Re: Gdb + deprecated Python + gdb._execute_unwinders function is missing

2020-09-16 Thread Mike Kaganski

On 16.09.2020 9:52, julien2412 wrote:

Hello,

Since yesterday and I don't know why, when launching make debugrun, I got:
mkdir -p /home/julien/lo/libreoffice/instdir
/home/julien/lo/libreoffice/solenv/bin/install-gdb-printers -a
/home/julien/lo/libreoffice/instdir -c
make -j 12  -rs -f /home/julien/lo/libreoffice/Makefile.gbuild   debugrun
Python Exception  the imp module is deprecated
in favour of importlib; see the module's documentation for alternative uses:
gdb: warning:
Could not load the Python gdb module from `/usr/share/gdb/python'.
Limited Python support is available from the _gdb module.
Suggest passing --data-directory=/path/to/gdb/data-directory.

Once I get gdb command and type run --calc, I got, lots of this kind:
Starting program: /home/julien/lo/libreoffice/instdir/program/soffice.bin
--calc
Traceback (most recent call last):
   File "/home/julien/lo/libreoffice/instdir/program/libuno_sal.so.3-gdb.py",
line 14, in 
 import gdb
   File "/usr/share/gdb/python/gdb/__init__.py", line 23, in 
 from imp import reload
   File "/usr/lib/python3.8/imp.py", line 31, in 
 warnings.warn("the imp module is deprecated in favour of importlib; "
DeprecationWarning: the imp module is deprecated in favour of importlib; see
the module's documentation for alternative uses
Traceback (most recent call last):
   File
"/usr/share/gdb/auto-load/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28-gdb.py",
line 18, in 
 import gdb
   File "/usr/share/gdb/python/gdb/__init__.py", line 23, in 
 from imp import reload
   File "/usr/lib/python3.8/imp.py", line 31, in 
 warnings.warn("the imp module is deprecated in favour of importlib; "
DeprecationWarning: the imp module is deprecated in favour of importlib; see
the module's documentation for alternative uses

and at the end:
Python Exception  Installation error:
gdb._execute_unwinders function is missing:
Python Exception  Installation error:
gdb._execute_unwinders function is missing:

I'm on Debian testing updated every day.
I installed python3-gdbm and python3-gdbm-dbg

I runned "./autogen.sh && make clean && make" just to be sure there wasn't
any wrong remnants.

Any idea?


https://git.libreoffice.org/core/+/315919306c7b6e95db6a280c4aa8d2203970e292 
had made Python warnings the errors in werror builds...


--
Best regards,
Mike Kaganski
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 89606] [META] Table of Contents and Indexes bugs and enhancements

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89606
Bug 89606 depends on bug 136773, which changed state.

Bug 136773 Summary: The table of contents deletes the end of the document
https://bugs.documentfoundation.org/show_bug.cgi?id=136773

   What|Removed |Added

 Status|RESOLVED|NEW
 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 134598] Calc's Fill Format Mode function not available after New and Cancel (comment 9)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134598

Timur  changed:

   What|Removed |Added

   Priority|medium  |low
   Severity|normal  |trivial
   Keywords||bibisectRequest, regression
Summary|Calc's Fill Format Mode |Calc's Fill Format Mode
   |function not operating  |function not available
   |correctly in 7.0.0.0.beta2  |after New and Cancel
   |(regression from 6.4.4.2)   |(comment 9)
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #10 from Timur  ---
I'll confirm as trivial for Comment 9. Repro 7.1+.
Let's call it a regression in 7.0. Looks like somebody changed focus to remain
at the style after Cancel, because in 6.4 it used to go back to Default.

-- 
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 136692] NAVIGATOR: Headings in Navigator should collapse, if cursor is moved to a different heading

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136692

--- Comment #6 from Christian Lehmann  ---
This is indeed a manual solution to the problem. Maybe it would be better to
reassign the default behavior:
- What is now called Focus should be the default setting.
- What is now called Default may be called Spread [or something similar].

-- 
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 50585] FILESAVE: Save in format 'docbook' does not work

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50585

--- Comment #9 from t...@nurfuerspam.de ---
Dear QA Team,

a retest is not possible because the selection of the save format "Docbook
(.XML)" results in a "Word 2003 XML" format. Short the Docbook support is
completely off.

Bye Thomas

LO 6.4.4.2 (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 133921] McAfee login page

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133921

Techwikies  changed:

   What|Removed |Added

URL|https://www.techwikies.com  |https://www.techwikies.com/
   ||category/apps-for-pc/

-- 
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 133921] McAfee login page

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133921

--- Comment #4 from Techwikies  ---
We Always talk about technology

https://www.techwikies.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 136795] Blastlands: Team Combat For PC (Windows & MAC)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136795

--- Comment #1 from Techwikies  ---
With a graphic development in three dimensions, quite striking, we will have an
over
https://www.techwikies.com/apps-for-pc/blastlands-team-combat-pc

-- 
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 136795] New: Blastlands: Team Combat For PC (Windows & MAC)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136795

Bug ID: 136795
   Summary: Blastlands: Team Combat For PC (Windows & MAC)
   Product: LibreOffice
   Version: 3.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: techwikies@gmail.com

Description:
Blastlands is an action and adventure game in which we have to get into
exciting PvP fighting with teams made up of three soldiers. With a graphic
development in three dimensions, quite striking, we will have an overhead view
from which it is very comfortable to control each area of ​​the game.

Actual Results:
abc

Expected Results:
abc


Reproducible: Always


User Profile Reset: No



Additional Info:
xzy

-- 
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 45705] New UNO commands for "Zoom in" and "Zoom out" of document canvas, to support keyboard zoom (comment 21)

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45705

--- Comment #36 from Jim Raykowski  ---
Here is a patch that integrates the existing .uno:ZoomPlus and .uno:ZoomMinus
user interface commands into the Writer document canvas.

https://gerrit.libreoffice.org/c/core/+/102830

-- 
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 133921] McAfee login page

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133921

Techwikies  changed:

   What|Removed |Added

URL|https://www.customerservice |https://www.techwikies.com
   |phonedirectory.com/customer |
   |-service/cash-app/  |

-- 
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 133921] McAfee login page

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133921

Techwikies  changed:

   What|Removed |Added

  Alias||techwikies

-- 
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 136773] The table of contents deletes the end of the document

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136773

--- Comment #15 from Myosotis Arae  ---
I didn't. Really !
Try it : put the TOC just one line lower than you did.

-- 
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 126799] MYSQL/MariaDB native connector: Unknown Column Type "Text" in GUI when opening a Table

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126799

Julien Nabet  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED
 CC|serval2...@yahoo.fr |

-- 
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 113284] Crash opening index dialog

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113284

Julien Nabet  changed:

   What|Removed |Added

 Status|VERIFIED|CLOSED
 CC|serval2...@yahoo.fr |

-- 
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 136577] [EDITING] "Replace All" does not undo properly if the replacement string is empty

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136577

Attila Baraksó (NISZ)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||1912
 CC||barakso.att...@gmail.com,
   ||michael.st...@cib.de
   Keywords|bibisectRequest |bibisected, bisected

--- Comment #3 from Attila Baraksó (NISZ)  ---
Bibisected using bibisect-win64-7.1 to:
URL:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=e1629c210ad78310e3d48c0756723134a27b89df
author: Michael Stahl 
committer: Michael Stahl 
summary: tdf#131912 sw: fix spell check correct deleting flys

Adding CC: Michael Stahl

-- 
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 136773] The table of contents deletes the end of the document

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136773

--- Comment #14 from BogdanB  ---
Tested with
Version: 7.0.1.2 (x64)
Build ID: 7cbcfc562f6eb6708b5ff7d7397325de9e764452
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL: win
Locale: ro-RO (ro_RO); UI: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 136773] The table of contents deletes the end of the document

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136773

--- Comment #13 from BogdanB  ---
I tried on my Windows,
after I inserted the TOC, I moved the image with drag & drop where I needed. 

Very easy.

No text deleted.

-- 
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 113281] Use default icon theme after uninstalling an extension

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113281

--- Comment #3 from rickdutt  ---
Online surveys are very popular at present. McDVOICE is to find out the
feedback & Satisfaction of the McDonald's Customers. Enter McDonald's Customer
Satisfaction Survey at mcdvoice.win survey page and you could win a Validation
code.  https://mcdvoice.win

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


[Libreoffice-commits] core.git: download.lst external/pdfium solenv/flatpak-manifest.in

2020-09-16 Thread Miklos Vajna (via logerrit)
 download.lst   |4 ++--
 external/pdfium/Library_pdfium.mk  |3 ---
 external/pdfium/configs/build_config.h |6 +++---
 solenv/flatpak-manifest.in |6 +++---
 4 files changed, 8 insertions(+), 11 deletions(-)

New commits:
commit f19381e46930bb496e7331754843920933fb4be2
Author: Miklos Vajna 
AuthorDate: Tue Sep 15 21:02:48 2020 +0200
Commit: Miklos Vajna 
CommitDate: Wed Sep 16 08:39:06 2020 +0200

external: update pdfium to 4260

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

diff --git a/download.lst b/download.lst
index 345ddd19537b..659879a530a3 100644
--- a/download.lst
+++ b/download.lst
@@ -212,8 +212,8 @@ export OWNCLOUD_ANDROID_LIB_SHA256SUM := 
b18b3e3ef7fae6a79b62f2bb43cc47a5346b633
 export OWNCLOUD_ANDROID_LIB_TARBALL := 
owncloud-android-library-0.9.4-no-binary-deps.tar.gz
 export PAGEMAKER_SHA256SUM := 
66adacd705a7d19895e08eac46d1e851332adf2e736c566bef1164e7a442519d
 export PAGEMAKER_TARBALL := libpagemaker-0.0.4.tar.xz
-export PDFIUM_SHA256SUM := 
7a0dede6f4113aaa9d5395fd851caab9cf9691470f2d4abdc018773fb5f70e94
-export PDFIUM_TARBALL := pdfium-4203.tar.bz2
+export PDFIUM_SHA256SUM := 
cc5e4d8bffa679af181b54c05a63404becfc7d40cc69117b053248f8fe4e485c
+export PDFIUM_TARBALL := pdfium-4260.tar.bz2
 export PIXMAN_SHA256SUM := 
21b6b249b51c6800dc9553b65106e1e37d0e25df942c90531d4c3997aa20a88e
 export PIXMAN_TARBALL := e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz
 export LIBPNG_SHA256SUM := 
505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca
diff --git a/external/pdfium/Library_pdfium.mk 
b/external/pdfium/Library_pdfium.mk
index 7f928da28541..4ff465593f23 100644
--- a/external/pdfium/Library_pdfium.mk
+++ b/external/pdfium/Library_pdfium.mk
@@ -465,7 +465,6 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,pdfium,\
 UnpackedTarball/pdfium/core/fxge/cfx_renderdevice \
 UnpackedTarball/pdfium/core/fxge/cfx_substfont \
 UnpackedTarball/pdfium/core/fxge/cfx_unicodeencoding \
-UnpackedTarball/pdfium/core/fxge/fx_ge_fontmap \
 UnpackedTarball/pdfium/core/fxge/cfx_glyphbitmap \
 UnpackedTarball/pdfium/core/fxge/scoped_font_transform \
 UnpackedTarball/pdfium/core/fxge/text_glyph_pos \
@@ -474,8 +473,6 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,pdfium,\
 UnpackedTarball/pdfium/core/fxge/dib/cfx_cmyk_to_srgb \
 UnpackedTarball/pdfium/core/fxge/text_char_pos \
 UnpackedTarball/pdfium/core/fxge/cfx_face \
-   UnpackedTarball/pdfium/core/fxge/cfx_fillrenderoptions \
-   UnpackedTarball/pdfium/core/fxge/cfx_textrenderoptions \
 ))
 
 # javascript, build with pdf_enable_v8 disabled.
diff --git a/external/pdfium/configs/build_config.h 
b/external/pdfium/configs/build_config.h
index edd70af53034..ec93c278767c 100644
--- a/external/pdfium/configs/build_config.h
+++ b/external/pdfium/configs/build_config.h
@@ -6,7 +6,7 @@
 
 // This file adds defines about the platform we're currently building on.
 //  Operating System:
-//OS_WIN / OS_MACOSX / OS_LINUX / OS_POSIX (MACOSX or LINUX)
+//OS_WIN / OS_APPLE / OS_LINUX / OS_POSIX (MACOSX or LINUX)
 //  Compiler:
 //COMPILER_MSVC / COMPILER_GCC
 //  Processor:
@@ -21,7 +21,7 @@
 #define OS_ANDROID 1
 #define OS_LINUX 1
 #elif defined(__APPLE__)
-#define OS_MACOSX 1
+#define OS_APPLE 1
 #elif defined(__linux__)
 #define OS_LINUX 1
 #elif defined(__DragonFly__)
@@ -48,7 +48,7 @@
 
 // For access to standard POSIX features, use OS_POSIX instead of a more
 // specific macro.
-#if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_BSD) || 
defined(OS_SOLARIS)
+#if defined(OS_APPLE) || defined(OS_LINUX) || defined(OS_BSD) || 
defined(OS_SOLARIS)
 #define OS_POSIX 1
 #endif
 
diff --git a/solenv/flatpak-manifest.in b/solenv/flatpak-manifest.in
index df1bedfe0474..50cf723eb057 100644
--- a/solenv/flatpak-manifest.in
+++ b/solenv/flatpak-manifest.in
@@ -75,10 +75,10 @@
 "type": "shell"
 },
 {
-"url": 
"https://dev-www.libreoffice.org/src/pdfium-4203.tar.bz2;,
-"sha256": 
"7a0dede6f4113aaa9d5395fd851caab9cf9691470f2d4abdc018773fb5f70e94",
+"url": 
"https://dev-www.libreoffice.org/src/pdfium-4260.tar.bz2;,
+"sha256": 
"cc5e4d8bffa679af181b54c05a63404becfc7d40cc69117b053248f8fe4e485c",
 "type": "file",
-"dest-filename": "external/tarballs/pdfium-4203.tar.bz2"
+"dest-filename": "external/tarballs/pdfium-4260.tar.bz2"
 },
 {
 "url": 
"https://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz;,
___
Libreoffice-commits mailing list

[Libreoffice-bugs] [Bug 136773] The table of contents deletes the end of the document

2020-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136773

--- Comment #12 from Telesto  ---
I don't reproduce this with, maybe 6.4 branch only?
Version: 7.0.0.2
Build ID: c01aa64b6c3d89ebe5fe69c28c7adb24eb85249c
CPU threads: 4; OS: Mac OS X 10.12.6; UI render: default; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

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


<    1   2   3   4   5   6   7   >