[Libreoffice-bugs] [Bug 118554] CRASH: clicking outside of comments

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118554

Noel Grandin  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEW |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 118554] CRASH: clicking outside of comments

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118554

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=e040894fbe0765883e13d51fd6d6331adb09832c

tdf#118554 sc crash clicking outside of comments

It will be available in 6.2.0.

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

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

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


[Libreoffice-bugs] [Bug 118554] CRASH: clicking outside of comments

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118554

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.2.0

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


[Libreoffice-bugs] [Bug 118190] EDITING Pasting font formatted cells in a new sheet skews new text

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118190

--- Comment #12 from Emil Tanev  ---
Nope, it does not happen in English. I suspect it is the font family? Also,
notice how only the cells that have text are font-resized in Japanese (second
22 in the video) - this does not happen in English where all the cells get
bigger after the resize. So you cut and paste bigger cells in English and the
new text is not hidden.
It is a language specific bug it seems.

https://screencast-o-matic.com/watch/cF1DX4FQmX



Tested
Version: 6.2.0.0.alpha0+ (x64)
Build ID: 2986f4baa8bdef1f9ab9108240ea890075321be1
CPU threads: 1; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-07-06_23:43:30
Locale: en-US (en_US); Calc: group 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/source

2018-07-06 Thread Noel Grandin
 sc/source/ui/inc/tabview.hxx   |   11 ---
 sc/source/ui/view/tabview5.cxx |   15 ++-
 sc/source/ui/view/tabvwsh2.cxx |   23 +++
 3 files changed, 29 insertions(+), 20 deletions(-)

New commits:
commit e040894fbe0765883e13d51fd6d6331adb09832c
Author: Noel Grandin 
Date:   Fri Jul 6 19:25:13 2018 +0200

tdf#118554 sc crash clicking outside of comments

regression from
commit c7f762973d21118ce3f5b0baab8850dc89bc4765
loplugin:useuniqueptr in ScTabView

Change-Id: If7fd580f1a2fedbc6b707f59f196cbceffc95fe3
Reviewed-on: https://gerrit.libreoffice.org/57090
Reviewed-by: Noel Grandin 
Tested-by: Noel Grandin 

diff --git a/sc/source/ui/inc/tabview.hxx b/sc/source/ui/inc/tabview.hxx
index 52f838705a13..cc8dd64568c9 100644
--- a/sc/source/ui/inc/tabview.hxx
+++ b/sc/source/ui/inc/tabview.hxx
@@ -148,7 +148,10 @@ private:
 SizeaFrameSize; // passed on as for DoResize
 Point   aBorderPos;
 
-std::unique_ptr pDrawActual;
+// The ownership of these two is rather weird. we seem to need
+// to keep an old copy alive for some period of time to avoid crashing.
+FuPoor* pDrawActual;
+FuPoor* pDrawOld;
 
 std::array, 4> pGridWin;
 std::array, 2> pColBar;
@@ -325,8 +328,10 @@ public:
 boolIsDrawSelMode() const   { return bDrawSelMode; }
 voidSetDrawSelMode(bool bNew)   { bDrawSelMode = bNew; }
 
-voidSetDrawFuncPtr(std::unique_ptr pFuncPtr);
-FuPoor* GetDrawFuncPtr()  { return pDrawActual.get(); }
+voidSetDrawFuncPtr(FuPoor* pFuncPtr){ pDrawActual = 
pFuncPtr; }
+voidSetDrawFuncOldPtr(FuPoor* pFuncPtr) { pDrawOld = pFuncPtr; 
}
+FuPoor* GetDrawFuncPtr(){ return pDrawActual; }
+FuPoor* GetDrawFuncOldPtr() { return pDrawOld; }
 
 voidDrawDeselectAll();
 voidDrawMarkListHasChanged();
diff --git a/sc/source/ui/view/tabview5.cxx b/sc/source/ui/view/tabview5.cxx
index 6900ce9fc430..962fc20e5c9f 100644
--- a/sc/source/ui/view/tabview5.cxx
+++ b/sc/source/ui/view/tabview5.cxx
@@ -131,6 +131,7 @@ void ScTabView::Init()
 //  UpdateShow is done during resize or a copy of an existing view from 
ctor
 
 pDrawActual = nullptr;
+pDrawOld = nullptr;
 
 //  DrawView cannot be create in the TabView - ctor
 //  when the ViewShell isn't constructed yet...
@@ -158,7 +159,10 @@ ScTabView::~ScTabView()
 
 pPageBreakData.reset();
 
-pDrawActual.reset();
+delete pDrawActual;
+pDrawActual = nullptr;
+delete pDrawOld;
+pDrawOld = nullptr;
 
 if (comphelper::LibreOfficeKit::isActive())
 {
@@ -246,7 +250,7 @@ void ScTabView::MakeDrawView( TriState nForceDesignMode )
 // so that immediately can be drawn
 }
 SfxRequest aSfxRequest(SID_OBJECT_SELECT, SfxCallMode::SLOT, 
aViewData.GetViewShell()->GetPool());
-
SetDrawFuncPtr(o3tl::make_unique(*aViewData.GetViewShell(), 
GetActiveWin(), pDrawView,
+SetDrawFuncPtr(new FuSelection(*aViewData.GetViewShell(), 
GetActiveWin(), pDrawView,
pLayer,aSfxRequest));
 
 //  used when switching back from page preview: restore saved design 
mode state
@@ -684,11 +688,4 @@ void ScTabView::OnLOKNoteStateChanged(const ScPostIt* 
pNote)
 }
 }
 
-void ScTabView::SetDrawFuncPtr(std::unique_ptr pNew)
-{
-if (pDrawActual)
-pDrawActual->Deactivate();
-pDrawActual = std::move(pNew);
-}
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/ui/view/tabvwsh2.cxx b/sc/source/ui/view/tabvwsh2.cxx
index c93c46970727..b6c4b6a005a7 100644
--- a/sc/source/ui/view/tabvwsh2.cxx
+++ b/sc/source/ui/view/tabvwsh2.cxx
@@ -199,7 +199,14 @@ void ScTabViewShell::ExecDraw(SfxRequest& rReq)
 }
 
 if (pTabView->GetDrawFuncPtr())
+{
+if (pTabView->GetDrawFuncOldPtr() != pTabView->GetDrawFuncPtr())
+delete pTabView->GetDrawFuncOldPtr();
+
+pTabView->GetDrawFuncPtr()->Deactivate();
+pTabView->SetDrawFuncOldPtr(pTabView->GetDrawFuncPtr());
 pTabView->SetDrawFuncPtr(nullptr);
+}
 
 SfxRequest aNewReq(rReq);
 aNewReq.SetSlot(nDrawSfxId);
@@ -211,7 +218,7 @@ void ScTabViewShell::ExecDraw(SfxRequest& rReq)
 case SID_OBJECT_SELECT:
 // not always switch back
 if(pView->GetMarkedObjectList().GetMarkCount() == 0) 
SetDrawShell(bEx);
-pTabView->SetDrawFuncPtr(o3tl::make_unique(*this, 
pWin, pView, pDoc, aNewReq));
+pTabView->SetDrawFuncPtr(new FuSelection(*this, pWin, pView, pDoc, 
aNewReq));
 break;
 
 case SID_DRAW_LINE:
@@ -226,12 +233,12 @@ void ScTabViewShell::ExecDraw(SfxRequest& rReq)
 case SID_DRAW_RECT:
 

[Libreoffice-commits] translations.git: Changes to 'refs/tags/cp-5.3-53'

2018-07-06 Thread Andras Timar
Tag 'cp-5.3-53' created by Andras Timar  at 
2018-07-07 05:47 +

cp-5.3-53

Changes since cp-5.3-46:
Andras Timar (1):
  remove extra ~ characters from German translation

---
 source/de/officecfg/registry/data/org/openoffice/Office/UI.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Changes to 'refs/tags/cp-5.3-53'

2018-07-06 Thread Andras Timar
Tag 'cp-5.3-53' created by Andras Timar  at 
2018-07-07 05:47 +

cp-5.3-53

Changes since cp-5.3-52-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/cp-5.3-53'

2018-07-06 Thread Olivier R
Tag 'cp-5.3-53' created by Andras Timar  at 
2018-07-07 05:47 +

cp-5.3-53

Changes since cp-5.3-10:
Olivier R (1):
  tdf#107558 French spelling dictionary (6.0.3) and thesaurus

---
 fr_FR/README_fr.txt   |4 
 fr_FR/description.xml |2 
 fr_FR/fr.aff  |17751 ++--
 fr_FR/fr.dic  |155369 
+-
 fr_FR/package-description.txt |2 
 fr_FR/thes_fr.dat |  206 
 6 files changed, 88495 insertions(+), 84839 deletions(-)
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Changes to 'refs/tags/cp-5.3-53'

2018-07-06 Thread Andras Timar
Tag 'cp-5.3-53' created by Andras Timar  at 
2018-07-07 05:47 +

cp-5.3-53

Changes since libreoffice-5-3-branch-point-28:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - configure.ac

2018-07-06 Thread Andras Timar
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cf2ac11617bce9c49c92d8153ef12b55e5b903f3
Author: Andras Timar 
Date:   Sat Jul 7 07:47:30 2018 +0200

Bump version to 5.3-53

Change-Id: Id4529f2a4b1945009bcb30dd815db7abc4f3c396

diff --git a/configure.ac b/configure.ac
index 6ca9152ff9e2..9698e3c03428 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([Collabora Office],[5.3.10.52],[],[],[https://collaboraoffice.com/])
+AC_INIT([Collabora Office],[5.3.10.53],[],[],[https://collaboraoffice.com/])
 
 AC_PREREQ([2.59])
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118541] Undesired font embedded in pdf form created with Libre Office Writer

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118541

--- Comment #9 from himajin100...@gmail.com ---
typo:
I cannot see Helvetica nor ZapfDingbats in Jean's pdf.

-- 
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 118541] Undesired font embedded in pdf form created with Libre Office Writer

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118541

--- Comment #8 from himajin100...@gmail.com ---
At least on my PC, I cannot see Helvetica nor ZapfDingbats in pdf.
and I believe this is because the odt file did contain neither radio buttons,
checkboxes, nor push button. the odt file is just using text box.

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

2018-07-06 Thread Andrea Gelmini
 0 files changed

New commits:
commit 6784278aae45d979f37fcd0210d58b6a74e4fe32
Author: Andrea Gelmini 
Date:   Fri Jul 6 17:57:03 2018 +0200

Removed executable permission on odt file

Change-Id: I4d67c8b06aeb7ef14471b1d881f985484eab9af0
Reviewed-on: https://gerrit.libreoffice.org/57079
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sw/qa/extras/odfexport/data/tdf101856.odt 
b/sw/qa/extras/odfexport/data/tdf101856.odt
old mode 100755
new mode 100644
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-07-06 Thread Andrea Gelmini
 avmedia/source/gstreamer/gstcommon.hxx   |2 +-
 avmedia/source/quicktime/quicktimecommon.hxx |2 +-
 avmedia/source/vlc/vlccommon.hxx |2 +-
 avmedia/source/win/wincommon.hxx |2 +-
 configure.ac |2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 0e2c1ab9b7c987686037c6b90bb268a99f797c7f
Author: Andrea Gelmini 
Date:   Wed Jul 4 20:06:13 2018 +0200

Fix typo

Change-Id: I5c364f44ca86f536b490313f0cce88c6823d0abd
Reviewed-on: https://gerrit.libreoffice.org/56965
Reviewed-by: Julien Nabet 
Tested-by: Jenkins

diff --git a/configure.ac b/configure.ac
index 45c19e72b9c0..9a00abdb812f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11467,7 +11467,7 @@ test_font_map()
 AC_MSG_RESULT([ok])
 else
 AC_MSG_RESULT([unknown map '$FONTFILE'])
-add_warning "unkonwn map '$FONTFILE' for '$FONT'"
+add_warning "unknown map '$FONTFILE' for '$FONT'"
 TEST_FONTS_MISSING=1
 fi
 }
commit 8e9630935c6aced97758eab72322620e863ee70a
Author: Andrea Gelmini 
Date:   Thu Jul 5 14:07:37 2018 +0200

Fix typos

Change-Id: Ifc035f58ddc958bf7445a81a7fc0cb8f122061a3
Reviewed-on: https://gerrit.libreoffice.org/56316
Reviewed-by: Julien Nabet 
Tested-by: Jenkins

diff --git a/avmedia/source/gstreamer/gstcommon.hxx 
b/avmedia/source/gstreamer/gstcommon.hxx
index 2b9a773ae04f..98c99c3b6b18 100644
--- a/avmedia/source/gstreamer/gstcommon.hxx
+++ b/avmedia/source/gstreamer/gstcommon.hxx
@@ -41,6 +41,6 @@
 
 #define WM_GRAPHNOTIFY (WM_USER + 567)
 
-#endif // _GSTCOMMOM_HXX
+#endif // INCLUDED_AVMEDIA_SOURCE_GSTREAMER_GSTCOMMON_HXX
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/avmedia/source/quicktime/quicktimecommon.hxx 
b/avmedia/source/quicktime/quicktimecommon.hxx
index 1dedfabcf46e..cce2acd48d4d 100644
--- a/avmedia/source/quicktime/quicktimecommon.hxx
+++ b/avmedia/source/quicktime/quicktimecommon.hxx
@@ -52,6 +52,6 @@
 #define AVMEDIA_QUICKTIME_WINDOW_IMPLEMENTATIONNAME 
"com.sun.star.comp.avmedia.Window_QuickTime"
 #define AVMEDIA_QUICKTIME_WINDOW_SERVICENAME 
"com.sun.star.media.Window_QuickTime"
 
-#endif // _QUICKTIMECOMMOM_HXX
+#endif // INCLUDED_AVMEDIA_SOURCE_QUICKTIME_QUICKTIMECOMMON_HXX
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/avmedia/source/vlc/vlccommon.hxx b/avmedia/source/vlc/vlccommon.hxx
index 8d7895ca671c..effa79f90e3e 100644
--- a/avmedia/source/vlc/vlccommon.hxx
+++ b/avmedia/source/vlc/vlccommon.hxx
@@ -38,6 +38,6 @@
 #include 
 #include 
 
-#endif // _VLCCOMMOM_HXX
+#endif // INCLUDED_AVMEDIA_SOURCE_VLC_VLCCOMMON_HXX
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/avmedia/source/win/wincommon.hxx b/avmedia/source/win/wincommon.hxx
index e0a60640111d..f0277e169132 100644
--- a/avmedia/source/win/wincommon.hxx
+++ b/avmedia/source/win/wincommon.hxx
@@ -39,6 +39,6 @@
 
 #define WM_GRAPHNOTIFY (WM_USER + 567)
 
-#endif // _WINCOMMOM_HXX
+#endif // INCLUDED_AVMEDIA_SOURCE_WIN_WINCOMMON_HXX
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: chart2/source sc/source sd/source sfx2/source svx/source

2018-07-06 Thread Andrea Gelmini
 chart2/source/controller/drawinglayer/DrawViewWrapper.cxx |4 ++--
 sc/source/ui/view/dbfunc3.cxx |2 +-
 sd/source/ui/view/ViewShellBase.cxx   |2 +-
 sfx2/source/doc/objstor.cxx   |2 +-
 svx/source/svdraw/svdobj.cxx  |2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit d5c6087979a6a01c16eff6dab15b4b94770a2c14
Author: Andrea Gelmini 
Date:   Fri Jun 29 13:57:11 2018 +0200

Fix typos

Change-Id: I02edac50950327ca81acbb25ef1830f8e9130984
Reviewed-on: https://gerrit.libreoffice.org/56943
Reviewed-by: Julien Nabet 
Tested-by: Jenkins

diff --git a/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx 
b/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx
index 6330becfeb64..dce41b6a9de4 100644
--- a/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx
+++ b/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx
@@ -84,8 +84,8 @@ SfxObjectShell * lcl_GetParentObjectShell( const 
uno::Reference< frame::XModel >
 return pResult;
 }
 
-// this code is copied from sfx2/source/doc/objembed.cxx.  It is a workaround 
to
-// get the reference device (e.g. printer) fromthe parent document
+// this code is copied from sfx2/source/doc/objembed.cxx. It is a workaround to
+// get the reference device (e.g. printer) from the parent document
 OutputDevice * lcl_GetParentRefDevice( const uno::Reference< frame::XModel > & 
xModel )
 {
 SfxObjectShell * pParent = lcl_GetParentObjectShell( xModel );
diff --git a/sc/source/ui/view/dbfunc3.cxx b/sc/source/ui/view/dbfunc3.cxx
index 7474f22bbac4..6350e235f8f9 100644
--- a/sc/source/ui/view/dbfunc3.cxx
+++ b/sc/source/ui/view/dbfunc3.cxx
@@ -474,7 +474,7 @@ void ScDBFunc::DoSubTotals( const ScSubTotalParam& rParam, 
bool bRecord,
 rDoc.CopyToDocument( 0,0,0, MAXCOL,MAXROW,nTabCount-1,
 InsertDeleteFlags::FORMULA, false, 
*pUndoDoc );
 
-// data base and othe ranges
+// database and other ranges
 ScRangeName* pDocRange = rDoc.GetRangeName();
 if (!pDocRange->empty())
 pUndoRange = new ScRangeName( *pDocRange );
diff --git a/sd/source/ui/view/ViewShellBase.cxx 
b/sd/source/ui/view/ViewShellBase.cxx
index 5b32b7e8dbb1..590a32d837f0 100644
--- a/sd/source/ui/view/ViewShellBase.cxx
+++ b/sd/source/ui/view/ViewShellBase.cxx
@@ -162,7 +162,7 @@ public:
 bool bOuterResize);
 
 /** Show or hide the specified pane.  The visibility state is taken
-fromthe given request.
+from the given request.
 @param rRequest
 The request determines the new visibility state.  The state can
 either be toggled or be set to a given value.
diff --git a/sfx2/source/doc/objstor.cxx b/sfx2/source/doc/objstor.cxx
index 30bc90a80a51..f64a98ac4eaf 100644
--- a/sfx2/source/doc/objstor.cxx
+++ b/sfx2/source/doc/objstor.cxx
@@ -2253,7 +2253,7 @@ bool SfxObjectShell::ImportFrom(SfxMedium& rMedium,
 
 // tdf#107690 import custom document property _MarkAsFinal as 
SecurityOptOpenReadonly
 // (before this fix, LibreOffice opened read-only OOXML documents 
as editable,
-// also saved and exported _MarkAsFinal=true silently, resulting 
unintented read-only
+// also saved and exported _MarkAsFinal=true silently, resulting 
unintended read-only
 // warning info bar in MSO)
 uno::Reference< document::XDocumentPropertiesSupplier > 
xPropSupplier(GetModel(), uno::UNO_QUERY_THROW);
 uno::Reference xDocProps = 
xPropSupplier->getDocumentProperties() ;
diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx
index a463ea523fae..5d30142ca120 100644
--- a/svx/source/svdraw/svdobj.cxx
+++ b/svx/source/svdraw/svdobj.cxx
@@ -465,7 +465,7 @@ void SdrObject::handlePageChange(SdrPage* pOldPage, 
SdrPage* pNewPage)
 // e.g. from Writer - the SdrObject may be cloned to target model, and
 // the xShape was added to it by purpose (see there). Thus it will be
 // good to think about if this is really needed - it *seems* to be intended
-// for a xShape being a on-demand-creatable resource - wit hthe argument 
that
+// for a xShape being a on-demand-creatable resource - with the argument 
that
 // the SdrPage/UnoPage used influences the SvxShape creation. This uses
 // resources and would be nice to get rid of anyways.
 if(nullptr == pOldPage || nullptr == pNewPage)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118601] New: word in Greek with all letters capitalized is correct with or without accent (diacritical marks)

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118601

Bug ID: 118601
   Summary: word in Greek with all letters capitalized is correct
with or without accent (diacritical marks)
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Localization
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: apiuano-lob...@yahoo.gr

Description:
In Greek, words are considered orthographically correct even if they do not
have accents (diacritical marks). LibreOffice reports them as non
orthographically correct.

Steps to Reproduce:
1.Write any accented word in Greek: διακριτικός
2.Write the same word with all caps with accented letter: ΔΙΑΚΡΙΤΙΚΌΣ
3.Write the same word with all caps with non accented letter: ΔΙΑΚΡΙΤΙΚΟΣ

Actual Results:
LibreOffice report the non accented word with all caps (ΔΙΑΚΡΙΤΙΚΟΣ) as
orthographic error.

Expected Results:
A word should not be reported as orthographic error in both cases (with or
without accent)


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Deactivating check for capitalized words is not a solution since the
orthographic check is needed. An algorithm that will convert accented letters
to non accented and will consider both words (with or without accent) as
correct, needs to be implemented. I do not know about other languages, but it
is possible that still exist some languages that the capitalized version of
words is not considered as error with or without accent.
The problem is also bound to the "all caps" option. Most people want these
"temporary,just for print, transformations" to drop the accent, since they
prefer capitalized words without accents.

-- 
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: icon-themes/colibre

2018-07-06 Thread andreas kainz
 icon-themes/colibre/cmd/sc_insertcolumns.png  |binary
 icon-themes/colibre/cmd/sc_insertcolumnsafter.png |binary
 2 files changed

New commits:
commit b864589497f628055a238371e2124f2c4d7fb0bd
Author: andreas kainz 
Date:   Fri Jul 6 23:35:58 2018 +0200

Colibre icons: fix calc home tab (tabbedbar) with missing icons

Change-Id: Ifb2ff58a82895a55e7e7f3052bf7ac25a4cc50b7
Reviewed-on: https://gerrit.libreoffice.org/57094
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/icon-themes/colibre/cmd/sc_insertcolumns.png 
b/icon-themes/colibre/cmd/sc_insertcolumns.png
new file mode 100644
index ..22fa96729906
Binary files /dev/null and b/icon-themes/colibre/cmd/sc_insertcolumns.png differ
diff --git a/icon-themes/colibre/cmd/sc_insertcolumnsafter.png 
b/icon-themes/colibre/cmd/sc_insertcolumnsafter.png
new file mode 100644
index ..3b5e5940162d
Binary files /dev/null and b/icon-themes/colibre/cmd/sc_insertcolumnsafter.png 
differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 116625] [META] Bugs where document modification status is wrong

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116625

Aron Budea  changed:

   What|Removed |Added

 Blocks|109530  |
  Alias|OpensModified   |ModifiedStatus
Summary|[META] Files that open  |[META] Bugs where document
   |modified, but shouldn't |modification status is
   ||wrong

--- Comment #1 from Aron Budea  ---
Originally this meta was only about file opening, but there are other
situations where document modified status isn't correct.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=109530
[Bug 109530] [META] File opening issues
-- 
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 109530] [META] File opening issues

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109530

Aron Budea  changed:

   What|Removed |Added

 Depends on|116625  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116625
[Bug 116625] [META] Bugs where document modification status is wrong
-- 
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 85398] To cut table contents does not set document-modified flag

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85398

Aron Budea  changed:

   What|Removed |Added

 Blocks||116625


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116625
[Bug 116625] [META] Files that open modified, but shouldn't
-- 
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 116625] [META] Files that open modified, but shouldn't

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116625

Aron Budea  changed:

   What|Removed |Added

 Depends on||85398


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=85398
[Bug 85398] To cut table contents does not set document-modified flag
-- 
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 105225] Color palette cannot be chosen in various places

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105225

--- Comment #64 from Jim Raykowski  ---
Hi All,

I've sent in a patch that replaces the old background tab page with the new
background tab page for all uses except a couple I found in the Report code
that I don't know how to test or what it is.

Here is the patch:
https://gerrit.libreoffice.org/#/c/57102/

-- 
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 118600] Please Increased correlation and query capabilities of LibreOffice Base external data table

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118600

MING-LI JIANG  changed:

   What|Removed |Added

   Keywords||topicDebug, topicDesign

-- 
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 99602] subscript in character style not converted into docx

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99602

Jelle  changed:

   What|Removed |Added

   Keywords||regression
Version|4.5.0.0.alpha0+ Master  |Inherited From OOo

--- Comment #8 from Jelle  ---
I have also just tried it in LibreOffice 3.3, as suggested by last e-mail I
received. This is LibreOffice 3.3.0.4 in a virtual machine running Xubuntu
Linux 16.04.

To some degree the bug already existed then, although its behaviour in 3.3 was
better than it is now. As a result I have added 'regression' to the keywords,
but also changed the version to 'inherited from OOo'.

The file saved in .doc format looks pretty much the same in version 3.3 as in
6.0. Subscript heights are different from the baseline, but also different from
original .odt document.

The file saved in .docx format looks better in version 3.3 than in 6.0. The
subscript height is different from the .odt original, and also different from
the .doc version, but at least it is not on the baseline. 

All this relates to subscripts set with a character style. A subscript created
with Ctrl-Shift-B looks OK in all versions.

I hope that provides some more info.

-- 
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 118600] New: Please Increased correlation and query capabilities of LibreOffice Base external data table

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118600

Bug ID: 118600
   Summary: Please Increased correlation and query capabilities of
LibreOffice Base external data table
   Product: LibreOffice
   Version: 5.2.7.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: my9890...@yahoo.com.tw

Description:
dBase files can only be imported and cannot be associated with multiple tables.

Actual Results:
LibreOffice Base adds dBase (.DBF) file but cannot associate multiple data
tables.

Expected Results:
I hope to refer to the external data link function of Microsoft Office Access,
so that LibreOffice Base can be as powerful as Microsoft Office Access!


Reproducible: Always


User Profile Reset: No



Additional Info:

-- 
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 94510] Validity list of dates converted to numbers inside list

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94510

--- Comment #4 from QA Administrators  ---
** Please read this message in its entirety before responding **

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 45347] EDITING: AutoCorrect not working if there is a comment on the word in question

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45347

--- Comment #10 from QA Administrators  ---
** Please read this message in its entirety before responding **

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 81409] FILESAVE: Concordance file (.sdi)

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81409

--- Comment #11 from QA Administrators  ---
** Please read this message in its entirety before responding **

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 85325] FILEOPEN: Opening copy of document in use doesn't get listed in recent documents/start center

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85325

--- Comment #14 from QA Administrators  ---
** Please read this message in its entirety before responding **

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 108910] Concordance file for indexes breaks UTF-8 and turns the characters into ASCII

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108910

--- Comment #11 from QA Administrators  ---
** Please read this message in its entirety before responding **

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 46184] [Calc] [AutoFilter] Option "Copy results to ..." remains activated in AutoFilter

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46184

--- Comment #10 from QA Administrators  ---
** Please read this message in its entirety before responding **

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 91814] Problem when copying large table with floating-point values from Calc to Base (HSQLDB)

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91814

--- Comment #9 from QA Administrators  ---
** Please read this message in its entirety before responding **

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 108931] UI: grayscale B menu option wrong

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108931

--- Comment #6 from QA Administrators  ---
** Please read this message in its entirety before responding **

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 118570] Please update the da_DK dictionary

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118570

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Aron Budea  ---
I guess this can be confirmed for starters.

-- 
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 118596] Calc equation =1/(MINUTE(TIME(7, 30, 0))-MINUTE(TIME(21, 30, 0))) gives divide by zero error

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118596

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||ba...@caesar.elte.hu
 Resolution|--- |NOTABUG

--- Comment #1 from Aron Budea  ---
Please note that MINUTE(...) function returns an integer between 0 and 59, ie.
the minute part of the time.

If you want to calculate the difference between two times in minutes, you need
to account for the hours as well (if the difference is less than a day,
otherwise for days, 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 118465] RTF import does not repeat header / repeat heading / repeat as header row for table

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118465

--- Comment #7 from Michael J. Evans  ---
After giving up on creating my /own/ example file by hand (MS Word wound up in
an infinite loop generating the table over and over again), I have identified a
more likely cause of the issue.

http://www.biblioscape.com/rtf15_spec.htm

\trhdr

"Table row header. This row should appear at the top of every page the current
table appears on."

These look like the parts of the RTF filter that are broken.

https://cgit.freedesktop.org/libreoffice/core/tree/writerfilter/source/rtftok/rtfcontrolwords.hxx

https://cgit.freedesktop.org/libreoffice/core/tree/writerfilter/source/rtftok/rtfcontrolwords.cxx

The control word is identified, but no actions are taken based on it's
existence.

A unit test might also be failing based on \trhdr existing in...

https://cgit.freedesktop.org/libreoffice/core/tree/sw/qa/extras/rtfimport/data/tdf99498.rtf

Some of the svgtools files mention it.

Interestingly there's also this file:

https://cgit.freedesktop.org/libreoffice/core/tree/compilerplugins/clang/unusedenumconstants.writeonly.results

RTF_TRHDR is among the many RTF_ enums that are defined but "never actually
used".

Currently LibreOffice also cannot /export/ an RTF document with a repeating
header row (however adding the missing keyword manually does allow MS Word to
read it with that property).

-- 
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 103682] PDF export A4, A5 paper size is imprecise

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103682

--- Comment #9 from Aron Budea  ---
There's a -0.01 mm difference in size in the PDF exporter code, which could be
reliably eliminated, however then in some cases (Writer and Calc) there'd be a
0.01 mm difference because of conversion.

I debugged the Calc case, and the page size is coming from twips (probably also
converted from mm at the start, as the fixed page sizes are given in their
standard unit, then converted to 1/100 mm units for better accuracy):
11906 twips -> 210.01 mm

Unfortunately if it was stored as 11905 twips, that'd be converted to 209.99
mm, which would also be off.

Interestingly Draw doesn't seem to be affected by this, no idea why.

-- 
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: Branch 'feature/print_revamp' - vcl/uiconfig

2018-07-06 Thread Daniel Silva
 vcl/uiconfig/ui/printdialog.ui |   12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)

New commits:
commit aaa50a06155b366b797c932a4d30e070f11df1cb
Author: Daniel Silva 
Date:   Thu Jul 5 16:02:41 2018 -0300

Minor UI fixes in print dialog

Change-Id: I7a6ee82dd88911372854b3f44102417579e83ffe
Reviewed-on: https://gerrit.libreoffice.org/57020
Tested-by: Jenkins
Reviewed-by: Daniel Silva 

diff --git a/vcl/uiconfig/ui/printdialog.ui b/vcl/uiconfig/ui/printdialog.ui
index 4775d131fab5..0251d367f106 100644
--- a/vcl/uiconfig/ui/printdialog.ui
+++ b/vcl/uiconfig/ui/printdialog.ui
@@ -89,6 +89,7 @@
   
   
 False
+6
 dialog
 
   
@@ -121,7 +122,7 @@
 True
 True
 50
-50
+135
   
   
 True
@@ -215,6 +216,7 @@
 False
 center
 True
+True
 True
   
   
@@ -428,6 +430,7 @@
   
 True
 False
+6
 12
 
   
@@ -538,6 +541,7 @@
   
 True
 False
+6
 12
 
   
@@ -594,6 +598,7 @@
 True
 True
 False
+True
 True
   
   
@@ -727,6 +732,7 @@
 True
 False
 start
+True
 True
   
   
@@ -774,6 +780,7 @@
   
 True
 False
+6
 12
 
   
@@ -941,6 +948,7 @@
 False
 start
 True
+True
 True
 pagespersheetbtn
   
@@ -986,6 +994,7 @@
 True
 False
 start
+True
 True
   
   
@@ -1006,6 +1015,7 @@
 True
 False
 True
+True
 True
 brochure
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118599] New: EDITING: Paste uses wrong data

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118599

Bug ID: 118599
   Summary: EDITING: Paste uses wrong data
   Product: LibreOffice
   Version: 5.3.7.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: imno...@rock3d.net

I've had this problem for months but it is such a big issue I assumed it had to
be me or my hardware. Today it manifested itself in a different way and I don't
see how it could be anything I'm doing.

When copying or cutting then pasting a cell or cells the previously selected
data is used instead of the currently selected data. In other words it pastes
the previous entry on the clipboard instead of the current one. This does not
happen all the time but it does happen most of the time. Sometimes it doesn't
recognize the data that's being pasted and will ask what format it should be
pasted as.

I can reproduce this on different Calc spreadsheets but no other programs are
affected and pasting works normally for Thunderbird, kwrite and other programs.

Another manifestation is that occasionally when selecting and overwriting a
data range in the formula bar the beginning of the range is replaced with the
ending range and the ending range becomes a very large unrelated number. This
happens randomly but on average about 1 out of 20 times.

Today the third and most serious manifestation occurred. I copy and pasted a
range of cells containing formulas and they appeared fine. Then I noticed that
the data in the first cell had a value that couldn't be right. The formula
contained a range of values divided by an integer (creating an average of the
values). When you highlighted the cell the correct range and formula appeared
but the value was wrong. It appears that when it pasted the cell range the
beginning range updated correctly but the ending range didn't change so that
the pasted range now contained the incorrect number of cells.

This is a big deal since there is no way to know then the formula value is
wrong. The formula in the bar is correct but the underlying data references the
wrong range.

Here's the specific version I'm using:
Version: 5.3.7.2.0+
Build ID: 5.3.7.2-3.mga6
CPU Threads: 8; OS Version: Linux 4.14; UI Render: default; VCL: gtk3; Layout
Engine: new; 
Locale: en-US (en_US.UTF-8); Calc: group

This may be related to bug 99763.

-- 
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 82091] Spelling dialog correction of Calc cells does not remove red wavy underline, but context menu spelling correction does

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82091

--- Comment #15 from rpr  ---
I still see this bug in LO 6.1 RC1 (tested on MS Windows 10).

-- 
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 118559] Calc: Bug with copy+paste for joined cells that breaks neighbor cells into pieces (and breaks Undo/Redo in LO 5.x)

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118559

--- Comment #16 from marcusman  ---
Hm that online screencast website asks me to install an executable (.exe) file.
Not trustworthy enough.

Can we please set this to UNCONFIRMED? It's really easy to understand how to
reproduce this bug and what goes wrong. I don't think that a video/screencast
is necessary. Also, I would like to know if this bug is NEW or a 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 118559] Calc: Bug with copy+paste for joined cells that breaks neighbor cells into pieces (and breaks Undo/Redo in LO 5.x)

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118559

marcusman  changed:

   What|Removed |Added

Summary|Calc: Bug with copy+paste   |Calc: Bug with copy+paste
   |for joined cells that also  |for joined cells that
   |breaks Undo/Redo|breaks neighbor cells into
   ||pieces (and breaks
   ||Undo/Redo in LO 5.x)

--- Comment #15 from marcusman  ---
Hm, that online

-- 
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 118598] New: BASE form navigation toolbar record count not displayed correctly

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118598

Bug ID: 118598
   Summary: BASE form navigation toolbar record count not
displayed correctly
   Product: LibreOffice
   Version: 5.4.7.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: spu...@yahoo.com

Created attachment 143371
  --> https://bugs.documentfoundation.org/attachment.cgi?id=143371=edit
Screenshot showing overwrite issue

When a form has a subform (based on two recordsets), moving cursor between the
parent & child records results in the navigation toolbar max record count
updating but the new value overwrites the previous value.  User cannot read the
new max value as a result.  
Previous value should be cleared, and then new value written to ensure
overwrite does not happen.

-- 
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 118595] Background image of master not saved if set from sidebar

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118595

Drew Jensen  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Drew Jensen  ---
Confirmed with 5.4.7.2, 6.0.5.2 and 6.1.01 RC1

-- 
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 89893] When a document is in read-only mode, Edit->Track Changes->{Next, Previous} Change are greyed out

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89893

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |xiscofa...@libreoffice.org
   |desktop.org |

--- Comment #8 from Xisco Faulí  ---
Submitted a path to gerrit: https://gerrit.libreoffice.org/#/c/57100/

-- 
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 118597] New: pasting images into LibreOffice Writer is resulting in documents that won't print properly

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118597

Bug ID: 118597
   Summary: pasting images into LibreOffice Writer is resulting in
documents that won't print properly
   Product: LibreOffice
   Version: 6.0.5.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bugs.documentfoundation@open-sense.com

Description:
Several of our users have been complaining that print jobs from LibreOffice
haven't been printing properly: they either cause a printing error or not all
of the pages come out of the printer.  Here is an example document consisting
of images that were cut and pasted from a google image search in chrome:
http://s2.groovix.net/tmp/flowers-7-pages.odt

When you try to print it, it works on some printers, but when printing to some
printers like the HP 553 color printer you get cups filter errors.  If you
export it to PDF and then print it with another app like evince you only get
some of the pages.  If you print pages 1-4 and pages 5-6 separately the problem
does not occur!

I can't be 100% sure that this isn't just a problem with cups or specifically
ghostscript, but that document exhibits some very odd behavior even while
working with it in Writer.  As I tried to delete some images from it to figure
out which pages were causing the problem suddenly it would shrink down by
several pages.  Try deleting the first 2 images on page 1 , suddenly the
document goes down to 5 pages with a bunch of pictures overlapping - is that
normal?  Is the picture overlapping/formatting causing the printing problem?

My best guess is that LibreOffice Writer is generating print data that isn't
quite right.


Steps to Reproduce:
1. using Ubuntu 16.04 + libreoffice writer 6.0.5.2 open this document
http://s2.groovix.net/tmp/flowers-7-pages.odt
2. set up a new printer, change the driver to HP M553 Postscript [en]  (
recommended ) ( or grab the ppd from here:
http://s2.groovix.net/tmp/color_debug.ppd )  - note that you don't really have
to have an HP M553 printer, the error will occur while processing the job.  
3. print the document, you'll get an error and if you have your cups debug
level set to debug or debug2 you'll see "GPL Ghostscript 9.18: Unrecoverable
error, exit code 1" in /var/log/cups/error_log

Actual Results:
CUPS gives an error and the document is stuck in the queue as "processing" 

I narrowed the cups error down to this command:
gs -q -dNOPAUSE -dBATCH -dSAFER -sDEVICE=ps2write -sOUTPUTFILE=%stdout
-dLanguageLevel=3 -r600 -dCompressFonts=false -dNoT3CCITT -dNOINTERPOLATE -c
\'save pop\' -f /tmp/00bca5b47d0c1 

GPL Ghostscript 9.18: Unrecoverable error, exit code 1

Error: /undefined in 'save
Operand stack:

Execution stack:
   %interp_exit   .runexec2   --nostringval--   --nostringval--  
--nostringval--   2   %stopped_push   --nostringval--   --nostringval--  
--nostringval--   false   1   %stopped_push   .runexec2   --nostringval--  
--nostringval--   --nostringval--   2   %stopped_push   --nostringval--
Dictionary stack:
   --dict:1203/1684(ro)(G)--   --dict:0/20(G)--   --dict:78/200(L)--
Current allocation mode is local
%!PS-Adobe-3.0
%%BoundingBox: 0 0 612 792
%%HiResBoundingBox: 0 0 612.00 792.00
%%Creator: GPL Ghostscript 918 (ps2write)
%%LanguageLevel: 2
%%CreationDate: D:20180706164351-05'00'
%%Pages: 1
%%EndComments
%%BeginProlog
/DSC_OPDFREAD true def
... I can post the entire file if desired ...



Expected Results:
Document should print normally - haven't had an issue printing from any other
problem or with most libreoffice documents.  


Reproducible: Always


User Profile Reset: Yes



Additional Info:
This was just recently reported after moving to LibreOffice 6 , but using the
document in question the problem still occurs in LibreOffice 5.   

currently using Build ID 1:6.0.5~rc2-0ubuntu0.16.04.1~lo1

-- 
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 118596] New: Calc equation =1/(MINUTE(TIME(7, 30, 0))-MINUTE(TIME(21, 30, 0))) gives divide by zero error

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118596

Bug ID: 118596
   Summary: Calc equation
=1/(MINUTE(TIME(7,30,0))-MINUTE(TIME(21,30,0))) gives
divide by zero error
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tgru...@gmail.com

Description:
=1/(MINUTE(TIME(7,30,0))-MINUTE(TIME(21,30,0))) gives divide by zero error.
=1/(MINUTE(TIME(7,30,0))-MINUTE(TIME(21,31,0))) gives a real answer.
It looks as though if the minute part of two times subtract to zero calc
assumes the whole answer in minutes is zero for the purposes of recording a
divide by zero error.
My work around has been to add one minute to the second time value which for my
study is not significant.

Steps to Reproduce:
1.Start libre office calc
2. enter equation =1/(MINUTE(TIME(7,30,0))-MINUTE(TIME(21,30,0))) into cell
3.

Actual Results:
Divide by zero error

Expected Results:
a number 0.00 if cell format set to number with 2 decimal places.


Reproducible: Always


User Profile Reset: No



Additional Info:
Produced a value, 0.00 if cell format set to number with 2 decimal places.

-- 
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 115890] Assert when using tab to move between controls in the Navigator in the Sidebar

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115890

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.2.0

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


[Libreoffice-bugs] [Bug 115890] Assert when using tab to move between controls in the Navigator in the Sidebar

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115890

--- Comment #10 from Commit Notification 
 ---
Michael Stahl committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=2986f4baa8bdef1f9ab9108240ea890075321be1

tdf#115890 sw: fix invalid cast in SwContentTree::GetEntryAltText()

It will be available in 6.2.0.

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

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

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


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

2018-07-06 Thread Michael Stahl
 sw/source/uibase/utlui/content.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2986f4baa8bdef1f9ab9108240ea890075321be1
Author: Michael Stahl 
Date:   Fri Jul 6 18:39:20 2018 +0200

tdf#115890 sw: fix invalid cast in SwContentTree::GetEntryAltText()

AccessibleListBoxEntry calls this for any entry.

This was always broken but now we have asserts to tell us about it.

Change-Id: I7094a1dfbffd359e0f536ca60cba2478e2a62464
Reviewed-on: https://gerrit.libreoffice.org/57086
Reviewed-by: Michael Stahl 
Tested-by: Jenkins

diff --git a/sw/source/uibase/utlui/content.cxx 
b/sw/source/uibase/utlui/content.cxx
index 9536891056d7..0dabe3cf9b4b 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -930,7 +930,7 @@ Size SwContentTree::GetOptimalSize() const
 
 OUString SwContentTree::GetEntryAltText( SvTreeListEntry* pEntry ) const
 {
-if( pEntry == nullptr)
+if (pEntry == nullptr || !lcl_IsContent(pEntry))
 return OUString();
 
 assert(pEntry->GetUserData() == nullptr || 
dynamic_cast(static_cast(pEntry->GetUserData(;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-0' - xmloff/source

2018-07-06 Thread Michael Stahl
 xmloff/source/forms/elementimport.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2bd85bfd98203cc11e2391e01e9f8d70a9037214
Author: Michael Stahl 
Date:   Fri Jul 6 17:33:28 2018 +0200

tdf#117261 xmloff: ODF import: convert form:connection-resource URL

... to absolute on import.

(regression from fbb3b60cdb7a22595eec80232bb3ccd83781cf00)

Change-Id: I2cd046e44489da86d3d67ff5df6cbad13e8265d0
Reviewed-on: https://gerrit.libreoffice.org/57076
Reviewed-by: Michael Stahl 
Tested-by: Jenkins
(cherry picked from commit 510209df4bcf457cac819e75889d564d620f119d)
Reviewed-on: https://gerrit.libreoffice.org/57093
Reviewed-by: Thorsten Behrens 

diff --git a/xmloff/source/forms/elementimport.cxx 
b/xmloff/source/forms/elementimport.cxx
index 74775302105e..f54e18dc1e84 100644
--- a/xmloff/source/forms/elementimport.cxx
+++ b/xmloff/source/forms/elementimport.cxx
@@ -2041,7 +2041,7 @@ namespace xmloff
 )
 {
 OUString sValue = _xAttrList->getValueByIndex( i );
-
+sValue = _rImport.GetAbsoluteReference(sValue);
 INetURLObject aURL(sValue);
 if ( aURL.GetProtocol() == INetProtocol::File )
 
_xElement->setPropertyValue(PROPERTY_DATASOURCENAME,makeAny(sValue));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - xmloff/source

2018-07-06 Thread Michael Stahl
 xmloff/source/forms/elementimport.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 89183e6e5bf2f6fdd96418d9007f39d5757647d1
Author: Michael Stahl 
Date:   Fri Jul 6 17:33:28 2018 +0200

tdf#117261 xmloff: ODF import: convert form:connection-resource URL

... to absolute on import.

(regression from fbb3b60cdb7a22595eec80232bb3ccd83781cf00)

Change-Id: I2cd046e44489da86d3d67ff5df6cbad13e8265d0
Reviewed-on: https://gerrit.libreoffice.org/57076
Reviewed-by: Michael Stahl 
Tested-by: Jenkins
(cherry picked from commit 510209df4bcf457cac819e75889d564d620f119d)
Reviewed-on: https://gerrit.libreoffice.org/57092
Reviewed-by: Thorsten Behrens 

diff --git a/xmloff/source/forms/elementimport.cxx 
b/xmloff/source/forms/elementimport.cxx
index 87d633bd0e5d..7cce225e0257 100644
--- a/xmloff/source/forms/elementimport.cxx
+++ b/xmloff/source/forms/elementimport.cxx
@@ -2048,7 +2048,7 @@ namespace xmloff
 )
 {
 OUString sValue = _xAttrList->getValueByIndex( i );
-
+sValue = _rImport.GetAbsoluteReference(sValue);
 INetURLObject aURL(sValue);
 if ( aURL.GetProtocol() == INetProtocol::File )
 
_xElement->setPropertyValue(PROPERTY_DATASOURCENAME,makeAny(sValue));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114131] Inserting new rows/columns not disabled in read-only spreadsheet when right-clicking on rows or columns

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114131

Xisco Faulí  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |xiscofa...@libreoffice.org
   |desktop.org |
 CC||xiscofa...@libreoffice.org
 Status|NEW |ASSIGNED

--- Comment #6 from Xisco Faulí  ---
Patch submitted to gerrit: https://gerrit.libreoffice.org/#/c/57098/

-- 
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: loleaflet/src

2018-07-06 Thread Tor Lillqvist
 loleaflet/src/map/Map.js |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 72dfbc95943d68d717ba2338e4211673bfa223ba
Author: Tor Lillqvist 
Date:   Fri Jul 6 20:06:16 2018 +0300

Our zoom step factor is 1.2, not 2 as in upstream

This change makes the zooming animation of the document while doing a
pinch gesture (closing and/or opening) match the finger movement much
better.

(But sure, there is till lots of weird jumping around after finishing
the pinch gesture.)

Change-Id: I9d5affe653c1a0ebaebced54629bc9e8d9de5854
Reviewed-on: https://gerrit.libreoffice.org/57089
Reviewed-by: Tor Lillqvist 
Tested-by: Tor Lillqvist 

diff --git a/loleaflet/src/map/Map.js b/loleaflet/src/map/Map.js
index 609153900..f18ae861a 100644
--- a/loleaflet/src/map/Map.js
+++ b/loleaflet/src/map/Map.js
@@ -603,7 +603,7 @@ L.Map = L.Evented.extend({
 
getScaleZoom: function (scale, fromZoom) {
fromZoom = fromZoom === undefined ? this._zoom : fromZoom;
-   return fromZoom + (Math.log(scale) / Math.LN2);
+   return fromZoom + (Math.log(scale) / Math.log(1.2));
},
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: vcl/inc vcl/unx

2018-07-06 Thread Thorsten Behrens
 vcl/inc/unx/x11_cursors/null_curs.h |1 -
 vcl/inc/unx/x11_cursors/null_mask.h |1 -
 vcl/unx/generic/app/saldisp.cxx |3 +++
 vcl/unx/gtk/gtkdata.cxx |3 +++
 vcl/unx/gtk3/gtk3gtkdata.cxx|5 -
 5 files changed, 10 insertions(+), 3 deletions(-)

New commits:
commit ad955de670c822c5462990ef36a35608eac88480
Author: Thorsten Behrens 
Date:   Thu Mar 1 14:57:58 2018 +0100

WaE: -Wunused-variable

Change-Id: I58f012ddc2c5030b0e3e215b9cab4e89abf06c2b
Reviewed-on: https://gerrit.libreoffice.org/57066
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/vcl/inc/unx/x11_cursors/null_curs.h 
b/vcl/inc/unx/x11_cursors/null_curs.h
index d74b462cba9b..ebeee4e6ffc5 100644
--- a/vcl/inc/unx/x11_cursors/null_curs.h
+++ b/vcl/inc/unx/x11_cursors/null_curs.h
@@ -20,6 +20,5 @@
 #define nullcurs_height 4
 #define nullcurs_x_hot 2
 #define nullcurs_y_hot 2
-static unsigned char nullcurs_bits[] = { 0x00, 0x00, 0x00, 0x00 };
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/inc/unx/x11_cursors/null_mask.h 
b/vcl/inc/unx/x11_cursors/null_mask.h
index bc23e9c9729b..71f08a94afcf 100644
--- a/vcl/inc/unx/x11_cursors/null_mask.h
+++ b/vcl/inc/unx/x11_cursors/null_mask.h
@@ -18,6 +18,5 @@
  */
 #define nullmask_width 4
 #define nullmask_height 4
-static unsigned char nullmask_bits[] = { 0x00, 0x00, 0x00, 0x00 };
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/unx/generic/app/saldisp.cxx b/vcl/unx/generic/app/saldisp.cxx
index dff49c8e8b7c..ddce3f81da27 100644
--- a/vcl/unx/generic/app/saldisp.cxx
+++ b/vcl/unx/generic/app/saldisp.cxx
@@ -1494,6 +1494,9 @@ KeySym SalDisplay::GetKeySym( XKeyEvent*pEvent,
 }
 
 // Pointer
+static unsigned char nullmask_bits[] = { 0x00, 0x00, 0x00, 0x00 };
+static unsigned char nullcurs_bits[] = { 0x00, 0x00, 0x00, 0x00 };
+
 #define MAKE_BITMAP( name ) \
 XCreateBitmapFromData( pDisp_, \
DefaultRootWindow( pDisp_ ), \
diff --git a/vcl/unx/gtk/gtkdata.cxx b/vcl/unx/gtk/gtkdata.cxx
index 7c9a3d1e0fbc..689fa071ce5b 100644
--- a/vcl/unx/gtk/gtkdata.cxx
+++ b/vcl/unx/gtk/gtkdata.cxx
@@ -245,6 +245,9 @@ GdkCursor* GtkSalDisplay::getFromXBM( const unsigned char 
*pBitmap,
   , , nXHot, nYHot);
 }
 
+static unsigned char nullmask_bits[] = { 0x00, 0x00, 0x00, 0x00 };
+static unsigned char nullcurs_bits[] = { 0x00, 0x00, 0x00, 0x00 };
+
 #define MAKE_CURSOR( vcl_name, name ) \
 case vcl_name: \
 pCursor = getFromXBM( name##curs##_bits, name##mask##_bits, \
diff --git a/vcl/unx/gtk3/gtk3gtkdata.cxx b/vcl/unx/gtk3/gtk3gtkdata.cxx
index fd5b47f0b626..024dac2a5014 100644
--- a/vcl/unx/gtk3/gtk3gtkdata.cxx
+++ b/vcl/unx/gtk3/gtk3gtkdata.cxx
@@ -213,7 +213,10 @@ GdkCursor* GtkSalDisplay::getFromXBM( const unsigned char 
*pBitmap,
 return cursor;
 }
 
-#define MAKE_CURSOR( vcl_name, name ) \
+static unsigned char nullmask_bits[] = { 0x00, 0x00, 0x00, 0x00 };
+static unsigned char nullcurs_bits[] = { 0x00, 0x00, 0x00, 0x00 };
+
+#define MAKE_CURSOR( vcl_name, name )   \
 case vcl_name: \
 pCursor = getFromXBM( name##curs##_bits, name##mask##_bits, \
   name##curs_width, name##curs_height, \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104449] [META] DOCX (OOXML) textbox-related issues

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104449

Luke  changed:

   What|Removed |Added

 Depends on||84678


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=84678
[Bug 84678] FILEOPEN: .DOCX textbox margins incorrectly set in 4.4.x
-- 
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 106153] Text boxes overlapping the page borders are handled wrong

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106153

--- Comment #5 from Luke  ---
Still not working in Version: 6.2.0.0.alpha0+
Build ID: 61a7a43e3a37e1b1fb764f7be2dc1b5504162ec0

-- 
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 113541] EDITING - Link to external documents is not created correctly - incorrect URL formation when path contains upper case, spaces and '!', '#' or '$' characters

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113541

--- Comment #18 from bunkem  ---
Problem is found in this version too.

Version: 6.1.0.0.beta1
Build ID: 8c76dfe1284e211954c30f219b3a38dcdd82f8a0
CPU threads: 8; OS: Mac OS X 10.11.6; UI render: default; 
Locale: en-CA (en.UTF-8); Calc: group

So it's back to 6.1.0.0alpha1

-- 
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 118283] Crash reports lack information since 6.1 beta1

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118283

--- Comment #6 from Aron Budea  ---
(In reply to Xisco Faulí from comment #5)
> Is it more valuable in 6.0.5.2 ?
Yes:
http://crashreport.libreoffice.org/stats/crash_details/b25d7af0-4f73-4066-9f55-8abbd2532a9b

-- 
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 97629] [META] Help Content Modernization

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97629
Bug 97629 depends on bug 118589, which changed state.

Bug 118589 Summary: [NEWHELP] Editing: F1 key does nothing directly after the 
user previews a transition
https://bugs.documentfoundation.org/show_bug.cgi?id=118589

   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 118589] [NEWHELP] Editing: F1 key does nothing directly after the user previews a transition

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118589

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1
 Resolution|DUPLICATE   |---
 Status|RESOLVED|NEW
 Blocks||97629

--- Comment #2 from V Stuart Foote  ---
confirmed on Windows 10 Ent 64-bit en-US with
Version: 6.1.0.1 (x64)
Build ID: 378e26bd4f22a135cef5fa17afd5d4171d8da21a
CPU threads: 8; OS: Windows 10.0; UI render: GL; 
Locale: en-US (en_US); Calc: CL

With a transition selected, the F1 Help request does not launch. Cursor
positioned elsewhere in the Sidebar content panels does trigger, but just the
generic IMPRESS module help.

Not a duplicate of bug 109135 -- bcz with an /a admin install of
Version: 5.4.4.2 (x64)
Build ID: 2524958677847fb3bb44820e40380acbe820f960
CPU threads: 8; OS: Windows 6.19; UI render: GL; 
Locale: en-US (en_US); Calc: group

without local help installed, an F1 while on a slide transition in the Sidebar
content panel does respond--returning:

https://help.libreoffice.org/simpress/modules/simpress/ui/slidetransitionspanel/transitions_icons?Language=en-US=WIN=5.4


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97629
[Bug 97629] [META] Help Content Modernization
-- 
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 97629] [META] Help Content Modernization

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97629

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||118589


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118589
[Bug 118589] [NEWHELP] Editing: F1 key does nothing directly after the user
previews a transition
-- 
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 113541] EDITING - Link to external documents is not created correctly - incorrect URL formation when path contains upper case, spaces and '!', '#' or '$' characters

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113541

--- Comment #17 from bunkem  ---
OK just tested 6.1b and the linking problem is present again.

Version: 6.1.0.1
Build ID: 378e26bd4f22a135cef5fa17afd5d4171d8da21a
CPU threads: 8; OS: Mac OS X 10.11.6; UI render: default; 
Locale: en-CA (en.UTF-8); Calc: group threaded

Major frustration.  Now I have to find version
Version: 6.0.1.0.0+
Build ID: d76fc1a87a31bf513f844be933996334ea85446c
as that was the last one that linked properly.

Could we please get this 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 118283] Crash reports lack information since 6.1 beta1

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118283

--- Comment #5 from Xisco Faulí  ---
(In reply to Aron Budea from comment #4)
> (In reply to Xisco Faulí from comment #3)
> > No longer reproducible in
> > 
> > Versión: 6.1.0.1
> > Id. de compilación: 378e26bd4f22a135cef5fa17afd5d4171d8da21a
> > Subprocs. CPU: 1; SO: Windows 6.1; Repres. IU: predet.; 
> > Configuración regional: es-ES (es_ES); Calc: group threaded
> > 
> > Crash signature for bug 87:
> > crashreport.libreoffice.org/stats/crash_details/91d382ef-7d2b-49a1-a843-
> > 228fdecb7b00
> With 4 levels that's not a complete backtrace, is it?
> 
> Also, here's my crash report, which unfortunately contains nothing of value:
> http://crashreport.libreoffice.org/stats/crash_details/836762c7-2345-437e-
> ba61-bc9f3c9dd9e2

Is it more valuable in 6.0.5.2 ?

-- 
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 113541] EDITING - Link to external documents is not created correctly - incorrect URL formation when path contains upper case, spaces and '!', '#' or '$' characters

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113541

bunkem  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |---
 Status|RESOLVED|REOPENED

--- Comment #16 from bunkem  ---
Today while using 6.2alpha I had the need to link spreadsheets and the problem
is found in the most recent master that I've been able to download.  

Version: 6.2.0.0.alpha0+
Build ID: c8d95ccecfcd31b720fdff67bbd6acbdceaf2546
CPU threads: 8; OS: Mac OS X 10.11.6; UI render: default; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2018-06-18_00:27:45
Locale: en-CA (en.UTF-8); Calc: group threaded


Incidentally it is also found in 6.0.5.2
Version: 6.0.5.2
Build ID: 54c8cbb85f300ac59db32fe8a675ff7683cd5a16
CPU threads: 8; OS: Mac OS X 10.11.6; UI render: default; 
Locale: en-CA (en.UTF-8); Calc: group

Sigh.  I wish this would get fixed in all new versions ...

I will now test 6.1.0b1.

-- 
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 118561] Calc: How to do this special lookup in external file? Arrays on IF function.

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118561

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #10 from Eike Rathke  ---
This boils down to an external reference not being supported in the THEN or
ELSE paths of an IF jump if in array/matrix mode. Short reproducer:

=IF('problem_2_external_file.ods'#$external_data.B$1:B$9=B14,'problem_2_external_file.ods'#$external_data.C$1:C$9)

entered in any cell of problem_2_main_file.ods as array formula (closed with
Shift+Ctrl+Enter) for the preselected fruits case in B14 displays the first 5
values as Err:502 (which should be the matching 5 fruits) followed by 4 values
FALSE (as there are no more matches for fruits in the range).

Taking.

-- 
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 118595] New: Background image of master not saved if set from sidebar

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118595

Bug ID: 118595
   Summary: Background image of master not saved if set from
sidebar
   Product: LibreOffice
   Version: 5.4.7.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Make a new presentation without template.
Use menu View to switch to Master View.
Select fill type Bitmap in the field Background in the sidebar.
Select one of the images from the drop-down list below that field.
Close Master View.
Add some content, e.g. title and subtitle
Save the presentation.
Reopen the document.

Notice, that the background image is missing.

Open the file styles.xml of the saved file. The  element of family
drawing-page has a draw:fill="bitmap" attribute, but the associated
draw:fill-image-name attribute is missing.

-- 
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 118588] [NEWHELP] Editing; There seems to be no help entry dealing with inserting or working with tables in the Impress pages

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118588

V Stuart Foote  changed:

   What|Removed |Added

 Blocks||97629
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||olivier.hallot@documentfoun
   ||dation.org,
   ||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
Confirmed on Windows 10 Ent 64-bit en-US with
Version: 6.1.0.1 (x64)
Build ID: 378e26bd4f22a135cef5fa17afd5d4171d8da21a
CPU threads: 8; OS: Windows 10.0; UI render: GL; 
Locale: en-US (en_US); Calc: CL

No local help installed so F1 to web help...

Think it should be linking to the "Table Bar" article, which does show in the
shared "default toolbar configuration" article -> main0200.html for IMPRESS
help, but on selection it is annotated as a WRITER article. Guess there is a
whole class of these that need some sort of cross index?

https://help.libreoffice.org/6.1/en-US/text/shared/main0204.html?=WRITER=WIN


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97629
[Bug 97629] [META] Help Content Modernization
-- 
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 97629] [META] Help Content Modernization

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97629

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||118588


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118588
[Bug 118588] [NEWHELP] Editing; There seems to be no help entry dealing with
inserting or working with tables in the Impress pages
-- 
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: Branch 'libreoffice-6-1' - icon-themes/colibre icon-themes/colibre_svg officecfg/registry

2018-07-06 Thread andreas kainz
 icon-themes/colibre/cmd/sc_sendfeedback.png  |binary
 icon-themes/colibre_svg/cmd/sc_sendfeedback.svg  |4 

 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |3 +++
 3 files changed, 7 insertions(+)

New commits:
commit e83f7f242d7b3c1e44546312f5e240fb246273b3
Author: andreas kainz 
Date:   Fri Jul 6 10:26:27 2018 +0200

Menubar icons: add icon to Help -> SendFeedback

Change-Id: If88c59e6beddfdfcca95448334cc558ae5720366
Reviewed-on: https://gerrit.libreoffice.org/57042
Tested-by: Jenkins
Reviewed-by: andreas_kainz 
(cherry picked from commit 27ec8e8ab4d670c764c0fc6c550c5a46c7bbf7c7)
Reviewed-on: https://gerrit.libreoffice.org/57053

diff --git a/icon-themes/colibre/cmd/sc_sendfeedback.png 
b/icon-themes/colibre/cmd/sc_sendfeedback.png
new file mode 100644
index ..57f675740a6f
Binary files /dev/null and b/icon-themes/colibre/cmd/sc_sendfeedback.png differ
diff --git a/icon-themes/colibre_svg/cmd/sc_sendfeedback.svg 
b/icon-themes/colibre_svg/cmd/sc_sendfeedback.svg
new file mode 100644
index ..f68a9c1b9382
--- /dev/null
+++ b/icon-themes/colibre_svg/cmd/sc_sendfeedback.svg
@@ -0,0 +1,4 @@
+http://www.w3.org/2000/svg;>
+
+ /
+ 
\ No newline at end of file
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index e15a5c063e16..171766ae25ad 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -4997,6 +4997,9 @@
 
   Send Feedback...
 
+
+  1
+
   
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100307] Problem installing non-basic extension as shared (see comment 5)

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100307

--- Comment #19 from moocan  ---
Hello,

I don't know if it could help somebody.

I tried to installed to install the Grammalecte (https://www.dicollecte.org/)
extension as a shared one.

[ A ]

I tried using Justin L suggestion :
  $ LO_EXTENSION_DIR=/usr/lib/libreoffice/share/extensions
  $ sudo unzip -q -d "${LO_EXTENSION_DIR}/${LO_EXTENSION}" 
"${LO_EXTENSION}.oxt"

> This did not work for me too !

[ B ]

I tried using unopkg tool
$ sudo unopkg add --shared Grammalecte-fr-v0.6.5.oxt
As reported by rolfofsax...@gmail.com extension is installed in
/var/spool/libreoffice/uno_packages/cache/uno_packages/*tmp/Grammalecte-fr-v0.6.5.oxt
.
Only root can use it. No standard users can use the extension and the extension
is even not loaded  ... no additional menu in my case.
So I moved all created files by unopkg from
/libreoffice/uno_packages/cache/uno_packages/*tmp/* to
/usr/lib/libreoffice/share/extensions

> This worked well. Extension is listed, and all users can use it. Extension 
> can't be removed by standard users and seen as bundled with LibreOffice.

I tried to understand what are the differences between method [A] and [B]
I compared the crc and content of all files
- All files contained in oxt zip file remains exactly the same using unzip or
unopkg
- unopkg tool has created a new properties file named
Grammalecte-fr-v0.6.5.oxtproperties which contains properties related to the
extension as SUPPRESS_LICENSE=0
I tried to delete this file but the extension is still loaded.
- unopkg created many __pycache__ folders which are cantaining files.
I tried to delete these __pycache__ folders and then the extension is no more
loaded.

I tried same method with another extension and I got the same results.
So I don't know why unopkg is doing it works in
/var/spool/libreoffice/uno_packages/...

I don't know if it will work for all extension.
I hope this can help somebody.

Kind Regards

-- 
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: Branch 'distro/collabora/cp-5.3' - desktop/source

2018-07-06 Thread Aron Budea
 desktop/source/lib/init.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit bd88f41d53881fd1a3ad42268cd76d598bdd7838
Author: Aron Budea 
Date:   Fri Jul 6 15:32:49 2018 +0200

desktop: move dictionary preload before font init

spell-checker is initialized during font init

since e7f65920b12517b31f0c5cbfd0dcb8df96d20ba4

Change-Id: Ia5b5223aa8cc00d0e80451142ae18a7046ad00d4
Reviewed-on: https://gerrit.libreoffice.org/57064
Reviewed-by: Ashod Nakashian 
Tested-by: Ashod Nakashian 

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 687e37e7f29d..fe1368376076 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -3835,6 +3835,8 @@ static int lo_initialize(LibreOfficeKit* pThis, const 
char* pAppPath, const char
 // 3) InitVCL()
 aService->initialize({css::uno::makeAny("preload")});
 
+preloadData();
+
 // Initialize fonts.
 css::uno::Sequence< css::lang::Locale > aLocales;
 css::uno::Reference 
xLangSrv = css::linguistic2::LinguServiceManager::create(xContext);
@@ -3859,8 +3861,6 @@ static int lo_initialize(LibreOfficeKit* pThis, const 
char* pAppPath, const char
 
OutputDevice::GetDefaultFont(DefaultFontType::CTL_SPREADSHEET, nLang, 
GetDefaultFontFlags::OnlyOne);
 }
 
-preloadData();
-
 // Release Solar Mutex, lo_startmain thread should acquire it.
 Application::ReleaseSolarMutex();
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89466] [META] SIDEBAR: Slide and Page content panels in Properties tab in Impress/Draw

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89466
Bug 89466 depends on bug 109100, which changed state.

Bug 109100 Summary: SIDEBAR: Margin controls in Slide/Page content panel
https://bugs.documentfoundation.org/show_bug.cgi?id=109100

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

-- 
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 109100] SIDEBAR: Margin controls in Slide/Page content panel

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109100

Heiko Tietze  changed:

   What|Removed |Added

 Resolution|--- |WONTFIX
 Status|NEW |RESOLVED

--- Comment #27 from Heiko Tietze  ---
(In reply to Yousuf Philips (jay) (retired) from comment #26)
> The implementation was done but the correct presets are still not added.

This wont work. You cannot expect devs to read tickets having a patch and 26
comments for missing pieces. I suggest to file another ticket.

-- 
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 94369] Default set of Impress graphic styles

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94369

Heiko Tietze  changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED

--- Comment #11 from Heiko Tietze  ---
(In reply to Heiko Tietze from comment #10)
> Jay, please give a reason why you reopen the ticket.

Ignore this comment, missed comment 9. OTOH I disagree with your statement;
texbox styles aren't primary draw styles and we have a few of that. Focus of
drawing styles must not be to make text formatting as easy as possible.

Up to QA/design team to decide.

-- 
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 94369] Default set of Impress graphic styles

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94369

Heiko Tietze  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #10 from Heiko Tietze  ---
Jay, please give a reason why you reopen the ticket.

-- 
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 118594] impossible to specify relative file link

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118594

--- Comment #2 from muso  ---
Created attachment 143370
  --> https://bugs.documentfoundation.org/attachment.cgi?id=143370=edit
hyperlink dialog after opening the created hyperlink

So Impress transformed my file link to an URL link

-- 
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 118594] impossible to specify relative file link

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118594

muso  changed:

   What|Removed |Added

 Attachment #143369|impress's error message |impress's error message
description|that the path is an URL |that the path is an URL
   |link, despite i created a   |link, despite I created a
   |file link   |file link

-- 
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 118594] impossible to specify relative file link

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118594

--- Comment #1 from muso  ---
Created attachment 143369
  --> https://bugs.documentfoundation.org/attachment.cgi?id=143369=edit
impress's error message that the path is an URL link, despite i created a file
link

-- 
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 118594] New: impossible to specify relative file link

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118594

Bug ID: 118594
   Summary: impossible to specify relative file link
   Product: LibreOffice
   Version: 6.0.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: uwesto...@web.de

Created attachment 143368
  --> https://bugs.documentfoundation.org/attachment.cgi?id=143368=edit
original input to create a relative file link

- insert some text, highlight it and use the hyperlink toolbar button
- in the appearing dialog choose "Document"
- as I want to insert a relative link to a file that is in the same folder than
my OPD file, I enter as Path:
Projekt SmARPro.mp4
because this is the filename. Attached is the screenshot of the dialog.

- now apply the setting and try to open the link

result: LO tells me that it is an invalid absolute link.

- therefore open the created hyperlink

result: LO transformed my file link to a URL link, see the attached screenshot

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


[Libreoffice-ux-advise] [Bug 95880] Add lock mark on protected sheet tab before tab label

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95880

--- Comment #17 from Commit Notification 
 ---
Eike Rathke committed a patch related to this issue.
It has been pushed to "libreoffice-6-1":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=3eeb0096ac7c5beb48441eabc032cde38745a549=libreoffice-6-1

Related: tdf#118547 handle multi-sheet un-/protect, tdf#95880 follow-up

It will be available in 6.1.0.2.

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

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

-- 
You are receiving this mail because:
You are 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-commits] core.git: Branch 'libreoffice-6-1' - sc/source

2018-07-06 Thread Eike Rathke
 sc/source/ui/view/viewfunc.cxx |   11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

New commits:
commit 3eeb0096ac7c5beb48441eabc032cde38745a549
Author: Eike Rathke 
Date:   Fri Jul 6 14:53:10 2018 +0200

Related: tdf#118547 handle multi-sheet un-/protect, tdf#95880 follow-up

Also don't attempt to remove a lock for TABLEID_DOC that is not a
sheet.

Change-Id: I28775a068215a59063ed95fd141e125cf2155aa7
Reviewed-on: https://gerrit.libreoffice.org/57060
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit 7eba8e98508d547f43fecbe3175a11a05956b30a)
Reviewed-on: https://gerrit.libreoffice.org/57071

diff --git a/sc/source/ui/view/viewfunc.cxx b/sc/source/ui/view/viewfunc.cxx
index e7c8be1aa0d9..0b5103924185 100644
--- a/sc/source/ui/view/viewfunc.cxx
+++ b/sc/source/ui/view/viewfunc.cxx
@@ -2487,12 +2487,14 @@ void ScViewFunc::ProtectSheet( SCTAB nTab, const 
ScTableProtection& rProtect )
 
 ScMarkData::iterator itr = rMark.begin(), itrEnd = rMark.end();
 for (; itr != itrEnd; ++itr)
+{
 rFunc.ProtectSheet(*itr, rProtect);
+SetTabProtectionSymbol(*itr, true);
+}
 
 if (bUndo)
 pDocSh->GetUndoManager()->LeaveListAction();
 
-SetTabProtectionSymbol(nTab, true);
 UpdateLayerLocks(); //! broadcast to all views
 }
 
@@ -2550,8 +2552,13 @@ bool ScViewFunc::Unprotect( SCTAB nTab, const OUString& 
rPassword )
 
 ScMarkData::iterator itr = rMark.begin(), itrEnd = rMark.end();
 for (; itr != itrEnd; ++itr)
+{
 if ( rFunc.Unprotect( *itr, rPassword, false ) )
-bChanged = true;
+{
+bChanged = true;
+SetTabProtectionSymbol( *itr, false);
+}
+}
 
 if (bUndo)
 pDocSh->GetUndoManager()->LeaveListAction();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-07-06 Thread Xisco Fauli
 sc/source/ui/view/viewfunc.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 16fcf30fa53a55fdcd82826fd4d73bbd1b6bd883
Author: Xisco Fauli 
Date:   Fri Jul 6 11:01:06 2018 +0200

tdf#118547: Remove lock mark only if password is correct

Change-Id: I9f5731dfaaf9b4cc67e600a8b1c01709e7c9ba99
Reviewed-on: https://gerrit.libreoffice.org/57044
Tested-by: Jenkins
Reviewed-by: Eike Rathke 
(cherry picked from commit c3a732a11c320b98e31dad79f421d4d73f33a15b)
Reviewed-on: https://gerrit.libreoffice.org/57056

diff --git a/sc/source/ui/view/viewfunc.cxx b/sc/source/ui/view/viewfunc.cxx
index 306d020ec947..e7c8be1aa0d9 100644
--- a/sc/source/ui/view/viewfunc.cxx
+++ b/sc/source/ui/view/viewfunc.cxx
@@ -2557,10 +2557,11 @@ bool ScViewFunc::Unprotect( SCTAB nTab, const OUString& 
rPassword )
 pDocSh->GetUndoManager()->LeaveListAction();
 }
 
-SetTabProtectionSymbol(nTab, false);
-
 if (bChanged)
+{
+SetTabProtectionSymbol(nTab, false);
 UpdateLayerLocks(); //! broadcast to all views
+}
 
 return bChanged;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118593] Opening first document pauses for 6-7 s, drops to 2 s by inserting a smart card into reader

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118593

sasu.liuha...@gmail.com changed:

   What|Removed |Added

Summary|Opening first document  |Opening first document
   |(odt, ods, odp, docx - NOT  |pauses for 6-7 s, drops to
   |txt) pauses for 6-7 seconds |2 s by inserting a smart
   ||card into reader

--- Comment #1 from sasu.liuha...@gmail.com ---
Looking at strace output during the wait:
- repeated nanosleeps
- reads from smartcard reader

When I put a smart card into the reader, the delay drops down to about two
seconds and LO seems to detect the card as indicated by the card reader led
blinking. Removing the card reader by unplugging it does not remove the delay,
however. With the reader unplugged the delay is back to the initial 6-7
seconds.

-- 
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 118550] EDITING: Manage Styles Dialogue (F11) became unusable.

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118550

--- Comment #5 from V Stuart Foote  ---
(In reply to Albrecht Müller from comment #4)
> I hoped that I could simply restore the previous state of the profile.
> Unfortunately I did not find an operation that allows me to restore the
> profile from the .zip. Just unpacking the .zip will not restore registry
> entries. I do not expect that LibreOffice will handle resulting
> inconsistencies gracefully.
> 

There is just one LibreOffice "registry" involved with the user Profile

registrymodifications.xcu

While some settings can be written to Windows OS registry per user--but that
depends on installation type--for the most part system registry is untouched in
configuring LibreOffice.

The stanza for styles in the LibreOffice registry is:

false

since defaults are to preview styles, this stanza is not created by default,
and must be added to the registrymodifications.xcu configuration. It then can
be toggled true/false from the GUI or a text editor.

-- 
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 115166] "Block links from locations not trusted" should block the loading of external images in any HTML element

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115166

Buovjaga  changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #4 from Buovjaga  ---
Caolán: I was discussing this on IRC with another person and he noted your
commit [0] concerns links inside externally loaded documents instead of any &
all links. This person, too, thought the option would block any untrusted
links.

How do you feel this request should be dealt with? Should the option be
repurposed to this very greedy mode people are expecting?

[0]
https://cgit.freedesktop.org/libreoffice/core/commit/?id=0b7f4a4f57117fde33d0b1df96134aa6ccce023e

-- 
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: include/svtools svtools/source sw/qa sw/source

2018-07-06 Thread Miklos Vajna
 include/svtools/htmlout.hxx|2 +-
 svtools/source/svhtml/htmlout.cxx  |7 +--
 sw/qa/extras/htmlexport/data/reqif-p.xhtml |1 +
 sw/qa/extras/htmlexport/htmlexport.cxx |3 +++
 sw/source/filter/html/htmlatr.cxx  |   26 +-
 5 files changed, 31 insertions(+), 8 deletions(-)

New commits:
commit fafc6f046f9e92d5776d31ea6abb188ec74aaa71
Author: Miklos Vajna 
Date:   Fri Jul 6 16:33:10 2018 +0200

sw HTML export: avoid writing  in XHTML mode

First, it should be <$prefix:font>, not , but then XHTML prefers
CSS for font color.

Change-Id: I947c0b93a117c8e88e4aec91c3c7f843bd943c59
Reviewed-on: https://gerrit.libreoffice.org/57085
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins

diff --git a/include/svtools/htmlout.hxx b/include/svtools/htmlout.hxx
index 3d95640e29cb..3adbb23db673 100644
--- a/include/svtools/htmlout.hxx
+++ b/include/svtools/htmlout.hxx
@@ -66,7 +66,7 @@ struct HTMLOutFuncs
 rtl_TextEncoding eDestEnc,
 OUString *pNonConvertableChars = nullptr );
 SVT_DLLPUBLIC static SvStream& Out_Hex( SvStream&, sal_uLong nHex, 
sal_uInt8 nLen );
-SVT_DLLPUBLIC static SvStream& Out_Color( SvStream&, const Color& );
+SVT_DLLPUBLIC static SvStream& Out_Color( SvStream&, const Color&, bool 
bXHTML = false );
 SVT_DLLPUBLIC static SvStream& Out_ImageMap( SvStream&, const OUString&, 
const ImageMap&, const OUString&,
const HTMLOutEvent *pEventTable,
bool bOutStarBasic,
diff --git a/svtools/source/svhtml/htmlout.cxx 
b/svtools/source/svhtml/htmlout.cxx
index 8ee63d19b757..fb0a5b941a17 100644
--- a/svtools/source/svhtml/htmlout.cxx
+++ b/svtools/source/svhtml/htmlout.cxx
@@ -580,9 +580,12 @@ SvStream& HTMLOutFuncs::Out_Hex( SvStream& rStream, 
sal_uLong nHex, sal_uInt8 nL
 }
 
 
-SvStream& HTMLOutFuncs::Out_Color( SvStream& rStream, const Color& rColor )
+SvStream& HTMLOutFuncs::Out_Color( SvStream& rStream, const Color& rColor, 
bool bXHTML )
 {
-rStream.WriteCharPtr( "\"#" );
+rStream.WriteCharPtr( "\"" );
+if (bXHTML)
+rStream.WriteCharPtr( "color: " );
+rStream.WriteCharPtr( "#" );
 if( rColor == COL_AUTO )
 {
 rStream.WriteCharPtr( "00" );
diff --git a/sw/qa/extras/htmlexport/data/reqif-p.xhtml 
b/sw/qa/extras/htmlexport/data/reqif-p.xhtml
index b05cdeb9d8e7..fa69342d00a6 100644
--- a/sw/qa/extras/htmlexport/data/reqif-p.xhtml
+++ b/sw/qa/extras/htmlexport/data/reqif-p.xhtml
@@ -4,3 +4,4 @@
 u
 s
 s
+s
diff --git a/sw/qa/extras/htmlexport/htmlexport.cxx 
b/sw/qa/extras/htmlexport/htmlexport.cxx
index 5d82b82c9524..229c553502cd 100644
--- a/sw/qa/extras/htmlexport/htmlexport.cxx
+++ b/sw/qa/extras/htmlexport/htmlexport.cxx
@@ -369,6 +369,9 @@ DECLARE_HTMLEXPORT_TEST(testReqIfParagraph, "reqif-p.xhtml")
 
 // This was "" instead of CSS.
 CPPUNIT_ASSERT(aStream.indexOf("" instead of CSS + namespace prefix was missing.
+CPPUNIT_ASSERT(aStream.indexOf("https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-07-06 Thread Michael Stahl
 xmloff/source/forms/elementimport.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 510209df4bcf457cac819e75889d564d620f119d
Author: Michael Stahl 
Date:   Fri Jul 6 17:33:28 2018 +0200

tdf#117261 xmloff: ODF import: convert form:connection-resource URL

... to absolute on import.

(regression from fbb3b60cdb7a22595eec80232bb3ccd83781cf00)

Change-Id: I2cd046e44489da86d3d67ff5df6cbad13e8265d0
Reviewed-on: https://gerrit.libreoffice.org/57076
Reviewed-by: Michael Stahl 
Tested-by: Jenkins

diff --git a/xmloff/source/forms/elementimport.cxx 
b/xmloff/source/forms/elementimport.cxx
index 87d633bd0e5d..7cce225e0257 100644
--- a/xmloff/source/forms/elementimport.cxx
+++ b/xmloff/source/forms/elementimport.cxx
@@ -2048,7 +2048,7 @@ namespace xmloff
 )
 {
 OUString sValue = _xAttrList->getValueByIndex( i );
-
+sValue = _rImport.GetAbsoluteReference(sValue);
 INetURLObject aURL(sValue);
 if ( aURL.GetProtocol() == INetProtocol::File )
 
_xElement->setPropertyValue(PROPERTY_DATASOURCENAME,makeAny(sValue));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94259] FILEOPEN XLS Charts are vertically squashed

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94259

Buovjaga  changed:

   What|Removed |Added

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

-- 
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 115249] FILEOPEN: PPT: Column displayed instead of lines

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115249

Buovjaga  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected
Version|4.1 all versions|4.0.0.3 release
 CC||todven...@suomi24.fi
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||5541,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=94
   ||259

--- Comment #4 from Buovjaga  ---
Bibisected on Linux with 43all to range
https://cgit.freedesktop.org/libreoffice/core/log/?qt=range=ae4e4a11d4300f7448cb6bd170fcb034542caddc...4316e643ef345b0f673b4a03a80a4b7cb3185588

Again this mega-commit is under suspicion:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=44cfc7cb6533d827fd2d6e586d92c61d7d7f7a70
with "fix for #118525#: Using primitives for chart sub-geometry visualisation"

-- 
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 105541] Charts rendering stutters on bargraphs + hatched-areas

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105541

Buovjaga  changed:

   What|Removed |Added

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

-- 
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 72988] re-base: Impress template not rendered correctly (vintage, metropolis, sunset)

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72988

--- Comment #31 from Buovjaga  ---
(In reply to Buovjaga from comment #6)
> Metropolis: the gradient of the rays does not work in f5 mode.
> Sunset: The rays do not appear at all in f5 mode.

Still repro.

Arch Linux 64-bit
Version: 6.2.0.0.alpha0+
Build ID: ea39c41fdf63191579d25f327db81db14862251c
CPU threads: 8; OS: Linux 4.17; UI render: default; VCL: gtk3; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group threaded
Built on July 4th 2018

-- 
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 118550] EDITING: Manage Styles Dialogue (F11) became unusable.

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118550

--- Comment #4 from Albrecht Müller  ---
(In reply to V Stuart Foote from comment #3)

> > Where does LibreOffice get this "last known working state" from? How can I
> > tell LibreOffice to restore exactly the state I saved into
> > libreoffice-profile.zip?
> 
> Good question, I've not poked at it that much. Prefer to just rebuild my
> profile and customizations, YMMV.

I hoped that I could simply restore the previous state of the profile.
Unfortunately I did not find an operation that allows me to restore the profile
from the .zip. Just unpacking the .zip will not restore registry entries. I do
not expect that LibreOffice will handle resulting inconsistencies gracefully.

Therefore I think I have to accept that I lost my profile information and have
to follow your way. Hopefully I will be able to restore some of the lost data
from the .zip.

> > For now I cannot restore the profile from the backup in the .zip-file. So I
> > cannot reproduce the problem any more.
> > 
> > After the creation of the .zip I compared its content with the user
> > directory. There were a lot of differences. Therefore I did not try to
> > simply unpack the .zip file into the user directory.
> 
> Deleting the "clean" profile, and simply unpacking the .zip of the "old"
> broken profile is the means to restore the old profile--each attempt--at
> resolving the issue with the Styles (F11) content panel in the Sidebar.  

That's exactly what I try to avoid as I fear this action may worsen the damage.
After the generation of the .zip I compared it to the original profile
directory and I think I found substantial differences. This was no surprise.
The complete information that allows to restore the state of LibreOffice may
contain registry information. The user may have redefined path information, and
there may be other information on places I do not know about.

> There is a lot of junk that builds up over time in the user profile--so your
> choice about trying to tease out what is causing the problem, or of
> rebuilding the profile and customizations.

Of course: The backup directory seems to contain many versions of the same
file. At least one of them has more than 100 versions. I was not aware
LibreOffice keeps this kind of backups - I thought it would keep just one
backup file. Unfortunately all versions got the same timestamp so I cannot
easily find out when these backups were generated. I also found a number of
.pack-files. These seem to contain some compressed content. As I do not have
any tool that's able to unpack them I cannot assess if they contain relevant
content.

> Given that it is happening on the F11 Styles panel, suggests there is a
> broken Paragraph style defined. Although I guess it could be any of
> Paragraph, Character, Frame, Page, List or new Table style defined that is
> no longer valid.

Sounds plausible. I imported styles from some other, older document. I think
the preview checkbox was activated. So the dialogue may open, tries to render
the styles, gets an uncaught exception due to some bad style and disappears.
Assuming this hypothesis is correct an easy fix would have been to find out the
location where LibreOffice stores the state of the checkbox and to turn it off.
So the dialogue would not use a bad style for rendering => no exception =>
dialogue remains on screen.

I have a fundamental problem here. LibreOffice tries to handle user profiles as
single monolithic entities in a way that might be appropriate if a user profile
affects only a few preference settings that you can easily rebuild by hand. In
fact user profiles are pretty complex things and you can invest any amount of
time into creating one: Write macros, design consistent document styles, create
autocorrect entries for hard to find UTF-8 codes, write autotext entries and
more. If you are in "Safe Mode" you may destroy all this work with a few clicks
of the mouse.

-- 
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 118280] 6.1 beta2 starts with crash on empty profile (AMD RX video in Windows)

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118280

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #12 from Aron Budea  ---
No crash anymore in 6.1.0.1 x64 / Windows 7. Closing as WFM.

-- 
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 93529] [META] VCL/OpenGL rendering tracker bug for 5.0+

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529
Bug 93529 depends on bug 118280, which changed state.

Bug 118280 Summary: 6.1 beta2 starts with crash on empty profile (AMD RX video 
in Windows)
https://bugs.documentfoundation.org/show_bug.cgi?id=118280

   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 118283] Crash reports lack information since 6.1 beta1

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118283

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #4 from Aron Budea  ---
(In reply to Xisco Faulí from comment #3)
> No longer reproducible in
> 
> Versión: 6.1.0.1
> Id. de compilación: 378e26bd4f22a135cef5fa17afd5d4171d8da21a
> Subprocs. CPU: 1; SO: Windows 6.1; Repres. IU: predet.; 
> Configuración regional: es-ES (es_ES); Calc: group threaded
> 
> Crash signature for bug 87:
> crashreport.libreoffice.org/stats/crash_details/91d382ef-7d2b-49a1-a843-
> 228fdecb7b00
With 4 levels that's not a complete backtrace, is it?

Also, here's my crash report, which unfortunately contains nothing of value:
http://crashreport.libreoffice.org/stats/crash_details/836762c7-2345-437e-ba61-bc9f3c9dd9e2

-- 
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 113285] [META] Crash report system bugs and enhancements

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113285
Bug 113285 depends on bug 118283, which changed state.

Bug 118283 Summary: Crash reports lack information since 6.1 beta1
https://bugs.documentfoundation.org/show_bug.cgi?id=118283

   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 118593] New: Opening first document (odt, ods, odp, docx - NOT txt) pauses for 6-7 seconds

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118593

Bug ID: 118593
   Summary: Opening first document (odt, ods, odp, docx - NOT txt)
pauses for 6-7 seconds
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sasu.liuha...@gmail.com

Description:
Opening any other document (e.g. odt, ods, odp, docx) than plain text is very
slow, unless one such document is already open in any LO window.
Reader/Calc/Impress window opens instantly, but pauses then for 6-7 seconds
before showing the contents of the document. If the document is opened from
within Writer, it displays "Loading document..." during the wait. The size of
the document doesn't have any perceptible influence on the time.

Purging and reinstalling LO does not help. Neither does removing user profiles
or deleting ~/.config/libreoffice. Using safe-mode changes nothing either.

Having one LO window open and opening any document (other than plain text) in
it, abolishes the whole wait from subsequent opens and everything works as
expected. In summary, LO seems to pause and wait for something while opening
the first document and the wait is gone after the first document is opened.

Steps to Reproduce:
1. Open Reader
2. Open any odt, ods, odp or docx document
3. Program window opens immediately
4. The program waits for something for 6-7 seconds
5. The document opens
6. Open any other document
7. The second document opens immediately

OR

1. Open any above-mentioned document from the command line
2. Program window opens immediately
3. The program waits for something for 6-7 seconds
4. The document opens
5. Open any other document
6. The second document opens immediately

(and the same with Calc and Impress)

Actual Results:
6-7 s wait on opening the first documents, next documents open immediately. 

Expected Results:
More or less immediate document open (at least on empty / almost empty
documents)


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Enabling / disabling hardware acceleration doesn't change anything. Resources
are not the issue (10 cores, 128GB memory, very fast SSDs).

-- 
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 118270] SVGs no longer opening automatically in Draw

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118270

--- Comment #6 from Yousuf Philips (jay) (retired)  ---
(In reply to V Stuart Foote from comment #5)
> Jay, that's not good :-) 
> 
> What produced the SVG, and can you attach it?

Was testing some SVGs from other bugs that had been closed as fixed. Assume
https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/DroidSans.svg from bug
97566 was one of them, but that works fine now.

-- 
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 113849] FILESAVE: Saving a file as .docx format adds spurious extra page breaks

2018-07-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113849

Buovjaga  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected

--- Comment #8 from Buovjaga  ---
Bisected on Linux with 41max to
commit 1aa664e781c50a322170070e7668cce173a23b4f
Author: Matthew Francis 
Date:   Fri Sep 18 10:19:41 2015 +0800

source-hash-ee9f23bb94b4c2c8c4db6466ecca272a092e9492

commit ee9f23bb94b4c2c8c4db6466ecca272a092e9492
Author: Pierre-Eric Pelloux-Prayer 
AuthorDate: Thu Jan 10 18:45:42 2013 +0100
Commit: Noel Power 
CommitDate: Mon Jan 14 15:35:13 2013 +

docx export: invalid sectPr added at the beginning of the doc

This reverts commit 60fa5057039d2413d56813df4d45e5cfdfbb40ac,
which was a revert of 723f772d (fix for ooo#106749) with an
alternative fix to avoid a regression (fdo#56513).

This commit contain a fix for the sectPr issue, and does not
regress on the 2 previously fixed issue.

Change-Id: Ibc551b38d25554c59b7c4ac5a447a0d60323f53f
Reviewed-on: https://gerrit.libreoffice.org/1647
Reviewed-by: Noel Power 
Tested-by: Noel Power 

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