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

2018-12-06 Thread Libreoffice Gerrit user
 qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeader.java |   44 +---
 sc/source/core/data/docpool.cxx |2 
 2 files changed, 16 insertions(+), 30 deletions(-)

New commits:
commit d08e63fb1ab16d96e3d1404c4b82267447104a0f
Author: Heiko Tietze 
AuthorDate: Thu Dec 6 17:09:20 2018 +0100
Commit: Heiko Tietze 
CommitDate: Fri Dec 7 08:40:31 2018 +0100

tdf#121759 Revert "tdf#99296 - Disable headers/footers by default"

This reverts commit 08b5048198d59441cb8033ed14cd17e68c943004.

Disabled h/f lead to an inactive menu entry (tdf#121759).
Also, the change was not accepted by the OP (tdf#99296).
See discussion on the mailing list, Gerrit, and BZ.

Change-Id: Ie3dcf14c173a1813da05d8f2a9c8f2eda14cee46
Reviewed-on: https://gerrit.libreoffice.org/64727
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeader.java 
b/qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeader.java
index d7ff676f5a0e..74670742c8ae 100644
--- a/qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeader.java
+++ b/qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeader.java
@@ -106,35 +106,6 @@ public class ScAccessiblePageHeader extends TestCase {
 e.printStackTrace(log);
 }
 
-XStyleFamiliesSupplier StyleFam = UnoRuntime.queryInterface(
-XStyleFamiliesSupplier.class,
-xSpreadsheetDoc );
-XNameAccess StyleFamNames = StyleFam.getStyleFamilies();
-XStyle StdStyle = null;
-
-XNameAccess PageStyles = (XNameAccess) AnyConverter.toObject(
-new Type(XNameAccess.class),
-StyleFamNames.getByName("PageStyles"));
-StdStyle = (XStyle) AnyConverter.toObject(
-new Type(XStyle.class), PageStyles.getByName("Default"));
-
-//get the property-set
-final XPropertySet PropSet = 
UnoRuntime.queryInterface(XPropertySet.class, StdStyle);
-
-// tdf#99296 - Disable headers/footers by default
-try {
-PropSet.setPropertyValue("HeaderIsOn", Boolean.TRUE);
-PropSet.setPropertyValue("FooterIsOn", Boolean.TRUE);
-} catch (com.sun.star.beans.UnknownPropertyException upe) {
-log.println("Don't know the Property 'HeaderIsOn' or 
'FooterIsOn'");
-} catch (com.sun.star.lang.WrappedTargetException wte) {
-log.println("WrappedTargetException while setting Property 
'HeaderIsOn' or 'FooterIsOn'");
-} catch (com.sun.star.lang.IllegalArgumentException iae) {
-log.println("IllegalArgumentException while setting Property 
'HeaderIsOn' or 'FooterIsOn'");
-} catch (com.sun.star.beans.PropertyVetoException pve) {
-log.println("PropertyVetoException while setting Property 
'HeaderIsOn' or 'FooterIsOn'");
-}
-
 XModel aModel = UnoRuntime.queryInterface(XModel.class, 
xSpreadsheetDoc);
 
 XController xController = aModel.getCurrentController();
@@ -180,6 +151,21 @@ public class ScAccessiblePageHeader extends TestCase {
 
 TestEnvironment tEnv = new TestEnvironment(oObj);
 
+XStyleFamiliesSupplier StyleFam = UnoRuntime.queryInterface(
+XStyleFamiliesSupplier.class,
+xSpreadsheetDoc );
+XNameAccess StyleFamNames = StyleFam.getStyleFamilies();
+XStyle StdStyle = null;
+
+XNameAccess PageStyles = (XNameAccess) AnyConverter.toObject(
+new Type(XNameAccess.class),
+StyleFamNames.getByName("PageStyles"));
+StdStyle = (XStyle) AnyConverter.toObject(
+new Type(XStyle.class), PageStyles.getByName("Default"));
+
+//get the property-set
+final XPropertySet PropSet = 
UnoRuntime.queryInterface(XPropertySet.class, StdStyle);
+
 XHeaderFooterContent RPHC = null;
 // creation of testobject here
 // first we write what we are intend to do to log file
diff --git a/sc/source/core/data/docpool.cxx b/sc/source/core/data/docpool.cxx
index 530c79e11d92..0a0819b533e0 100644
--- a/sc/source/core/data/docpool.cxx
+++ b/sc/source/core/data/docpool.cxx
@@ -290,7 +290,7 @@ ScDocumentPool::ScDocumentPool()
 mvPoolDefaults[ ATTR_PAGE_SIZE   - ATTR_STARTINDEX ] = new 
SvxSizeItem( ATTR_PAGE_SIZE );
 mvPoolDefaults[ ATTR_PAGE_HORCENTER  - ATTR_STARTINDEX ] = new 
SfxBoolItem( ATTR_PAGE_HORCENTER );
 mvPoolDefaults[ ATTR_PAGE_VERCENTER  - ATTR_STARTINDEX ] = new 
SfxBoolItem( ATTR_PAGE_VERCENTER );
-mvPoolDefaults[ ATTR_PAGE_ON - ATTR_STARTINDEX ] = new 
SfxBoolItem( ATTR_PAGE_ON, false );
+mvPoolDefaults[ ATTR_PAGE_ON - ATTR_STARTINDEX ] = new 
SfxBoolItem( ATTR_PAGE_ON, true );
 mvPoolDefaults[ ATTR_PAGE_DYNAMIC- ATTR_STARTINDEX ] = new 
SfxBoolItem( ATTR_PAGE_DYNAMIC, true );
 mvPoolDefaults[ ATTR_PAGE_SHARED - ATTR_STARTINDEX ] = new 

[Libreoffice-bugs] [Bug 103856] Allow locale information for a language to be added via an extension

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

martin_hos...@sil.org changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |martin_hos...@sil.org
   |desktop.org |

--- Comment #3 from martin_hos...@sil.org ---
This is a good solution. Better than rejecting it with won't fix, because of
priority concerns. Issues are raised for all kinds of reasons. Some as ways of
having a discussion with volunteers on the best way to do something - hint hint
:)

-- 
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 111486] [META] Regressions from EMF+ reworking

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.0.0|target:6.0.0 target:6.3.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 111486] [META] Regressions from EMF+ reworking

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

--- Comment #7 from Commit Notification 
 ---
Bartosz Kosiorek committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/217ad59a412ebab07a106b14c8976d20bddb9356%5E%21

tdf#111486 Removed not used EMF+ code

It will be available in 6.3.0.

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

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

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


Re: Compiler baselines

2018-12-06 Thread Stephan Bergmann

On 23/11/2018 08:57, Stephan Bergmann wrote:

On 21/11/2018 17:42, Stephan Bergmann wrote:
If nobody objects, we'd update the build baselines on master (towards 
LO 6.3) as follows (cf README.md):

* Linux GCC: from GCC 4.8.1 to GCC 7


(See the discussion in its own sub-thread at 
 
"Re: Compiler baselines" about rolling this out on Jenkins.)


Enforced now with 
 
"Bump (Linux) GCC baseline to 7.0.0".

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


[Libreoffice-commits] core.git: cppcanvas/Library_cppcanvas.mk cppcanvas/source

2018-12-06 Thread Libreoffice Gerrit user
 cppcanvas/Library_cppcanvas.mk |9 
 cppcanvas/source/inc/implrenderer.hxx  |   23 
 cppcanvas/source/mtfrenderer/emfpbrush.cxx |  309 ---
 cppcanvas/source/mtfrenderer/emfpbrush.hxx |  131 -
 cppcanvas/source/mtfrenderer/emfpcustomlinecap.cxx |  164 --
 cppcanvas/source/mtfrenderer/emfpcustomlinecap.hxx |   47 
 cppcanvas/source/mtfrenderer/emfpfont.cxx  |   75 
 cppcanvas/source/mtfrenderer/emfpfont.hxx  |   42 
 cppcanvas/source/mtfrenderer/emfpimage.cxx |  101 -
 cppcanvas/source/mtfrenderer/emfpimage.hxx |   44 
 cppcanvas/source/mtfrenderer/emfplus.cxx   | 1666 -
 cppcanvas/source/mtfrenderer/emfppath.cxx  |  193 --
 cppcanvas/source/mtfrenderer/emfppath.hxx  |   50 
 cppcanvas/source/mtfrenderer/emfppen.cxx   |  296 ---
 cppcanvas/source/mtfrenderer/emfppen.hxx   |   79 
 cppcanvas/source/mtfrenderer/emfpregion.cxx|   86 -
 cppcanvas/source/mtfrenderer/emfpregion.hxx|   42 
 cppcanvas/source/mtfrenderer/emfpstringformat.cxx  |   66 
 cppcanvas/source/mtfrenderer/emfpstringformat.hxx  |   54 
 cppcanvas/source/mtfrenderer/implrenderer.cxx  |   13 
 20 files changed, 1 insertion(+), 3489 deletions(-)

New commits:
commit 217ad59a412ebab07a106b14c8976d20bddb9356
Author: Bartosz Kosiorek 
AuthorDate: Fri Nov 30 23:08:47 2018 +0100
Commit: Noel Grandin 
CommitDate: Fri Dec 7 08:29:18 2018 +0100

tdf#111486 Removed not used EMF+ code

Change-Id: I708876fecab1bd6b0c37892efa9c4ab180457d6b
Reviewed-on: https://gerrit.libreoffice.org/64366
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/cppcanvas/Library_cppcanvas.mk b/cppcanvas/Library_cppcanvas.mk
index 8a374b58dcee..6aa698d5e9b7 100644
--- a/cppcanvas/Library_cppcanvas.mk
+++ b/cppcanvas/Library_cppcanvas.mk
@@ -50,20 +50,11 @@ $(eval $(call gb_Library_use_libraries,cppcanvas,\
 $(eval $(call gb_Library_add_exception_objects,cppcanvas,\
cppcanvas/source/mtfrenderer/bitmapaction \
cppcanvas/source/mtfrenderer/cachedprimitivebase \
-   cppcanvas/source/mtfrenderer/emfpbrush \
-   cppcanvas/source/mtfrenderer/emfpcustomlinecap \
-   cppcanvas/source/mtfrenderer/emfpfont \
-   cppcanvas/source/mtfrenderer/emfpimage \
-   cppcanvas/source/mtfrenderer/emfplus \
-   cppcanvas/source/mtfrenderer/emfppen \
-   cppcanvas/source/mtfrenderer/emfppath \
-   cppcanvas/source/mtfrenderer/emfpregion \
cppcanvas/source/mtfrenderer/implrenderer \
cppcanvas/source/mtfrenderer/lineaction \
cppcanvas/source/mtfrenderer/mtftools \
cppcanvas/source/mtfrenderer/pointaction \
cppcanvas/source/mtfrenderer/polypolyaction \
-   cppcanvas/source/mtfrenderer/emfpstringformat \
cppcanvas/source/mtfrenderer/textaction \
cppcanvas/source/mtfrenderer/textlineshelper \
cppcanvas/source/mtfrenderer/transparencygroupaction \
diff --git a/cppcanvas/source/inc/implrenderer.hxx 
b/cppcanvas/source/inc/implrenderer.hxx
index 6fec26e3d18a..26fc5046eede 100644
--- a/cppcanvas/source/inc/implrenderer.hxx
+++ b/cppcanvas/source/inc/implrenderer.hxx
@@ -196,15 +196,6 @@ namespace cppcanvas
 // (externally not visible)
 typedef std::vector< MtfAction >  ActionVector;
 
-/* EMF+ */
-static void ReadRectangle (SvStream& s, float& x, float& y, float 
, float& height, bool bCompressed = false);
-static void ReadPoint (SvStream& s, float& x, float& y, sal_uInt32 
flags);
-void MapToDevice (double , double ) const;
-::basegfx::B2DPoint Map (double ix, double iy) const;
-::basegfx::B2DSize MapSize (double iwidth, double iheight) const;
-void GraphicStatePush (GraphicStateMap& map, sal_Int32 index, 
OutDevState const & rState);
-void GraphicStatePop (GraphicStateMap& map, sal_Int32 index, 
OutDevState& rState);
-
 private:
 ImplRenderer(const ImplRenderer&) = delete;
 ImplRenderer& operator=( const ImplRenderer& ) = delete;
@@ -257,20 +248,6 @@ namespace cppcanvas
 
 void processObjectRecord(SvMemoryStream& rObjectStream, sal_uInt16 
flags, sal_uInt32 dataSize, bool bUseWholeStream = false);
 
-/* EMF+ */
-void processEMFPlus( MetaCommentAction const * pAct, const 
ActionFactoryParameters& rFactoryParms, OutDevState& rState, const 
CanvasSharedPtr& rCanvas );
-double setFont(css::rendering::FontRequest& aFontRequest, 
sal_uInt8 fontObjectId, const ActionFactoryParameters& rParms, OutDevState& 
rState );
-
-/// Render LineCap, like the start or end arrow of a polygon.
-/// @return how much we should shorten the original polygon.
-double EMFPPlusDrawLineCap(const ::basegfx::B2DPolygon& rPolygon, 
double fPolyLength,
-const 

[Libreoffice-bugs] [Bug 84837] Make show/hide comments UNO command work in Calc

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

--- Comment #120 from philip  ---
Do You Know about Webroot? Webroot is the most popular and secure antivirus for
your system or mobile device. On http://setup-antivirus.com/webroot-com-setup-install.html;
data-abc="true" class="malachite">webroot troubleshooting, you can call at
1-844-797-8692 and solve your troubleshooting problem. We are giving multiple
facilities to our customers.

-- 
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-12-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105225

--- Comment #72 from Commit Notification 
 ---
Jim Raykowski committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/0a139d98477c116f14041b3c4ebb7bb6204808d3%5E%21

tdf#105225 Add palette choice to calc tab background color dialog

It will be available in 6.3.0.

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

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

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


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

2018-12-06 Thread Libreoffice Gerrit user
 svx/source/tbxctrls/itemwin.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 74e1281955782ca5c8a2dfb6d668a53e097b9be1
Author: Jim Raykowski 
AuthorDate: Sat Dec 1 16:08:30 2018 -0900
Commit: Noel Grandin 
CommitDate: Fri Dec 7 08:27:34 2018 +0100

tdf#121448 Check if fill box event notify is already handled

Change-Id: I8b2e1e7a7bf711e78feb3c0532d597f1e9f14c03
Reviewed-on: https://gerrit.libreoffice.org/64419
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/svx/source/tbxctrls/itemwin.cxx b/svx/source/tbxctrls/itemwin.cxx
index c41ba2a86dc1..03725e3868f4 100644
--- a/svx/source/tbxctrls/itemwin.cxx
+++ b/svx/source/tbxctrls/itemwin.cxx
@@ -420,7 +420,7 @@ bool SvxFillTypeBox::EventNotify( NotifyEvent& rNEvt )
 if (isDisposed())
 return false;
 
-if ( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT )
+if ( !bHandled && rNEvt.GetType() == MouseNotifyEvent::KEYINPUT )
 {
 const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
 switch ( pKEvt->GetKeyCode().GetCode() )
@@ -482,7 +482,7 @@ bool SvxFillAttrBox::EventNotify( NotifyEvent& rNEvt )
 {
 bool bHandled = ListBox::EventNotify( rNEvt );
 
-if ( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT )
+if ( !bHandled && rNEvt.GetType() == MouseNotifyEvent::KEYINPUT )
 {
 const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-12-06 Thread Libreoffice Gerrit user
 sc/source/ui/inc/tabbgcolordlg.hxx  |   13 +++-
 sc/source/ui/miscdlgs/tabbgcolordlg.cxx |   87 
 sc/uiconfig/scalc/ui/tabcolordialog.ui  |   45 +++-
 3 files changed, 98 insertions(+), 47 deletions(-)

New commits:
commit 0a139d98477c116f14041b3c4ebb7bb6204808d3
Author: Jim Raykowski 
AuthorDate: Fri Nov 30 00:43:22 2018 -0900
Commit: Noel Grandin 
CommitDate: Fri Dec 7 08:26:58 2018 +0100

tdf#105225 Add palette choice to calc tab background color dialog

Change-Id: I9891a20d3bc3de51fec84fb54c7aae42f7142662
Reviewed-on: https://gerrit.libreoffice.org/64329
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 
Tested-by: Heiko Tietze 
Reviewed-by: Noel Grandin 

diff --git a/sc/source/ui/inc/tabbgcolordlg.hxx 
b/sc/source/ui/inc/tabbgcolordlg.hxx
index 4b27a4fe73e6..f5c2d330f344 100644
--- a/sc/source/ui/inc/tabbgcolordlg.hxx
+++ b/sc/source/ui/inc/tabbgcolordlg.hxx
@@ -21,6 +21,7 @@
 #define INCLUDED_SC_SOURCE_UI_INC_TABBGCOLORDLG_HXX
 
 #include 
+#include 
 
 class ScTabBgColorDlg : public weld::GenericDialogController
 {
@@ -36,7 +37,7 @@ public:
 class ScTabBgColorValueSet : public ColorValueSet
 {
 public:
-ScTabBgColorValueSet();
+ScTabBgColorValueSet(std::unique_ptr pWindow);
 virtual ~ScTabBgColorValueSet() override;
 
 void SetDialog(ScTabBgColorDlg* pTabBgColorDlg)
@@ -50,14 +51,18 @@ public:
 };
 
 private:
+PaletteManager  m_aPaletteManager;
 Color   m_aTabBgColor;
 const OUString  m_aTabBgColorNoColorText;
-ScTabBgColorValueSetm_aTabBgColorSet;
-std::unique_ptr m_xTabBgColorSet;
+
+std::unique_ptr m_xSelectPalette;
+std::unique_ptr m_xTabBgColorSet;
+std::unique_ptr m_xTabBgColorSetWin;
 std::unique_ptr m_xBtnOk;
 
-voidFillColorValueSets_Impl();
+void FillPaletteLB();
 
+DECL_LINK(SelectPaletteLBHdl, weld::ComboBox&, void);
 DECL_LINK(TabBgColorDblClickHdl_Impl, SvtValueSet*, void);
 DECL_LINK(TabBgColorOKHdl_Impl, weld::Button&, void);
 };
diff --git a/sc/source/ui/miscdlgs/tabbgcolordlg.cxx 
b/sc/source/ui/miscdlgs/tabbgcolordlg.cxx
index 7ea90d530b4d..f9c0eb0ce502 100644
--- a/sc/source/ui/miscdlgs/tabbgcolordlg.cxx
+++ b/sc/source/ui/miscdlgs/tabbgcolordlg.cxx
@@ -30,6 +30,8 @@
 #include 
 #include 
 
+#include 
+
 #define HDL(hdl) LINK(this,ScTabBgColorDlg,hdl)
 
 ScTabBgColorDlg::ScTabBgColorDlg(weld::Window* pParent, const OUString& rTitle,
@@ -37,16 +39,30 @@ ScTabBgColorDlg::ScTabBgColorDlg(weld::Window* pParent, 
const OUString& rTitle,
 : GenericDialogController(pParent, "modules/scalc/ui/tabcolordialog.ui", 
"TabColorDialog")
 , m_aTabBgColor(rDefaultColor)
 , m_aTabBgColorNoColorText(rTabBgColorNoColorText)
-, m_xTabBgColorSet(new weld::CustomWeld(*m_xBuilder, "colorset", 
m_aTabBgColorSet))
+, m_xSelectPalette(m_xBuilder->weld_combo_box("paletteselector"))
+, m_xTabBgColorSet(new 
ScTabBgColorValueSet(m_xBuilder->weld_scrolled_window("colorsetwin")))
+, m_xTabBgColorSetWin(new weld::CustomWeld(*m_xBuilder, "colorset", 
*m_xTabBgColorSet))
 , m_xBtnOk(m_xBuilder->weld_button("ok"))
 {
-m_aTabBgColorSet.SetDialog(this);
-m_aTabBgColorSet.SetColCount(SvxColorValueSet::getColumnCount());
+m_xTabBgColorSet->SetDialog(this);
+m_xTabBgColorSet->SetColCount(SvxColorValueSet::getColumnCount());
 
 m_xDialog->set_title(rTitle);
 
-FillColorValueSets_Impl();
-m_aTabBgColorSet.SetDoubleClickHdl(HDL(TabBgColorDblClickHdl_Impl));
+const WinBits nBits(m_xTabBgColorSet->GetStyle() | WB_NAMEFIELD | 
WB_ITEMBORDER | WB_NONEFIELD | WB_3DLOOK | WB_NO_DIRECTSELECT | 
WB_NOPOINTERFOCUS);
+m_xTabBgColorSet->SetStyle(nBits);
+m_xTabBgColorSet->SetText(m_aTabBgColorNoColorText);
+
+const sal_uInt32 nColCount = SvxColorValueSet::getColumnCount();
+const sal_uInt32 nRowCount(10);
+const sal_uInt32 nLength = SvxColorValueSet::getEntryEdgeLength();
+Size aSize(m_xTabBgColorSet->CalcWindowSizePixel(Size(nLength, nLength), 
nColCount, nRowCount));
+m_xTabBgColorSetWin->set_size_request(aSize.Width() + 8, aSize.Height() + 
8);
+
+FillPaletteLB();
+
+m_xSelectPalette->connect_changed(LINK(this, ScTabBgColorDlg, 
SelectPaletteLBHdl));
+m_xTabBgColorSet->SetDoubleClickHdl(HDL(TabBgColorDblClickHdl_Impl));
 m_xBtnOk->connect_clicked(HDL(TabBgColorOKHdl_Impl));
 }
 
@@ -59,48 +75,37 @@ void ScTabBgColorDlg::GetSelectedColor( Color& rColor ) 
const
 rColor = m_aTabBgColor;
 }
 
-void ScTabBgColorDlg::FillColorValueSets_Impl()
+void ScTabBgColorDlg::FillPaletteLB()
 {
-SfxObjectShell* pDocSh = SfxObjectShell::Current();
-const SfxPoolItem* pItem = nullptr;
-XColorListRef pColorList;
-
-OSL_ENSURE( pDocSh, "DocShell not found!" );
-
-if ( pDocSh && ( nullptr != ( pItem = pDocSh->GetItem(SID_COLOR_TABLE) ) ) 
)
-pColorList = 

[Libreoffice-bugs] [Bug 84837] Make show/hide comments UNO command work in Calc

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

philip  changed:

   What|Removed |Added

URL|http://setup-antivirus.com/ |http://setup-antivirus.com/
   |norton-com-setup-install.ht |webroot-com-setup-install.h
   |ml  |tml

--- Comment #119 from philip  ---
Do You Know about Webroot? Webroot is the most popular and secure antivirus for
your system or mobile device. On webroot troubleshooting, you can call at
1-844-797-8692 and solve your troubleshooting problem. We are giving multiple
facilities to our customers.
Do You Know about Webroot? Webroot is the most popular and secure antivirus for
your system or mobile device. On webroot troubleshooting, you can call at
1-844-797-8692 and solve your troubleshooting problem. We are giving multiple
facilities to our customers.

-- 
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: sd/source

2018-12-06 Thread Libreoffice Gerrit user
 sd/source/core/sdpage2.cxx |   17 +
 1 file changed, 17 insertions(+)

New commits:
commit 2c8ef031af56f5e787e7984e746ffb8b65bf0a5b
Author: Paul Trojahn 
AuthorDate: Sun Nov 4 23:07:45 2018 +0100
Commit: Noel Grandin 
CommitDate: Fri Dec 7 08:26:17 2018 +0100

tdf#63029 Copy and paste comments with slide

Change-Id: Iceb0e744f8e994ece91cd8f50fefaed631aa8396
Reviewed-on: https://gerrit.libreoffice.org/64126
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/sd/source/core/sdpage2.cxx b/sd/source/core/sdpage2.cxx
index 0744eca27585..996f9760f121 100644
--- a/sd/source/core/sdpage2.cxx
+++ b/sd/source/core/sdpage2.cxx
@@ -30,6 +30,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -391,6 +392,22 @@ void SdPage::lateInit(const SdPage& rSrcPage)
 // animations
 rSrcPage.cloneAnimations(*this);
 
+// annotations
+for(const Reference< XAnnotation >& srcAnnotation : rSrcPage.maAnnotations)
+{
+Reference< XAnnotation > ref;
+createAnnotation(ref);
+ref->setPosition(srcAnnotation->getPosition());
+ref->setSize(srcAnnotation->getSize());
+ref->setAuthor(srcAnnotation->getAuthor());
+ref->setInitials(srcAnnotation->getInitials());
+ref->setDateTime(srcAnnotation->getDateTime());
+Reference< ::css::text::XTextCopy > srcRange ( 
srcAnnotation->getTextRange(), uno::UNO_QUERY);
+Reference< ::css::text::XTextCopy > range ( ref->getTextRange(), 
uno::UNO_QUERY);
+if(srcRange.is() && range.is())
+range->copyText( srcRange );
+}
+
 // fix user calls for duplicated slide
 SdrObjListIter aSourceIter( , SdrIterMode::DeepWithGroups );
 SdrObjListIter aTargetIter( this, SdrIterMode::DeepWithGroups );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106215] Debugging Python is hard and activating it needs editing essential files

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

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

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
Xisco, please retest it

-- 
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-12-06 Thread Libreoffice Gerrit user
 sw/source/core/text/guess.cxx  |2 +-
 sw/source/core/text/porlay.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a10dd637dc842e0b0221b8ec10965c8f130b4059
Author: himajin10 
AuthorDate: Thu Dec 6 16:42:04 2018 +0900
Commit: Noel Grandin 
CommitDate: Fri Dec 7 08:22:27 2018 +0100

adapt to the change from sal_Int32 to TextFrameIndex

see commit 2136dc24 and commit e721f958

Change-Id: I07ace74f93adc2568003314b5f05c41611d6f77c
Reviewed-on: https://gerrit.libreoffice.org/64671
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/sw/source/core/text/guess.cxx b/sw/source/core/text/guess.cxx
index e966dfa6a9d7..76fb43c1eb9e 100644
--- a/sw/source/core/text/guess.cxx
+++ b/sw/source/core/text/guess.cxx
@@ -202,7 +202,7 @@ bool SwTextGuess::Guess( const SwTextPortion& rPor, 
SwTextFormatInfo ,
 nCutPos = rInf.GetTextBreak( nLineWidth, nMaxLen, nMaxComp, 
rInf.GetCachedVclData().get() );
 
 #if OSL_DEBUG_LEVEL > 1
-if ( COMPLETE_STRING != nCutPos )
+if ( TextFrameIndex(COMPLETE_STRING) != nCutPos )
 {
 sal_uInt16 nMinSize;
 rInf.GetTextSize( , rInf.GetIdx(), nCutPos - rInf.GetIdx(),
diff --git a/sw/source/core/text/porlay.cxx b/sw/source/core/text/porlay.cxx
index 781c8aef5302..ef435fc6f133 100644
--- a/sw/source/core/text/porlay.cxx
+++ b/sw/source/core/text/porlay.cxx
@@ -1371,7 +1371,7 @@ void SwScriptInfo::InitScriptInfo(const SwTextNode& rNode,
 // Check that ScriptChangeInfos are in increasing order of
 // position and that we don't have "empty" changes.
 sal_uInt8 nLastTyp = i18n::ScriptType::WEAK;
-sal_Int32 nLastPos = 0;
+TextFrameIndex nLastPos = TextFrameIndex(0);
 for (const auto& rScriptChange : m_ScriptChanges)
 {
 SAL_WARN_IF( nLastTyp == rScriptChange.type ||
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91688] VIEWING: Print Preview does not display comments

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

--- Comment #7 from martin garix  ---
Install bing app from microsoft store,i have giving the 4 star,i think you like
this app http://bingrewards.info many users have no any idea what is bing and
how do i use.

-- 
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 117369] UI Comment box is truncated on hover when comment cell is copied

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

--- Comment #5 from martin garix  ---
Window are mostly used in operating system,many people have no any idea how to
enter bios windows 10 PC
https://windowsclassroom.com/how-to-enter-bios-windows-10 here the all possible
solution,just click here this site.

-- 
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 84837] Make show/hide comments UNO command work in Calc

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

--- Comment #118 from Sara Abo  ---
They can take the help and support of our https://www.customer-service-numbers.com/aol-support-number;>AOL Gold
Support Number. We will assist them to reach the attainable self-governing
third-party AOL retriever password support.

-- 
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 64999] EDITING: Add automatically author's initials into cell comments

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

--- Comment #2 from martin garix  ---
Download settings windows 10,it is very simple to find outlook sync settings
windows 10 http://syncsettingswindows10.com here the available all
solution,then share this visit to all users.

-- 
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 97738] Hotkey for Insert→Comment does not work for editing, and Insert → Edit Comment does not add comments

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

--- Comment #8 from martin garix  ---
How do i clear clipboard history in my computer.this is common issue,but people
try the more different method to solve this issue
https://clipboardwindows10.com/ now first learn the basic info,so i think you
try to understand this process.

-- 
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 78302] EDITING: add safety question when all comments or all comments of a certain person shall be deleted

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

--- Comment #6 from martin garix  ---
Such a very interesting and skill based game,so this is right time to play free
board game http://mahjongfreegames.online/titans i am very happy and i hope you
like and easy to understand this game process.

-- 
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 78302] EDITING: add safety question when all comments or all comments of a certain person shall be deleted

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

--- Comment #6 from martin garix  ---
Such a very interesting and skill based game,so this is right time to play free
board game http://mahjongfreegames.online/titans i am very happy and i hope you
like and easy to understand this game process.

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


[Libreoffice-bugs] [Bug 121945] Include useful citation Styles in Writer by default and make them available with a drop-down button.

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

Dieter Praas  changed:

   What|Removed |Added

   Severity|normal  |enhancement
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

-- 
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 121945] Include useful citation Styles in Writer by default and make them available with a drop-down button.

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

Dieter Praas  changed:

   What|Removed |Added

   Severity|normal  |enhancement
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

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


[Libreoffice-bugs] [Bug 104271] New comment box should automatically re-position and re-size appropriately based on the shape of text pasted into it

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

--- Comment #5 from martin garix  ---
Sometimes users try the many different option or method to find change your
internet setting http://windowstuts.net/synchronize-settings/ so,i am here and
i told your,sync is batter option to solve this issue.

-- 
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 34438] [feature request, FORMATTING] group selection does not work with raster images

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

Dieter Praas  changed:

   What|Removed |Added

 CC||m.bonaf...@bluemail.ch

--- Comment #29 from Dieter Praas  ---
*** Bug 121950 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 121950] can't select multiple pictures by shift-click a second one

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

Dieter Praas  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||dgp-m...@gmx.de

--- Comment #1 from Dieter Praas  ---


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

-- 
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-2' - external/libnumbertext

2018-12-06 Thread Libreoffice Gerrit user
 external/libnumbertext/ExternalProject_libnumbertext.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8e92da60341cbc882cf310f04f0d15862763a888
Author: Stephan Bergmann 
AuthorDate: Thu Dec 6 15:31:13 2018 +0100
Commit: Stephan Bergmann 
CommitDate: Fri Dec 7 07:49:47 2018 +0100

Typo causing external/libnumbertext to always use $(gb_COMPILERNOOPTFLAGS)

...ever since f1579d3d6c5f5f3a651825e035b93bee7a4f43c6 "tdf#117171 support
localized number name numbering styles"

Change-Id: I93dcfa9f1310b35e3068a7e0efdce258364a7d78
Reviewed-on: https://gerrit.libreoffice.org/64720
Reviewed-by: László Németh 
Tested-by: László Németh 
Tested-by: Jenkins
(cherry picked from commit 82af7584dcfe78b2242b3611bc00375871093189)
Reviewed-on: https://gerrit.libreoffice.org/64743
Reviewed-by: Stephan Bergmann 

diff --git a/external/libnumbertext/ExternalProject_libnumbertext.mk 
b/external/libnumbertext/ExternalProject_libnumbertext.mk
index 2b899c63d132..b12012e16577 100644
--- a/external/libnumbertext/ExternalProject_libnumbertext.mk
+++ b/external/libnumbertext/ExternalProject_libnumbertext.mk
@@ -37,7 +37,7 @@ $(call 
gb_ExternalProject_get_state_target,libnumbertext,build):
$(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM))\
$(if $(filter 
AIX,$(OS)),CFLAGS="-D_LINUX_SOURCE_COMPAT") \
$(if 
$(libnumbertext_CPPFLAGS),CPPFLAGS='$(libnumbertext_CPPFLAGS)') \
-   CXXFLAGS="$(libnumbertext_CXXFLAGS) $(if 
$(ENABLE_OPTIMIZED) $(gb_COMPILEROPTFLAGS),$(gb_COMPILERNOOPTFLAGS)) $(if 
$(debug),$(gb_DEBUGINFO_FLAGS) $(gb_DEBUG_CXXFLAGS)) $(gb_VISIBILITY_FLAGS) 
$(gb_VISIBILITY_FLAGS_CXX)" \
+   CXXFLAGS="$(libnumbertext_CXXFLAGS) $(if 
$(ENABLE_OPTIMIZED),$(gb_COMPILEROPTFLAGS),$(gb_COMPILERNOOPTFLAGS)) $(if 
$(debug),$(gb_DEBUGINFO_FLAGS) $(gb_DEBUG_CXXFLAGS)) $(gb_VISIBILITY_FLAGS) 
$(gb_VISIBILITY_FLAGS_CXX)" \
&& cd src && $(MAKE) \
)
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-12-06 Thread Libreoffice Gerrit user
 vcl/source/gdi/pdfwriter_impl.cxx |8 
 1 file changed, 8 deletions(-)

New commits:
commit 4723ea4b509fb6df5da1c798859cd85790c1f1fb
Author: Stephan Bergmann 
AuthorDate: Thu Dec 6 23:26:32 2018 +0100
Commit: Stephan Bergmann 
CommitDate: Fri Dec 7 07:50:13 2018 +0100

No need to silence -Wregister in lcms2.h any more

...since 2bea600f0295cab7fad3edb55f0c5e092640e49e "external/lcms2: Stop
warnings/errors about 'register'" patched those uses away

Change-Id: Ib21bb60d158172c8c4e9e93bc3ebaf3729cdecd9
Reviewed-on: https://gerrit.libreoffice.org/64745
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/vcl/source/gdi/pdfwriter_impl.cxx 
b/vcl/source/gdi/pdfwriter_impl.cxx
index 0a1c2c6998af..3ebe2ce38673 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -24,15 +24,7 @@
 #include 
 #include 
 
-#if defined __GNUC__ && __cplusplus > 201402L
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wpragmas"
-#pragma GCC diagnostic ignored "-Wregister"
-#endif
 #include 
-#if defined __GNUC__ && __cplusplus > 201402L
-#pragma GCC diagnostic pop
-#endif
 
 #include 
 #include 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - solenv/flatpak-manifest.in

2018-12-06 Thread Libreoffice Gerrit user
 solenv/flatpak-manifest.in |   12 
 1 file changed, 12 deletions(-)

New commits:
commit f8d469e6a062e4a246bad8426c040d0e1b944a48
Author: Stephan Bergmann 
AuthorDate: Thu Dec 6 12:02:32 2018 +0100
Commit: Stephan Bergmann 
CommitDate: Fri Dec 7 07:49:18 2018 +0100

No need to bundle gst-libav in the flatpak any more

756c9f2317605e39d9cb058e650962acd2d81739 "Merge upstream fixes into
solenv/flatpak-manifest.in" had introduced it (via 

"For now, bundle gst-libav to be able to play mp4 videos in impress" to fix
 "Impress
don't insert a video" back when the LO flatpak was based on
org.gnome.Platform//3.26 which doesn't contain
/usr/lib/gstreamer-1.0/libgstlibav.so.  (And
/app/lib/gstreamer-1.0/libgstlibav.so is apparently the only file that the
gst-libav module contributes to the LO flatpak.)

When 727bfa2c87db170483c1e4ae895174295b070c77 "Merge in Flatpak 
improvements"
switched the runtime to org.freedesktop.Platform//1.6 (via
 "port to freedesktop.org 1.6 
runtime")
it kept the gst-libav module even though org.freedesktop.Platform//1.6 
contains
/usr/lib/gstreamer-1.0/libgstlibav.so.  Lets assume it was kept by accident 
and
can be removed.  (At least the scenario from  "Impress don't
insert a video" still works with this change.)

Change-Id: I692d01bfe5882c05d63124db7cdfa6390540e69f
Reviewed-on: https://gerrit.libreoffice.org/64703
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 
(cherry picked from commit 3c015ddfb8096e2b7adc49e3e0ac67c6c0dfd9c0)
Reviewed-on: https://gerrit.libreoffice.org/64731

diff --git a/solenv/flatpak-manifest.in b/solenv/flatpak-manifest.in
index bc06bdd56b1e..bfd5cfa08d70 100644
--- a/solenv/flatpak-manifest.in
+++ b/solenv/flatpak-manifest.in
@@ -32,18 +32,6 @@
 ]
 },
 {
-"name": "gst-libav",
-"config-opts": [ "--disable-gtk-doc", "--with-system-libav" ],
-"cleanup": [ "*.la", "/share/gtk-doc" ],
-"sources": [
-{
-"type" : "archive",
-"url" : 
"https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.10.5.tar.xz;,
-"sha256" : 
"e4d2f315f478d47281fbfdfbd590a63d23704ca37911d7142d5992616f4b28d3"
-}
-]
-},
-{
 "name": "gvfs",
 "cleanup": [ "/libexec/*", "/share/dbus-1/services/*", 
"/share/gvfs/mounts" ],
 "config-opts": [ "--disable-hal", "--disable-gdu", 
"--disable-gcr", "--disable-obexftp",
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: external/postgresql

2018-12-06 Thread Libreoffice Gerrit user
 external/postgresql/UnpackedTarball_postgresql.mk |3 
 external/postgresql/postgresql-9.2.1-autoreconf.patch |  521 --
 2 files changed, 2 insertions(+), 522 deletions(-)

New commits:
commit 7c3c2ef49f636653808d3cbd2629cb18ffc45ee1
Author: Stephan Bergmann 
AuthorDate: Thu Dec 6 17:15:08 2018 +0100
Commit: Stephan Bergmann 
CommitDate: Fri Dec 7 07:48:45 2018 +0100

Use gb_UnpackedTarball_update_autoconf_configs in external/postgresql

Change-Id: I56c68b74daa701e0e27ca4b661ece12bf20a8776
Reviewed-on: https://gerrit.libreoffice.org/64729
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/external/postgresql/UnpackedTarball_postgresql.mk 
b/external/postgresql/UnpackedTarball_postgresql.mk
index 2e41bf66d806..3ae5eed0746b 100644
--- a/external/postgresql/UnpackedTarball_postgresql.mk
+++ b/external/postgresql/UnpackedTarball_postgresql.mk
@@ -15,7 +15,6 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,postgresql,3))
 
 $(eval $(call gb_UnpackedTarball_add_patches,postgresql, \
external/postgresql/postgresql-libs-leak.patch \
-   external/postgresql/postgresql-9.2.1-autoreconf.patch \
external/postgresql/postgresql-9.2.1-libreoffice.patch \
 ))
 
@@ -25,4 +24,6 @@ $(eval $(call gb_UnpackedTarball_add_patches,postgresql, \
 ))
 endif
 
+$(eval $(call gb_UnpackedTarball_update_autoconf_configs,postgresql))
+
 # vim: set noet sw=4 ts=4:
diff --git a/external/postgresql/postgresql-9.2.1-autoreconf.patch 
b/external/postgresql/postgresql-9.2.1-autoreconf.patch
deleted file mode 100644
index 9cbf84f252c8..
--- a/external/postgresql/postgresql-9.2.1-autoreconf.patch
+++ /dev/null
@@ -1,521 +0,0 @@
 misc/build/postgresql-9.1.1/configure  2011-09-22 23:57:57.0 
+0200
-+++ misc/build/postgresql-9.1.1.patched/configure  2012-02-03 
11:50:07.0 +0100
-@@ -830,6 +830,7 @@
- with_krb_srvnam
- with_pam
- with_ldap
-+with_mozldap
- with_bonjour
- with_openssl
- with_selinux
-@@ -1527,6 +1528,7 @@
-   [postgres]
-   --with-pam  build with PAM support
-   --with-ldap build with LDAP support
-+  --with-mozldap  build with Mozilla LDAP support
-   --with-bonjour  build with Bonjour support
-   --with-openssl  build with OpenSSL support
-   --with-selinux  build with SELinux support
-@@ -5412,6 +5414,42 @@
- 
- 
- 
-+{ $as_echo "$as_me:$LINENO: checking whether to use Mozilla C SDK for LDAP 
support" >&5
-+$as_echo_n "checking whether to use Mozilla C SDK for LDAP support... " >&6; }
-+
-+
-+
-+# Check whether --with-mozldap was given.
-+if test "${with_mozldap+set}" = set; then
-+  withval=$with_mozldap;
-+  case $withval in
-+yes)
-+
-+cat >>confdefs.h <<\_ACEOF
-+#define USE_MOZLDAP 1
-+_ACEOF
-+
-+  ;;
-+no)
-+  :
-+  ;;
-+*)
-+  { { $as_echo "$as_me:$LINENO: error: no argument expected for 
--with-mozldap option" >&5
-+$as_echo "$as_me: error: no argument expected for --with-mozldap option" >&2;}
-+   { (exit 1); exit 1; }; }
-+  ;;
-+  esac
-+
-+else
-+  with_mozldap=no
-+
-+fi
-+
-+
-+{ $as_echo "$as_me:$LINENO: result: $with_mozldap" >&5
-+$as_echo "$with_mozldap" >&6; }
-+
-+
- 
- #
- # Kerberos configuration parameters
-@@ -8627,11 +8665,11 @@
- *** Not using spinlocks will cause poor performance." >&2;}
- fi
- 
--if test "$with_gssapi" = yes ; then
-+if test "$with_krb5" = yes ; then
-   if test "$PORTNAME" != "win32"; then
--{ $as_echo "$as_me:$LINENO: checking for library containing 
gss_init_sec_context" >&5
--$as_echo_n "checking for library containing gss_init_sec_context... " >&6; }
--if test "${ac_cv_search_gss_init_sec_context+set}" = set; then
-+ { $as_echo "$as_me:$LINENO: checking for library containing com_err" >&5
-+$as_echo_n "checking for library containing com_err... " >&6; }
-+if test "${ac_cv_search_com_err+set}" = set; then
-   $as_echo_n "(cached) " >&6
- else
-   ac_func_search_save_LIBS=$LIBS
-@@ -8648,16 +8686,16 @@
- #ifdef __cplusplus
- extern "C"
- #endif
--char gss_init_sec_context ();
-+char com_err ();
- int
- main ()
- {
--return gss_init_sec_context ();
-+return com_err ();
-   ;
-   return 0;
- }
- _ACEOF
--for ac_lib in '' gssapi_krb5 gss 'gssapi -lkrb5 -lcrypto'; do
-+for ac_lib in '' com_err 'com_err -lssl -lcrypto' krb5 'krb5 -lcrypto -ldes 
-lasn1 -lroken'; do
-   if test -z "$ac_lib"; then
- ac_res="none required"
-   else
-@@ -8685,7 +8723,7 @@
-test "$cross_compiling" = yes ||
-$as_test_x conftest$ac_exeext
-}; then
--  ac_cv_search_gss_init_sec_context=$ac_res
-+  ac_cv_search_com_err=$ac_res
- else
-   $as_echo "$as_me: failed program was:" >&5
- sed 's/^/| /' conftest.$ac_ext >&5
-@@ -8696,40 +8734,33 @@
- rm -rf conftest.dSYM
- rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-   conftest$ac_exeext
--  if test "${ac_cv_search_gss_init_sec_context+set}" = set; then
-+  if 

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

2018-12-06 Thread Libreoffice Gerrit user
 svl/source/items/macitem.cxx |   19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)

New commits:
commit e9774088efddff4383af4f3c55d9c8287d258212
Author: Stephan Bergmann 
AuthorDate: Sun Nov 25 17:13:19 2018 +0100
Commit: Stephan Bergmann 
CommitDate: Fri Dec 7 07:48:20 2018 +0100

Revert "Blind fix for pre-C++14 std::equal, for now"

This reverts commit 75299cd119dcb3121540471354d2b33af7f6684d, now that we 
have
full C++17 support.

Change-Id: I6616a724394d6f9f6c386f7aa48ee386433bec50
Reviewed-on: https://gerrit.libreoffice.org/63990
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/svl/source/items/macitem.cxx b/svl/source/items/macitem.cxx
index 7cad10f07a63..f45b7bfe9bf2 100644
--- a/svl/source/items/macitem.cxx
+++ b/svl/source/items/macitem.cxx
@@ -81,16 +81,15 @@ bool SvxMacroTableDtor::operator==( const 
SvxMacroTableDtor& rOther ) const
 {
 // Count different => odd in any case
 // Compare single ones; the sequence matters due to performance reasons
-return aSvxMacroTable.size() == rOther.aSvxMacroTable.size()
-&& std::equal(aSvxMacroTable.begin(), aSvxMacroTable.end(),
-rOther.aSvxMacroTable.begin(),
-[](const SvxMacroTable::value_type& rOwnEntry, const 
SvxMacroTable::value_type& rOtherEntry) {
-const SvxMacro& rOwnMac = rOwnEntry.second;
-const SvxMacro& rOtherMac = rOtherEntry.second;
-return rOwnEntry.first == rOtherEntry.first
-&& rOwnMac.GetLibName() == rOtherMac.GetLibName()
-&& rOwnMac.GetMacName() == rOtherMac.GetMacName();
-});
+return std::equal(aSvxMacroTable.begin(), aSvxMacroTable.end(),
+rOther.aSvxMacroTable.begin(), rOther.aSvxMacroTable.end(),
+[](const SvxMacroTable::value_type& rOwnEntry, const 
SvxMacroTable::value_type& rOtherEntry) {
+const SvxMacro& rOwnMac = rOwnEntry.second;
+const SvxMacro& rOtherMac = rOtherEntry.second;
+return rOwnEntry.first == rOtherEntry.first
+&& rOwnMac.GetLibName() == rOtherMac.GetLibName()
+&& rOwnMac.GetMacName() == rOtherMac.GetMacName();
+});
 }
 
 void SvxMacroTableDtor::Read( SvStream& rStrm )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: configure.ac external/libcmis

2018-12-06 Thread Libreoffice Gerrit user
 configure.ac  |4 ++--
 external/libcmis/StaticLibrary_libcmis.mk |7 ++-
 2 files changed, 4 insertions(+), 7 deletions(-)

New commits:
commit 665ac8f32d3aaaf7c27e8976e14fd4819edbf79b
Author: Stephan Bergmann 
AuthorDate: Thu Dec 6 18:48:21 2018 +0100
Commit: Stephan Bergmann 
CommitDate: Fri Dec 7 07:46:20 2018 +0100

All supported versions of Clang and GCC support at least C++17 now

Change-Id: I9130d0d1fceeb6efb1f324c99acd38eb92e67850
Reviewed-on: https://gerrit.libreoffice.org/64733
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/configure.ac b/configure.ac
index 9f60e40384a0..44143a0c81a1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6205,12 +6205,12 @@ dnl 
===
 dnl C++11
 dnl ===
 
-AC_MSG_CHECKING([whether $CXX supports C++17, C++14, or C++11])
+AC_MSG_CHECKING([whether $CXX supports C++17])
 CXXFLAGS_CXX11=
 if test "$COM" = MSC -a "$COM_IS_CLANG" != TRUE; then
 CXXFLAGS_CXX11=-std:c++17
 elif test "$GCC" = "yes" -o "$COM_IS_CLANG" = TRUE; then
-my_flags='-std=gnu++2a -std=c++2a -std=gnu++17 -std=gnu++1z -std=c++17 
-std=c++1z -std=gnu++14 -std=gnu++1y -std=c++14 -std=c++1y -std=gnu++11 
-std=gnu++0x -std=c++11 -std=c++0x'
+my_flags='-std=gnu++2a -std=c++2a -std=gnu++17 -std=gnu++1z -std=c++17 
-std=c++1z'
 for flag in $my_flags; do
 if test "$COM" = MSC; then
 flag="-Xclang $flag"
diff --git a/external/libcmis/StaticLibrary_libcmis.mk 
b/external/libcmis/StaticLibrary_libcmis.mk
index 6e666f489c7a..2998ec24d2fb 100644
--- a/external/libcmis/StaticLibrary_libcmis.mk
+++ b/external/libcmis/StaticLibrary_libcmis.mk
@@ -13,13 +13,10 @@ $(eval $(call 
gb_StaticLibrary_set_warnings_not_errors,libcmis))
 
 ifeq ($(COM_IS_CLANG),TRUE)
 # Avoid narrowing conversion error (even though the option is technically a 
warning)
-# caused by boost.
-# Also avoid -Wdynamic-exception-spec errors in C++17 mode.
+# caused by boost, and avoid -Wdynamic-exception-spec errors.
 $(eval $(call gb_StaticLibrary_add_cxxflags,libcmis,\
 -Wno-error=c++11-narrowing \
-$(if $(filter -std=gnu++2a -std=c++2a -std=gnu++17 -std=gnu++1z -std=c++17 
-std=c++1z, \
-$(CXXFLAGS_CXX11)), \
--Wno-error=dynamic-exception-spec) \
+-Wno-error=dynamic-exception-spec \
 ))
 endif
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-12-06 Thread Libreoffice Gerrit user
 include/xmloff/shapeexport.hxx|4 +---
 sc/source/filter/xml/xmlexprt.cxx |4 ++--
 2 files changed, 3 insertions(+), 5 deletions(-)

New commits:
commit f3e258e343dd6e3ca39fc8cb710ed6c4cbb530ba
Author: Noel Grandin 
AuthorDate: Thu Dec 6 09:05:23 2018 +0200
Commit: Noel Grandin 
CommitDate: Fri Dec 7 07:42:35 2018 +0100

remove unused XMLShapeExportFlags::NO_CHART_DATA

dead since
commit ec712408961a4a2efc667a7af83a21209907f9eb
Date:   Fri Nov 20 11:58:22 2009 +0100
chartpositioning: #i100778# chart positioning excluding labels

Change-Id: Ibc7f23d51a0ba4ac1e63cd89a28298d95a405110
Reviewed-on: https://gerrit.libreoffice.org/64718
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/include/xmloff/shapeexport.hxx b/include/xmloff/shapeexport.hxx
index d9cb574deadc..6dbbde2b8b82 100644
--- a/include/xmloff/shapeexport.hxx
+++ b/include/xmloff/shapeexport.hxx
@@ -53,8 +53,6 @@ enum class XMLShapeExportFlags {
  WIDTH= 0x0004,
  HEIGHT   = 0x0008,
  SIZE = WIDTH | HEIGHT,
-// when you set this flag a chart does NOT export its own data as table element
- NO_CHART_DATA = 0x0010,
 // When setting the flag below no ignorableWhiteSpace will be called around
 // the drawing object elements
  NO_WS= 0x0020,
@@ -63,7 +61,7 @@ enum class XMLShapeExportFlags {
 };
 namespace o3tl
 {
-template<> struct typed_flags : 
is_typed_flags {};
+template<> struct typed_flags : 
is_typed_flags {};
 }
 
 #define SEF_DEFAULT 
XMLShapeExportFlags::POSITION|XMLShapeExportFlags::SIZE
diff --git a/sc/source/filter/xml/xmlexprt.cxx 
b/sc/source/filter/xml/xmlexprt.cxx
index 6f4109e4f5f7..a71d2ffc325f 100644
--- a/sc/source/filter/xml/xmlexprt.cxx
+++ b/sc/source/filter/xml/xmlexprt.cxx
@@ -3433,7 +3433,7 @@ void ScXMLExport::ExportShape(const uno::Reference < 
drawing::XShape >& xShape,
 SvXMLAttributeList* pAttrList = new 
SvXMLAttributeList();
 pAttrList->AddAttribute(
 GetNamespaceMap().GetQNameByKey( 
XML_NAMESPACE_DRAW, GetXMLToken( XML_NOTIFY_ON_UPDATE_OF_RANGES ) ), sRanges );
-GetShapeExport()->exportShape( xShape, 
XMLShapeExportFlags::NO_CHART_DATA | SEF_DEFAULT, pPoint, pAttrList );
+GetShapeExport()->exportShape( xShape, 
SEF_DEFAULT, pPoint, pAttrList );
 }
 }
 }
@@ -3467,7 +3467,7 @@ void ScXMLExport::ExportShape(const uno::Reference < 
drawing::XShape >& xShape,
 pAttrList->AddAttribute(
 GetNamespaceMap().GetQNameByKey( 
XML_NAMESPACE_DRAW, GetXMLToken(XML_NOTIFY_ON_UPDATE_OF_RANGES) ), sRanges );
 }
-GetShapeExport()->exportShape(xShape, 
XMLShapeExportFlags::NO_CHART_DATA | SEF_DEFAULT, pPoint, pAttrList);
+GetShapeExport()->exportShape(xShape, 
SEF_DEFAULT, pPoint, pAttrList);
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 120762] Photo transparency does not save or load when working in *.docx format with Writer.

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

--- Comment #6 from BVZ  ---
Hi Xisco,

Thanks for looking into this. The problem actually does not concern image
transparency when working in *.odt files, this feature works as intended.

The problem is when one tries to save image transparency in *.docx files,
closes said file with image transparency setting, then reopens that same file.
The 'saved' image transparency does not appear as saved and the image only
appears with its initial opacity.

-- 
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/unotools unotools/source

2018-12-06 Thread Libreoffice Gerrit user
 include/unotools/fontcvt.hxx |6 +-
 unotools/source/misc/fontcvt.cxx |2 +-
 2 files changed, 2 insertions(+), 6 deletions(-)

New commits:
commit e57d61f9c052c4ebb3f940a67ed6dddf26ad5cf0
Author: Noel Grandin 
AuthorDate: Wed Dec 5 17:00:48 2018 +0200
Commit: Noel Grandin 
CommitDate: Fri Dec 7 07:39:31 2018 +0100

the FontToSubsFontFlags enum is not a bitmask

Change-Id: I76a777a1da15df60f283b8f3fbfd36dd05244705
Reviewed-on: https://gerrit.libreoffice.org/64717
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/include/unotools/fontcvt.hxx b/include/unotools/fontcvt.hxx
index f24a5e3e48ae..2877e18972ea 100644
--- a/include/unotools/fontcvt.hxx
+++ b/include/unotools/fontcvt.hxx
@@ -28,12 +28,8 @@
 enum class FontToSubsFontFlags
 {
 IMPORT   = 0x01,
-EXPORT   = 0x02,
+EXPORT   = 0x02
 };
-namespace o3tl
-{
-template<> struct typed_flags : 
is_typed_flags {};
-}
 
 typedef void* FontToSubsFontConverter;
 UNOTOOLS_DLLPUBLIC FontToSubsFontConverter CreateFontToSubsFontConverter( 
const OUString& rFontName, FontToSubsFontFlags nFlags );
diff --git a/unotools/source/misc/fontcvt.cxx b/unotools/source/misc/fontcvt.cxx
index 8a47fdb27495..663954c1bfc1 100644
--- a/unotools/source/misc/fontcvt.cxx
+++ b/unotools/source/misc/fontcvt.cxx
@@ -1387,7 +1387,7 @@ FontToSubsFontConverter CreateFontToSubsFontConverter( 
const OUString& rOrgName,
 
 OUString aName = GetEnglishSearchFontName( rOrgName );
 
-if ( nFlags & FontToSubsFontFlags::IMPORT )
+if ( nFlags == FontToSubsFontFlags::IMPORT )
 {
 const int nEntries = 2; // only StarMath+StarBats
 for( int i = 0; i < nEntries; ++i )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-12-06 Thread Libreoffice Gerrit user
 editeng/source/editeng/impedit2.cxx |2 --
 include/editeng/editstat.hxx|3 +--
 2 files changed, 1 insertion(+), 4 deletions(-)

New commits:
commit 504ae08d8ca7755106926326e8cde8ed015bd2ee
Author: Noel Grandin 
AuthorDate: Wed Dec 5 12:02:21 2018 +0200
Commit: Noel Grandin 
CommitDate: Fri Dec 7 07:39:13 2018 +0100

remove unused EditStatusFlags enum value

Change-Id: I859a0ebba11aaa9edbe14863c06703585defa66c
Reviewed-on: https://gerrit.libreoffice.org/64716
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/editeng/source/editeng/impedit2.cxx 
b/editeng/source/editeng/impedit2.cxx
index 1c5fa806ef7d..490496e7b7c6 100644
--- a/editeng/source/editeng/impedit2.cxx
+++ b/editeng/source/editeng/impedit2.cxx
@@ -903,8 +903,6 @@ EditSelection const & ImpEditEngine::MoveCursor( const 
KeyEvent& rKeyEvent, Edit
 {
 CursorMoved( aOldPaM.GetNode() );
 }
-else
-aStatus.GetStatusWord() = aStatus.GetStatusWord() | 
EditStatusFlags::CRSRMOVEFAIL;
 
 // May cause, an CreateAnchor or deselection all
 aSelEngine.SetCurView( pEditView );
diff --git a/include/editeng/editstat.hxx b/include/editeng/editstat.hxx
index 5c8c9873b08a..d7c8c441cf29 100644
--- a/include/editeng/editstat.hxx
+++ b/include/editeng/editstat.hxx
@@ -79,14 +79,13 @@ enum class EditStatusFlags
 HSCROLL = 0x0001,
 VSCROLL = 0x0002,
 CURSOROUT   = 0x0004,
-CRSRMOVEFAIL= 0x0008,
 TEXTWIDTHCHANGED= 0x0010,
 TextHeightChanged   = 0x0020,
 WRONGWORDCHANGED= 0x0040
 };
 namespace o3tl
 {
-template<> struct typed_flags : 
is_typed_flags {};
+template<> struct typed_flags : 
is_typed_flags {};
 }
 
 inline void SetFlags( EVControlBits& rBits, EVControlBits nMask, bool bOn )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: editeng/source filter/source include/editeng sd/source svx/source sw/source

2018-12-06 Thread Libreoffice Gerrit user
 editeng/source/uno/unonrule.cxx|2 +-
 filter/source/msfilter/svdfppt.cxx |3 +--
 include/editeng/numitem.hxx|3 +--
 sd/source/core/drawdoc4.cxx|2 +-
 sd/source/core/stlpool.cxx |5 ++---
 svx/source/sidebar/nbdtmg.cxx  |6 ++
 sw/source/core/doc/number.cxx  |2 +-
 7 files changed, 9 insertions(+), 14 deletions(-)

New commits:
commit 3aa02154941bd04c1646948bcfbec20c2873e189
Author: Noel Grandin 
AuthorDate: Wed Dec 5 11:43:30 2018 +0200
Commit: Noel Grandin 
CommitDate: Fri Dec 7 07:38:53 2018 +0100

remove unused SvxNumRuleFlags::CHAR_TEXT_DISTANCE

which is dead as far back as its introduction in

commit fd069bee7e57ad529c3c0974559fd2d84ec3151a
Date:   Mon Sep 18 16:07:07 2000 +
initial import

Change-Id: Ieff923732005aaa48cfae4918e8094020e6a540b
Reviewed-on: https://gerrit.libreoffice.org/64715
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/editeng/source/uno/unonrule.cxx b/editeng/source/uno/unonrule.cxx
index 1f5c104fca9f..ea7b262523f7 100644
--- a/editeng/source/uno/unonrule.cxx
+++ b/editeng/source/uno/unonrule.cxx
@@ -487,7 +487,7 @@ css::uno::Reference< css::container::XIndexReplace > 
SvxCreateNumRule(const SvxN
 }
 else
 {
-SvxNumRule aDefaultRule( SvxNumRuleFlags::BULLET_REL_SIZE | 
SvxNumRuleFlags::BULLET_COLOR | SvxNumRuleFlags::CHAR_TEXT_DISTANCE, 
SVX_MAX_NUM, false);
+SvxNumRule aDefaultRule( SvxNumRuleFlags::BULLET_REL_SIZE | 
SvxNumRuleFlags::BULLET_COLOR, SVX_MAX_NUM, false);
 return new SvxUnoNumberingRules( aDefaultRule );
 }
 }
diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index 2670bff723e2..42807c8585bc 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -4380,8 +4380,7 @@ PPTStyleSheet::PPTStyleSheet( const DffRecordHeader& 
rSlideHd, SvStream& rIn, Sd
 eNumRuleType = SvxNumRuleType::NUMBERING;
 break;
 }
-SvxNumRule aRule( SvxNumRuleFlags::BULLET_REL_SIZE | 
SvxNumRuleFlags::BULLET_COLOR |
-SvxNumRuleFlags::CHAR_TEXT_DISTANCE,
+SvxNumRule aRule( SvxNumRuleFlags::BULLET_REL_SIZE | 
SvxNumRuleFlags::BULLET_COLOR,
 nLevels, false, eNumRuleType );
 for ( sal_uInt16 nCount = 0; nDepth < nLevels; nCount++ )
 {
diff --git a/include/editeng/numitem.hxx b/include/editeng/numitem.hxx
index 94cc2e90cf07..8fb543e7a305 100644
--- a/include/editeng/numitem.hxx
+++ b/include/editeng/numitem.hxx
@@ -221,7 +221,6 @@ enum class SvxNumRuleFlags
 {
 NONE= 0x,
 CONTINUOUS  = 0x0001, // consecutive numbers possible?
-CHAR_TEXT_DISTANCE  = 0x0002, // Distance Symbol<->Text?
 CHAR_STYLE  = 0x0004, // Character styles?
 BULLET_REL_SIZE = 0x0008, // relative bullet size?
 BULLET_COLOR= 0x0010, // Bullet color
@@ -231,7 +230,7 @@ enum class SvxNumRuleFlags
 };
 namespace o3tl
 {
-template<> struct typed_flags : 
is_typed_flags {};
+template<> struct typed_flags : 
is_typed_flags {};
 }
 
 enum class SvxNumRuleType
diff --git a/sd/source/core/drawdoc4.cxx b/sd/source/core/drawdoc4.cxx
index d4a56c215b29..1f4a7d9dfabf 100644
--- a/sd/source/core/drawdoc4.cxx
+++ b/sd/source/core/drawdoc4.cxx
@@ -1249,7 +1249,7 @@ void SdDrawDocument::SetTextDefaults() const
 aNumberFormat.SetStart(1);
 aNumberFormat.SetNumAdjust(SvxAdjust::Left);
 
-SvxNumRule aNumRule( SvxNumRuleFlags::BULLET_REL_SIZE | 
SvxNumRuleFlags::BULLET_COLOR | SvxNumRuleFlags::CHAR_TEXT_DISTANCE, 
SVX_MAX_NUM, false);
+SvxNumRule aNumRule( SvxNumRuleFlags::BULLET_REL_SIZE | 
SvxNumRuleFlags::BULLET_COLOR, SVX_MAX_NUM, false);
 
 //aNumberFormat.SetAbsLSpace( 0 );
 //aNumberFormat.SetFirstLineOffset( 0 );
diff --git a/sd/source/core/stlpool.cxx b/sd/source/core/stlpool.cxx
index cfbaf9f31079..2cb12ccfcf79 100644
--- a/sd/source/core/stlpool.cxx
+++ b/sd/source/core/stlpool.cxx
@@ -1102,7 +1102,7 @@ void SdStyleSheetPool::PutNumBulletItem( 
SfxStyleSheetBase* pSheet,
 aNumberFormat.SetStart(1);
 aNumberFormat.SetNumAdjust(SvxAdjust::Left);
 
-SvxNumRule aNumRule( SvxNumRuleFlags::BULLET_REL_SIZE | 
SvxNumRuleFlags::BULLET_COLOR | SvxNumRuleFlags::CHAR_TEXT_DISTANCE, 
SVX_MAX_NUM, false);
+SvxNumRule aNumRule( SvxNumRuleFlags::BULLET_REL_SIZE | 
SvxNumRuleFlags::BULLET_COLOR, SVX_MAX_NUM, false);
 
 for( sal_uInt16 i = 0; i < aNumRule.GetLevelCount(); i++ )
 {
@@ -1158,8 +1158,7 @@ void SdStyleSheetPool::PutNumBulletItem( 
SfxStyleSheetBase* pSheet,
 aNumberFormat.SetStart(1);
 aNumberFormat.SetNumAdjust(SvxAdjust::Left);
 
-SvxNumRule aNumRule( SvxNumRuleFlags::BULLET_REL_SIZE | 
SvxNumRuleFlags::BULLET_COLOR |
- 

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

2018-12-06 Thread Libreoffice Gerrit user
 include/vcl/treelist.hxx |   11 +++
 vcl/source/treelist/treelist.cxx |   38 +++---
 2 files changed, 22 insertions(+), 27 deletions(-)

New commits:
commit 9afd48075fafda24d554d17ca4a31e98e3f6be35
Author: Noel Grandin 
AuthorDate: Thu Dec 6 16:30:36 2018 +0200
Commit: Noel Grandin 
CommitDate: Fri Dec 7 07:38:36 2018 +0100

move a couple of method from SvTreeList to SvListView

where they really want to be anyway, instead of passing "this" as a
pointer into them

Change-Id: Id2a3824c4603a10a7387b6e5afd21d26da121ce4
Reviewed-on: https://gerrit.libreoffice.org/64714
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/include/vcl/treelist.hxx b/include/vcl/treelist.hxx
index fb2aaadc..48fb5cb26c82 100644
--- a/include/vcl/treelist.hxx
+++ b/include/vcl/treelist.hxx
@@ -234,14 +234,9 @@ class VCL_DLLPUBLIC SvListView
 protected:
 SvTreeList* pModel;
 
-voidExpandListEntry( SvTreeListEntry* pParent )
-{ SvTreeList::Expand(this,pParent); }
-
-voidCollapseListEntry( SvTreeListEntry* pParent )
-{ SvTreeList::Collapse(this,pParent); }
-
-boolSelectListEntry( SvTreeListEntry* pEntry, bool bSelect 
)
-{ return SvTreeList::Select(this,pEntry,bSelect); }
+voidExpandListEntry( SvTreeListEntry* pParent );
+voidCollapseListEntry( SvTreeListEntry* pParent );
+boolSelectListEntry( SvTreeListEntry* pEntry, bool bSelect 
);
 
 public:
 SvListView();   // Sets the Model to 0
diff --git a/vcl/source/treelist/treelist.cxx b/vcl/source/treelist/treelist.cxx
index cc5297111c78..cafccba11c13 100644
--- a/vcl/source/treelist/treelist.cxx
+++ b/vcl/source/treelist/treelist.cxx
@@ -893,48 +893,48 @@ void SvTreeList::SetAbsolutePositions()
 bAbsPositionsValid = true;
 }
 
-void SvTreeList::Expand( SvListView* pView, SvTreeListEntry* pEntry )
+void SvListView::ExpandListEntry( SvTreeListEntry* pEntry )
 {
-DBG_ASSERT(pEntry&,"Expand:View/Entry?");
-if ( pView->IsExpanded(pEntry) )
+DBG_ASSERT(pEntry,"Expand:View/Entry?");
+if ( IsExpanded(pEntry) )
 return;
 
 DBG_ASSERT(!pEntry->m_Children.empty(), "SvTreeList::Expand: We expected 
to have child entries.");
 
-SvViewDataEntry* pViewData = pView->GetViewData(pEntry);
+SvViewDataEntry* pViewData = GetViewData(pEntry);
 pViewData->SetExpanded(true);
 SvTreeListEntry* pParent = pEntry->pParent;
 // if parent is visible, invalidate status data
-if ( pView->IsExpanded( pParent ) )
+if ( IsExpanded( pParent ) )
 {
-pView->m_pImpl->m_bVisPositionsValid = false;
-pView->m_pImpl->m_nVisibleCount = 0;
+m_pImpl->m_bVisPositionsValid = false;
+m_pImpl->m_nVisibleCount = 0;
 }
 }
 
-void SvTreeList::Collapse( SvListView* pView, SvTreeListEntry* pEntry )
+void SvListView::CollapseListEntry( SvTreeListEntry* pEntry )
 {
-DBG_ASSERT(pView&,"Collapse:View/Entry?");
-if ( !pView->IsExpanded(pEntry) )
+DBG_ASSERT(pEntry,"Collapse:View/Entry?");
+if ( !IsExpanded(pEntry) )
 return;
 
 DBG_ASSERT(!pEntry->m_Children.empty(), "SvTreeList::Collapse: We expected 
to have child entries.");
 
-SvViewDataEntry* pViewData = pView->GetViewData( pEntry );
+SvViewDataEntry* pViewData = GetViewData( pEntry );
 pViewData->SetExpanded(false);
 
 SvTreeListEntry* pParent = pEntry->pParent;
-if ( pView->IsExpanded(pParent) )
+if ( IsExpanded(pParent) )
 {
-pView->m_pImpl->m_nVisibleCount = 0;
-pView->m_pImpl->m_bVisPositionsValid = false;
+m_pImpl->m_nVisibleCount = 0;
+m_pImpl->m_bVisPositionsValid = false;
 }
 }
 
-bool SvTreeList::Select( SvListView* pView, SvTreeListEntry* pEntry, bool 
bSelect )
+bool SvListView::SelectListEntry( SvTreeListEntry* pEntry, bool bSelect )
 {
-DBG_ASSERT(pView&,"Select:View/Entry?");
-SvViewDataEntry* pViewData = pView->GetViewData( pEntry );
+DBG_ASSERT(pEntry,"Select:View/Entry?");
+SvViewDataEntry* pViewData = GetViewData( pEntry );
 if ( bSelect )
 {
 if ( pViewData->IsSelected() || !pViewData->IsSelectable() )
@@ -942,7 +942,7 @@ bool SvTreeList::Select( SvListView* pView, 
SvTreeListEntry* pEntry, bool bSelec
 else
 {
 pViewData->SetSelected(true);
-pView->m_pImpl->m_nSelectionCount++;
+m_pImpl->m_nSelectionCount++;
 }
 }
 else
@@ -952,7 +952,7 @@ bool SvTreeList::Select( SvListView* pView, 
SvTreeListEntry* pEntry, bool bSelec
 else
 {
 pViewData->SetSelected(false);
-pView->m_pImpl->m_nSelectionCount--;
+m_pImpl->m_nSelectionCount--;
 }
 }
 return true;
___
Libreoffice-commits mailing list

[Libreoffice-commits] core.git: basctl/source basic/source compilerplugins/clang connectivity/source cppu/source cui/source drawinglayer/source extensions/source framework/source i18npool/source idlc/

2018-12-06 Thread Libreoffice Gerrit user
 basctl/source/basicide/baside2b.cxx  |4 
 basic/source/classes/sbunoobj.cxx|9 
 basic/source/classes/sbxmod.cxx  |1 
 basic/source/inc/sbunoobj.hxx|3 
 basic/source/runtime/methods.cxx |8 
 compilerplugins/clang/singlevalfields.could-be-bool.results  |   30 
 compilerplugins/clang/singlevalfields.cxx|   46 
 compilerplugins/clang/singlevalfields.results| 1172 ++-
 connectivity/source/commontools/dbconversion.cxx |2 
 connectivity/source/commontools/filtermanager.cxx|2 
 connectivity/source/drivers/hsqldb/HStorageAccess.cxx|2 
 cppu/source/typelib/static_types.cxx |2 
 cppu/source/typelib/typelib.cxx  |2 
 cui/source/dialogs/screenshotannotationdlg.cxx   |   10 
 drawinglayer/source/primitive2d/controlprimitive2d.cxx   |2 
 drawinglayer/source/primitive2d/patternfillprimitive2d.cxx   |6 
 drawinglayer/source/primitive2d/sceneprimitive2d.cxx |2 
 drawinglayer/source/primitive2d/textdecoratedprimitive2d.cxx |2 
 drawinglayer/source/primitive2d/texteffectprimitive2d.cxx|2 
 drawinglayer/source/primitive2d/textprimitive2d.cxx  |2 
 drawinglayer/source/primitive2d/wrongspellprimitive2d.cxx|2 
 drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx   |2 
 extensions/source/bibliography/bibmod.cxx|2 
 extensions/source/bibliography/bibprop.hxx   |   20 
 framework/source/loadenv/loadenv.cxx |2 
 i18npool/source/nativenumber/nativenumbersupplier.cxx|6 
 idlc/source/astdeclaration.cxx   |2 
 sc/source/ui/view/formatsh.cxx   |2 
 scripting/source/stringresource/stringresource.cxx   |2 
 sd/source/ui/accessibility/AccessibleSlideSorterObject.cxx   |5 
 sd/source/ui/accessibility/AccessibleSlideSorterView.cxx |3 
 sd/source/ui/dlg/headerfooterdlg.cxx |2 
 sd/source/ui/view/sdview.cxx |2 
 sfx2/source/appl/newhelp.cxx |2 
 sfx2/source/view/classificationhelper.cxx|   22 
 svtools/source/control/filectrl.cxx  |2 
 svx/source/sdr/overlay/overlayrectangle.cxx  |2 
 svx/source/sdr/primitive2d/sdrframeborderprimitive2d.cxx |2 
 svx/source/xoutdev/xattr.cxx |2 
 sw/source/core/fields/reffld.cxx |2 
 sw/source/core/layout/paintfrm.cxx   |4 
 sw/source/uibase/docvw/AnchorOverlayObject.cxx   |2 
 ucb/source/ucp/file/filglob.cxx  |2 
 unotools/source/misc/mediadescriptor.cxx |4 
 vcl/source/app/svapp.cxx |2 
 vcl/source/window/printdlg.cxx   |4 
 vcl/unx/generic/window/FWS.cxx   |9 
 47 files changed, 1244 insertions(+), 178 deletions(-)

New commits:
commit 38187ec15b6cbaedcadcbd8f3bcb632a5c6be88f
Author: Noel Grandin 
AuthorDate: Thu Dec 6 11:37:51 2018 +0200
Commit: Noel Grandin 
CommitDate: Fri Dec 7 07:38:24 2018 +0100

loplugin:singlevalfields extend to all static vars

Change-Id: Ic238bb5291539fd1b7e98cb4afc9b25f37e7d528
Reviewed-on: https://gerrit.libreoffice.org/64710
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/basctl/source/basicide/baside2b.cxx 
b/basctl/source/basicide/baside2b.cxx
index 99208550315b..7ddaa8a81875 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -66,7 +66,7 @@ long const nBasePad = 2;
 long const nCursorPad = 5;
 
 long nVirtToolBoxHeight;// inited in WatchWindow, used in Stackwindow
-long nHeaderBarHeight;
+static const long nHeaderBarHeight = 16;
 
 // Returns pBase converted to SbxVariable if valid and is not an SbxMethod.
 SbxVariable* IsSbxVariable (SbxBase* pBase)
@@ -1581,8 +1581,6 @@ WatchWindow::WatchWindow (Layout* pParent)
 if ( nRWBtnSize > nVirtToolBoxHeight )
 nVirtToolBoxHeight = nRWBtnSize;
 
-nHeaderBarHeight = 16;
-
 aTreeListBox->SetHelpId(HID_BASICIDE_WATCHWINDOW_LIST);
 aTreeListBox->EnableInplaceEditing(true);
 aTreeListBox->SetSelectHdl( LINK( this, WatchWindow, TreeListHdl ) );
diff --git a/basic/source/classes/sbunoobj.cxx 
b/basic/source/classes/sbunoobj.cxx
index 21e57c5d206b..f3c276d88003 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -3657,15 +3657,6 @@ void SbUnoService::Notify( SfxBroadcaster& rBC, const 
SfxHint& rHint )
 

[Libreoffice-bugs] [Bug 121954] BASIC: inputbox layout modified

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

--- Comment #2 from tommy27  ---
Created attachment 147340
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147340=edit
inputbox in 6.1.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 121954] BASIC: inputbox layout modified

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

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #1 from tommy27  ---
Created attachment 147339
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147339=edit
inputbox in 6.0.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 121954] New: BASIC: inputbox layout modified

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

Bug ID: 121954
   Summary: BASIC: inputbox layout modified
   Product: LibreOffice
   Version: 6.1.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@quipo.it

Description:
I don't know if this change was intended or it's a side effect of some other
GUI change.
anyway the new BASIC inputbox layout in 6.1.x looks different thant 6.0.x
check screenshots.

Steps to Reproduce:
try this macro and see the different layout in 6.0.x and 6.1 x

sub Inputbox
InputBox("box text ","box titlebar",)
end sub

Actual Results:
- in 6.0.x the box test was on a line and the inputbox at the bottom; it was
confortable if you had long "box text descriptions" and long "manual text" to
digit

- in 6.1.x the box test and the inputbox are in the same line so if you work
with long texts it's quite annoying

Expected Results:
please, bring back the old layout.

reproduced in LibO 6.1.3 under Win10 x64 and Win7 x64
not reproduced in LibO 6.0.6
hence regression


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 117090] EDITING: Firebird: migration: View definitions are lost from embedded hsql files using functions unknown to Firebird

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

Justin L  changed:

   What|Removed |Added

 CC||jl...@mail.com

--- Comment #14 from Justin L  ---
My migration of attachment 147302 has the same problem mentioned by Robert, so
I thought I would include it as a sample. The wiki page mentioned in Comment 11
is very helpful.

Better error messages certainly would be helpful. Last62onMaster's MORE error
details gives me a box with two errors that I can't select and the description
is blank.

-- 
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 121779] Autocorrect: an option to avoid auto-capitalization of some words

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

Mike Kaganski  changed:

   What|Removed |Added

 CC||nem...@numbertext.org

--- Comment #8 from Mike Kaganski  ---
The advise should be from developers familiar with linguistics, so that they
could see if it's possible to use such a single list, or it would make some
scenarios for some languages difficult/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 119587] MSI creation fails with VS2017

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

Mike Kaganski  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #10 from Mike Kaganski  ---
Gabor, Balázs: Is this bug still relevant? Can you answer comment 9 please, or
close it if it's outdated/fixed/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 120441] FILEOPEN: LibO consumes all memory on my Debian when loading this .XLS file

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

tommy27  changed:

   What|Removed |Added

Summary|LibreOffice consumes all|FILEOPEN: LibO consumes all
   |memory on my Debian when|memory on my Debian when
   |opening this XLS file   |loading this .XLS file

-- 
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 120441] LibreOffice consumes all memory on my Debian when opening this XLS file

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

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #10 from tommy27  ---
try 6.1.3

-- 
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-2' - sc/uiconfig

2018-12-06 Thread Libreoffice Gerrit user
 sc/uiconfig/scalc/ui/notebookbar.ui|   67 +
 sc/uiconfig/scalc/ui/notebookbar_compact.ui|7 -
 sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui |7 -
 sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui|7 -
 4 files changed, 5 insertions(+), 83 deletions(-)

New commits:
commit 7f9d84f47dcbacdd080ccfc60d05af6d5a2d39e8
Author: andreas kainz 
AuthorDate: Wed Nov 28 21:12:44 2018 +0100
Commit: andreas_kainz 
CommitDate: Fri Dec 7 06:51:02 2018 +0100

remove uno:InsertObjectChartFromFile command from UI

cause command isn't available any more

Change-Id: Ie73491e02979fe24f59e8c627b69f902a12b512a
Reviewed-on: https://gerrit.libreoffice.org/64711
Tested-by: Jenkins
Reviewed-by: andreas_kainz 
(cherry picked from commit 7dbd56d5bfa79d948c4d291ffe79fb5b49d4fdd9)
Reviewed-on: https://gerrit.libreoffice.org/64737

diff --git a/sc/uiconfig/scalc/ui/notebookbar.ui 
b/sc/uiconfig/scalc/ui/notebookbar.ui
index 3a6e49c5eeaf..bd8b1a5cba49 100644
--- a/sc/uiconfig/scalc/ui/notebookbar.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar.ui
@@ -1019,13 +1019,6 @@
   
 
 
-  
-True
-False
-.uno:InsertObjectChartFromFile
-  
-
-
   
 True
 False
@@ -4623,72 +4616,22 @@
 True
   
 
-  
-  
-False
-True
-0
-  
-
-
-  
-True
-False
-center
-vertical
-
-  
-True
-True
-both-horiz
-False
-
-  
-True
-False
-.uno:InsertObjectChartFromFile
-  
-  
-False
-True
-  
-
-  
-  
-False
-True
-0
-  
-
 
-  
+  
 True
-True
-both-horiz
-False
-
-  
-True
-False
-.uno:InsertObject
-  
-  
-False
-True
-  
-
+False
+.uno:InsertObject
   
   
 False
-True
-1
+True
   
 
   
   
 False
 True
-1
+0
   
 
 
diff --git a/sc/uiconfig/scalc/ui/notebookbar_compact.ui 
b/sc/uiconfig/scalc/ui/notebookbar_compact.ui
index e9eab32b947b..a65b903df599 100644
--- a/sc/uiconfig/scalc/ui/notebookbar_compact.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar_compact.ui
@@ -1130,13 +1130,6 @@
   
 
 
-  
-True
-False
-.uno:InsertObjectChartFromFile
-  
-
-
   
 True
 False
diff --git a/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui 
b/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui
index a178dc6ca5e4..9ef4b34e425e 100644
--- a/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui
@@ -1655,13 +1655,6 @@
   
 
 
-  
-True
-False
-.uno:InsertObjectChartFromFile
-  
-
-
   
 True
 False
diff --git 

[Libreoffice-bugs] [Bug 121953] problem with snap version libreoffice

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

--- Comment #1 from Vladsilav  ---
Created attachment 147338
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147338=edit
error

-- 
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 121953] New: problem with snap version libreoffice

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

Bug ID: 121953
   Summary: problem with snap version libreoffice
   Product: LibreOffice
   Version: 6.1.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: v.yuzbe...@yandex.ru

Description:
My snap version does not have access to the temporary Ubuntu folder /tmp.
Because of what I can not view office files from the mail client thunderbird. 

Steps to Reproduce:
1.try to open file via thunderbird


Actual Results:
1.try to open file via thunderbird

Expected Results:
file is empty


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 121779] Autocorrect: an option to avoid auto-capitalization of some words

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

--- Comment #7 from tommy27  ---
do you mean a "never autocorrect these words" list? sounds nice.

-- 
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 84837] Make show/hide comments UNO command work in Calc

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

philip  changed:

   What|Removed |Added

URL|https://contentscrawl.com/g |http://setup-antivirus.com/
   |et-help-in-business-law-ass |norton-com-setup-install.ht
   |ignment-online/ |ml

--- Comment #117 from philip  ---
How can I help you? You have to select according to your need. We are offering
multiple type facilities of Norton antivirus technical support. You can contact
us because you have a multiple choice to connect with us, such as http://setup-antivirus.com/norton-com-setup-install.html; data-abc="true"
class="malachite">Norton support number, Norton live chat.

-- 
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-12-06 Thread Libreoffice Gerrit user
 sw/source/uibase/app/apphdl.cxx |   17 -
 1 file changed, 16 insertions(+), 1 deletion(-)

New commits:
commit 60714a814847f6d10f00aa6809a3896a48741e0b
Author: Mike Kaganski 
AuthorDate: Thu Dec 6 23:36:04 2018 +0300
Commit: Mike Kaganski 
CommitDate: Fri Dec 7 05:51:38 2018 +0100

tdf#121606: displaying Mail Merge toolbar shouldn't activate connection

At least I think so. Thus now the code that queries the state of the
toolbar controls only queries dataset if connection is active.

Operating the navigation buttons (next/prev) will, naturally, activate
connection if not yet active. This should also enable the other controls
that may be initially disabled: create/save/print/email documents. Thus,
the navigation controls also check if they have activated the connection,
and invalidate said document creation controls state. Possibly there's a
better place for the invalidation of the controls, but I was unable to
find one.

Regression after commit 5c2c5ff01c23e4f7a8947746afc13a46cbef5bec

Change-Id: I76f895c871718c9c761339ba03963baf6837b592
Reviewed-on: https://gerrit.libreoffice.org/64738
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sw/source/uibase/app/apphdl.cxx b/sw/source/uibase/app/apphdl.cxx
index b041a53964de..7ee90e3cea06 100644
--- a/sw/source/uibase/app/apphdl.cxx
+++ b/sw/source/uibase/app/apphdl.cxx
@@ -156,7 +156,8 @@ void SwModule::StateOther(SfxItemSet )
 xConfigItem = pView->GetMailMergeConfigItem();
 if (!xConfigItem)
 rSet.DisableItem(nWhich);
-else
+else if (xConfigItem->GetConnection().is()
+ && !xConfigItem->GetConnection()->isClosed())
 {
 bool bFirst, bLast;
 bool bValid = xConfigItem->IsResultSetFirstLast(bFirst, 
bLast);
@@ -209,6 +210,8 @@ void SwModule::StateOther(SfxItemSet )
 // #i51949# hide e-Mail option if e-Mail is not supported
 // #i63267# printing might be disabled
 if (!xConfigItem ||
+!xConfigItem->GetConnection().is() ||
+xConfigItem->GetConnection()->isClosed() ||
 !xConfigItem->GetResultSet().is() ||
 xConfigItem->GetCurrentDBData().sDataSource.isEmpty() ||
 xConfigItem->GetCurrentDBData().sCommand.isEmpty() ||
@@ -729,6 +732,9 @@ void SwModule::ExecOther(SfxRequest& rReq)
 if (!xConfigItem)
 return;
 
+const bool bHadConnection
+= xConfigItem->GetConnection().is() && 
!xConfigItem->GetConnection()->isClosed();
+
 sal_Int32 nPos = xConfigItem->GetResultSetPosition();
 switch (nWhich)
 {
@@ -766,6 +772,15 @@ void SwModule::ExecOther(SfxRequest& rReq)
 rBindings.Invalidate(FN_MAILMERGE_LAST_ENTRY);
 rBindings.Invalidate(FN_MAILMERGE_CURRENT_ENTRY);
 rBindings.Invalidate(FN_MAILMERGE_EXCLUDE_ENTRY);
+if (!bHadConnection && xConfigItem->GetConnection().is()
+&& !xConfigItem->GetConnection()->isClosed())
+{
+// The connection has been activated. Update controls that 
were disabled
+rBindings.Invalidate(FN_MAILMERGE_CREATE_DOCUMENTS);
+rBindings.Invalidate(FN_MAILMERGE_SAVE_DOCUMENTS);
+rBindings.Invalidate(FN_MAILMERGE_PRINT_DOCUMENTS);
+rBindings.Invalidate(FN_MAILMERGE_EMAIL_DOCUMENTS);
+}
 rBindings.Update();
 }
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108445] [META] Database import/open bugs and enhancements

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

Bug 121606 Summary: prompt for password pops up of protected 
spreadsheet-datasource, as soon as file with related databasefields is opened
https://bugs.documentfoundation.org/show_bug.cgi?id=121606

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 114125] UI hangs / lockup when saving files

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

--- 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 107765] CALC: Switching language during spell-check doesn't change the text's language property

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

--- Comment #3 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 38394] EDITING: Can't insert a French opening quote after an apostrophe using AutoCorrection

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

--- 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 106310] FILESAVE symmetric transition of Bézier point lost on save

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

--- 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 54091] Sidebar: Style list view that doesn't exist in other style list (like Automatic) not remembered when coming back to the first style list (like Paragraph)

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

--- 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 103439] FILEOPEN takes a long time on a small file with pictures in it

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

--- 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 38343] Behaviour of Advanced Filter in Calc/Spreadsheet is incorrect. Produced not working formulas

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

--- Comment #20 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 98040] Hovering over hidden comment does not display properly with compositing window managers (Gtk2)

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

--- Comment #20 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 106215] Debugging Python is hard and activating it needs editing essential files

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

--- Comment #2 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 97935] FILESAVE, FORMATTING. Format of cells containing text with several formats is corrupted when saving as xls, xlsx

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

--- Comment #17 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 40124] Chart lines moved importing Excel xls

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

--- Comment #8 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 113033] No error message when trying to save a locked document from a SMB external storage in Nextcloud with Collabora Online

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

Joel Madero  changed:

   What|Removed |Added

 CC||jmadero@gmail.com,
   ||michael.me...@collabora.com

--- Comment #1 from Joel Madero  ---
@Michael - I rarely add you to a cc on a bug without first asking but this one
seems like one you'd find interesting (possibly) and have knowledge about.

It's quite old, trying to deal with these old unconfirmed bugs.

Thoughts?

-- 
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 103856] Allow locale information for a language to be added via an extension

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

Joel Madero  changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #2 from Joel Madero  ---
@Xisco - in the old days the philosophy was, if it's a valid request (i.e., not
totally absurd) we would just mark as NEW and let the reporter know that
enhancements are done by volunteers almost entirely, the vast majority of
enhancements are never implemented, but, maybe a developer will at some point
find this interesting enough to do. Has that "policy" (maybe philosophy)
changed? Letting it rot in UNCONFIRMED land isn't helping anyone.

-- 
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 121847] IMPRESS: slide marking on side pane lost when switching to notes view

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

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
Version|6.0.6.2 release |4.3.0.4 release

-- 
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 98343] FILEOPEN: can't open files in path of more than 260 chars

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

--- Comment #14 from Aron Budea  ---
I tried reproducing this again, but for some reason now the long path elements
are replaced with an 8.3 shortened version, and the bug doesn't occur. Eg. in a
path similar to comment 8's, "4 PRODUCCIÓN" becomes "4PRODU~1".

Surely this depends on something else as well, I wonder what.

-- 
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 114424] [META] File export options dialog bugs and enhancements

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

--- Comment #2 from V Stuart Foote  ---
The current online Password help is here [1], and reads:

The open password must be entered to open the file.

The permission password must be entered to edit the document.

It seems sufficient, and would be the basis for tooltip when reimplemented.

But, as this is a META issue--new Documentation/Help issue should be opened,and
linked against the PDF Export options META bug 108694

=-ref-=

[1]
https://help.libreoffice.org/6.3/en-US/text/shared/01/password_dlg.html?System=WIN=WRITER=sfx/ui/password/pass1ed#bm_id3152878

-- 
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 90333] LibreOffice Dictionaries Path Cannot Be Changed

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

himajin100...@gmail.com changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=11 |
   |1883|
 CC||kaltenkirche...@email.de

--- Comment #20 from himajin100...@gmail.com ---
*** Bug 111883 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 111883] Can't change dictionary (main)path

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

himajin100...@gmail.com changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED
   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=90 |
   |333 |

--- Comment #4 from himajin100...@gmail.com ---
Marking this one as RESOLVED DUPLICATE

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

-- 
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 109312] [META] Paths options bugs and enhancements

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

Bug 111883 Summary: Can't change dictionary (main)path
https://bugs.documentfoundation.org/show_bug.cgi?id=111883

   What|Removed |Added

 Status|NEW |RESOLVED
 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 34694] [META] Improve usability of error messages

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

himajin100...@gmail.com changed:

   What|Removed |Added

 Depends on||112236


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112236
[Bug 112236] EDITING: Erroneous error message when renaming a sheet to blank
-- 
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 112236] EDITING: Erroneous error message when renaming a sheet to blank

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

himajin100...@gmail.com changed:

   What|Removed |Added

 Blocks||34694


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=34694
[Bug 34694] [META] Improve usability of error messages
-- 
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 108543] [META] Chart legend bugs and enhancements

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

Bug 51671 Summary: [XLS] FILEOPEN particular .XLS uses all chart data instead 
of first row for Legend
https://bugs.documentfoundation.org/show_bug.cgi?id=51671

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 75057] [META] OOXML Chart object issues

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

Bug 51671 Summary: [XLS] FILEOPEN particular .XLS uses all chart data instead 
of first row for Legend
https://bugs.documentfoundation.org/show_bug.cgi?id=51671

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 114424] [META] File export options dialog bugs and enhancements

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

--- Comment #1 from Tom Campbell  ---

File > Export As > Export as PDF... > Security > Set Passwords.. has options
that say Set open password, and Set permission password.

These don't seem meaningful to me. I would like to suggest that the context
help explain something like this:

Set open password: Requires user of the generated PDF to enter a password
before it can be viewed without encryption.

Set permission password: Requires user of the LibreOffice Writer file to enter
a password before the file can be read or edited.

-- 
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 121406] FORMATTING: setting text language to russian destroys formatting

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

haim kilov  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #7 from haim kilov  ---
Profile reset did not help.

Version: 6.1.2.1
Build ID: 65905a128db06ba48db947242809d14d3f9a93fe
CPU threads: 2; OS: Mac OS X 10.9.5; UI render: default; 
Locale: en-US (en.UTF-8); Calc: group threaded

Installed dictionaries, etc.: default PLUS [as far as I recall]:
lv_LV-1.3.0
dict_pack_ru-aot-0-4-0
ru_RU-medicine-0.4.4
en-us-openmedspel

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


Re: LO integration in iOS Project

2018-12-06 Thread Tor Lillqvist
> I downloaded LO iOS project from git and tried to build but it did't
> succeeded
>
You need to describe in detail exactly what you did and in what way it did
not succeed for anybody to be able to help you.

Please note that the LibreOffice "core" repository contains a somewhat
outdated iOS app, "LibreOfficeLight", that nobody has been working on for
almost a year. In the "online" repository is a different app being
developed that is much more promising (although I must say here that I am
not objective here, it is I and my colleagues at Collabora Productivity who
work on that...). Read the ios/README file in the "online" repository.

The information in this email and in any files transmitted with it is
> intended only for the addressee and may contain confidential and/or
> privileged material.
>

Please avoid such silly disclaimers in email sent to a publicly archived
mailing list. There is no way the information in such email stays
confidential. It is available on several sites for anybody to read.

(Also, please don't respond to this email privately to me only. That is not
how Open Source works. But sure, if you want to buy consulting work related
to iOS and LibreOffice from Collabora Productivity, feel free to contact us
privately.)

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


[Libreoffice-bugs] [Bug 45904] move java based api tests to c++

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

--- Comment #183 from Commit Notification 
 ---
Jens Carl committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/beae6c7a7f163daad0d4dea63a3d403af2745fd1%5E%21

tdf#45904 Move XIndexAccess Java tests to C++

It will be available in 6.3.0.

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

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

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


[Libreoffice-commits] core.git: qadevOOo/Jar_OOoRunner.mk qadevOOo/objdsc qadevOOo/tests sc/qa

2018-12-06 Thread Libreoffice Gerrit user
 qadevOOo/Jar_OOoRunner.mk  |1 
 qadevOOo/objdsc/sc/com.sun.star.comp.office.ScUniqueCellFormatsObj.csv |2 
 qadevOOo/tests/java/mod/_sc/ScUniqueCellFormatsObj.java|  115 
--
 sc/qa/extras/scuniquecellformatsobj.cxx|9 
 sc/qa/unoapi/sc_7.sce  |1 
 5 files changed, 8 insertions(+), 120 deletions(-)

New commits:
commit beae6c7a7f163daad0d4dea63a3d403af2745fd1
Author: Jens Carl 
AuthorDate: Thu Dec 6 06:51:14 2018 +
Commit: Jens Carl 
CommitDate: Fri Dec 7 00:15:29 2018 +0100

tdf#45904 Move XIndexAccess Java tests to C++

Move XIndexAccess Java tests to C++ for ScUniqueCellFormatsObj.

Change-Id: I2aabc835d37c5f12afacfcbafc2d7d6346619a3c
Reviewed-on: https://gerrit.libreoffice.org/64666
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/qadevOOo/Jar_OOoRunner.mk b/qadevOOo/Jar_OOoRunner.mk
index 86bda8985a6b..be961b469267 100644
--- a/qadevOOo/Jar_OOoRunner.mk
+++ b/qadevOOo/Jar_OOoRunner.mk
@@ -1008,7 +1008,6 @@ $(eval $(call gb_Jar_add_sourcefiles,OOoRunner,\
 qadevOOo/tests/java/mod/_sc/ScTableSheetsObj \
 qadevOOo/tests/java/mod/_sc/ScTableValidationObj \
 qadevOOo/tests/java/mod/_sc/ScTabViewObj \
-qadevOOo/tests/java/mod/_sc/ScUniqueCellFormatsObj \
 qadevOOo/tests/java/mod/_sc/ScViewPaneObj \
 qadevOOo/tests/java/mod/_sc/XMLContentExporter \
 qadevOOo/tests/java/mod/_sc/XMLContentImporter \
diff --git 
a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScUniqueCellFormatsObj.csv 
b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScUniqueCellFormatsObj.csv
deleted file mode 100644
index 548af7fb988b..
--- a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScUniqueCellFormatsObj.csv
+++ /dev/null
@@ -1,2 +0,0 @@
-"ScUniqueCellFormatsObj";"com::sun::star::container::XIndexAccess";"getCount()"
-"ScUniqueCellFormatsObj";"com::sun::star::container::XIndexAccess";"getByIndex()"
diff --git a/qadevOOo/tests/java/mod/_sc/ScUniqueCellFormatsObj.java 
b/qadevOOo/tests/java/mod/_sc/ScUniqueCellFormatsObj.java
deleted file mode 100644
index 808ac6739ca7..
--- a/qadevOOo/tests/java/mod/_sc/ScUniqueCellFormatsObj.java
+++ /dev/null
@@ -1,115 +0,0 @@
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-package mod._sc;
-
-import com.sun.star.beans.XPropertySet;
-import com.sun.star.container.XIndexAccess;
-import com.sun.star.sheet.XSpreadsheet;
-import com.sun.star.sheet.XSpreadsheetDocument;
-import com.sun.star.sheet.XUniqueCellFormatRangesSupplier;
-import com.sun.star.table.XCellRange;
-import com.sun.star.uno.UnoRuntime;
-import com.sun.star.uno.XInterface;
-
-import java.awt.Color;
-
-import java.io.PrintWriter;
-
-import lib.TestCase;
-import lib.TestEnvironment;
-import lib.TestParameters;
-
-import util.SOfficeFactory;
-
-
-public class ScUniqueCellFormatsObj extends TestCase {
-private XSpreadsheetDocument xSheetDoc = null;
-static XSpreadsheet oSheet = null;
-
-/**
-* Creates Spreadsheet document.
-*/
-@Override
-protected void initialize(TestParameters tParam, PrintWriter log) throws 
Exception {
-// get a soffice factory object
-SOfficeFactory SOF = SOfficeFactory.getFactory(
- tParam.getMSF());
-
-log.println("creating a sheetdocument");
-xSheetDoc = SOF.createCalcDoc(null);
-}
-
-/**
-* Disposes Spreadsheet document.
-*/
-@Override
-protected void cleanup(TestParameters tParam, PrintWriter log) {
-util.DesktopTools.closeDoc(xSheetDoc);
-}
-
-@Override
-protected TestEnvironment createTestEnvironment(TestParameters tParam,
-PrintWriter log) throws 
Exception {
-log.println("Getting the first sheet");
-
-XIndexAccess xIA = UnoRuntime.queryInterface(
-   XIndexAccess.class, xSheetDoc.getSheets());
-
-oSheet = UnoRuntime.queryInterface(
- XSpreadsheet.class, xIA.getByIndex(0));
-
-changeColor("A1:A5", 0, 255, 0);
-  

[Libreoffice-bugs] [Bug 118112] Parameter index out of range (1 > number of parameters, which is 0).

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

--- Comment #33 from Dan Lewis  ---
(In reply to tim from comment #32)
> I just noticed that using MYSQL(Native) avoids this problem.  I was using
> MYSQL(JDBC) when I came across it.

I have recently installed MySQL and MySQL workbook. I use LibreOffice 6.0.6.2
and 6.1.4.1 downloaded from LibreOffice website. I also have two Java
connectors for MySQL (8.0.13 and 5.1.23) which I downloaded from the MySQL
website in the last couple of days. Both of them work with LO 6.0.6.2 but give
the same error message with 6.1.4.1.

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


[Libreoffice-commits] online.git: docker/scripts

2018-12-06 Thread Libreoffice Gerrit user
 docker/scripts/run-lool.sh |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 30b8170fab303b98c905db2bec7f6967c2e74c77
Author: Andras Timar 
AuthorDate: Thu Dec 6 23:47:49 2018 +0100
Commit: Andras Timar 
CommitDate: Thu Dec 6 23:47:49 2018 +0100

docker: fix permission (owner) of /etc/loolwsd/key.pem

Change-Id: I9e0a9d8bc8c0fc0119e9c66389c1012023046c89

diff --git a/docker/scripts/run-lool.sh b/docker/scripts/run-lool.sh
index a283672b4..f9ec69338 100755
--- a/docker/scripts/run-lool.sh
+++ b/docker/scripts/run-lool.sh
@@ -23,6 +23,7 @@ openssl genrsa -out "certs/servers/localhost/privkey.pem" 
2048 -key "certs/serve
 openssl req -key "certs/servers/localhost/privkey.pem" -new -sha256 -out 
"certs/tmp/localhost.csr.pem" -subj "/C=DE/ST=BW/L=Stuttgart/O=Dummy 
Authority/CN=localhost"
 openssl x509 -req -in certs/tmp/localhost.csr.pem -CA certs/ca/root.crt.pem 
-CAkey certs/ca/root.key.pem -CAcreateserial -out 
certs/servers/localhost/cert.pem -days 9131
 mv certs/servers/localhost/privkey.pem /etc/loolwsd/key.pem
+chown lool: /etc/loolwsd/key.pem
 mv certs/servers/localhost/cert.pem /etc/loolwsd/cert.pem
 mv certs/ca/root.crt.pem /etc/loolwsd/ca-chain.cert.pem
 fi
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 121406] FORMATTING: setting text language to russian destroys formatting

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

Vera  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #6 from Vera  ---
Have you tried to reset your profile? If not, please try to retest this issue
after doing a profile reset. You can find information about the process here:
https://wiki.documentfoundation.org/UserProfile#Resolving_corruption_in_the_user_profile

If the profile reset does not help, could you give details about your
LibreOffice? Exact version from Help menu > About LibreOffice window and list
of installed languages.

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

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


[Libreoffice-bugs] [Bug 121893] Wrong gradient on left hand side of startcenter - LO Vanilla

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

--- Comment #7 from Tor Lillqvist  ---
(And if some QA people don't want to pay for LibreOffice Vanilla in the Mac App
Store, just ask, and I can generate promotional codes for you to get it for
free.)

-- 
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: docker/Dockerfile

2018-12-06 Thread Libreoffice Gerrit user
 docker/Dockerfile |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 70fe177a0fda5246e01fc12ce59a6e45cca6f303
Author: Andras Timar 
AuthorDate: Thu Dec 6 23:31:40 2018 +0100
Commit: Andras Timar 
CommitDate: Thu Dec 6 23:31:40 2018 +0100

docker: install openssl

Change-Id: I35a223068f67d3a0740968996ec4af9c723873dc

diff --git a/docker/Dockerfile b/docker/Dockerfile
index bfc5934e2..2cebb82af 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -13,7 +13,7 @@ RUN apt-get update && apt-get upgrade -y
 # install apt-transport-https in order to set up repo for Poco
 # install adduser, findutils and cpio that we need later
 # install an editor
-RUN apt-get -y install apt-transport-https locales-all libpng16-16 
libxinerama1 libgl1-mesa-glx libfontconfig1 libfreetype6 libxrender1 
libxcb-shm0 libxcb-render0 adduser cpio findutils nano libpoco*50 libcap2-bin
+RUN apt-get -y install apt-transport-https locales-all libpng16-16 
libxinerama1 libgl1-mesa-glx libfontconfig1 libfreetype6 libxrender1 
libxcb-shm0 libxcb-render0 adduser cpio findutils nano libpoco*50 libcap2-bin 
openssl
 
 # tdf#117557 - Add CJK Fonts to LibreOffice Online Docker Image
 RUN apt-get -y install fonts-wqy-zenhei fonts-wqy-microhei 
fonts-droid-fallback fonts-noto-cjk
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


MacOS Python: how to install additional packages

2018-12-06 Thread Jens Tröger
Hello,

I was playing around with LO on my Mac, particularly with the Python
interpreter and uno.  Now I need a few more packages in that Python
environment, and it gets tricky.  There is no virtual env installed,
when I attempt to create one, compiling modules fails because the build
tools differ between my system and LO’s Python.

For example:

  $ /Applications/LibreOffice.app/Contents/Resources/python
  Python 3.5.5 (default, Sep 11 2018, 01:20:06) 
  [GCC 4.2.1 Compatible Apple LLVM 9.1.0 (clang-902.0.39.2)] on darwin
  Type "help", "copyright", "credits" or "license" for more information.
  >>> import pip
  >>> pip.main(['install', 'regex'])

fails as well as 

  $ cd /Applications/LibreOffice.app/Contents/Resources
  /Applications/LibreOffice.app/Contents/Resources > ./python -m venv .
  /Applications/LibreOffice.app/Contents/Resources > ./bin/pip install regex

fails. Including LO’s path into PYTHONPATH like I would do on Linux
doesn’t work either:

  >>> import uno
  Traceback (most recent call last):
File "", line 1, in 
File "/Applications/LibreOffice.app/Contents/Resources/uno.py", line 19, in 

  import pyuno
  ModuleNotFoundError: No module named 'pyuno'

What’s the recommended approach here?

Cheers,
Jens

-- 
Jens Tröger
http://savage.light-speed.de/
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


LO integration in iOS Project

2018-12-06 Thread Satheesh Babu Rachamadugu

Hai Team,

I have a requirement in one of my iOS application to view and edit the word 
document file from App sandbox.

I searched a lot in internet but did't found any suitable solution, finally i 
found LO will fulfill my requirement.

I downloaded LO iOS project from git and tried to build but it did't succeeded

Could you please help us  LO integration into my project by providing the 
step-by-step process.
Thanks.

Regards,
Sateesh



Disclaimer:

The information in this email and in any files transmitted with it is intended 
only for the addressee and may contain confidential and/or privileged material. 
Access to this email by anyone else is unauthorized. If you receive this in 
error, please contact the sender immediately and delete the material from any 
computer. If you are not the intended recipient, any disclosure, copying, 
distribution or any action taken or omitted to be taken in reliance on it, is 
strictly prohibited. Statement and opinions expressed in this e-mail are those 
of the sender, and do not necessarily reflect those of DEWA. DEWA accepts no 
liability for any damage caused by any virus/worms transmitted by this email.

Dubai Electricity and Water Authority, Dubai, UAE, http://www.dewa.gov.ae

Our Vision: A sustainable innovative world-class utility.
Our Mission: We are committed to the happiness of our stakeholders and 
promoting Dubai's vision through the delivery of sustainable electricity and 
water services at a world-class level of reliability, efficiency and safety in 
an environment that nurtures innovation with a competent workforce and 
effective partnerships; supporting resources sustainability.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


RE: Trying to create editor using LibreOffice

2018-12-06 Thread Rohit Garg Satpal Garg
Thanks Mike. Really appreciate your fast response.

-Original Message-
From: Kaganski Mike [mailto:mikekagan...@hotmail.com]
Sent: Tuesday, December 4, 2018 4:17 PM
To: Rohit Garg Satpal Garg; libreoffice@lists.freedesktop.org
Cc: Fibeesh C.Aboobacker
Subject: Re: Trying to create editor using LibreOffice

This is an External Email. If suspicious, report to: is@dewa.gov.ae 


Hi,

On 04.12.2018 13:33, Rohit Garg Satpal Garg wrote:
> Hi Team,
>
> I am trying to create editing application for my one of the research
> projects but I am stuck on implementation of
> getLinreOfficeKitHandler() which is missing from the source files.

It is not missing. See implementation in
Java_org_libreoffice_kit_LibreOfficeKit_getLibreOfficeKitHandle() at 
sal/android/libreofficekit-jni.c:152.

--
Best regards,
Mike Kaganski




Disclaimer:

The information in this email and in any files transmitted with it is intended 
only for the addressee and may contain confidential and/or privileged material. 
Access to this email by anyone else is unauthorized. If you receive this in 
error, please contact the sender immediately and delete the material from any 
computer. If you are not the intended recipient, any disclosure, copying, 
distribution or any action taken or omitted to be taken in reliance on it, is 
strictly prohibited. Statement and opinions expressed in this e-mail are those 
of the sender, and do not necessarily reflect those of DEWA. DEWA accepts no 
liability for any damage caused by any virus/worms transmitted by this email.

Dubai Electricity and Water Authority, Dubai, UAE, http://www.dewa.gov.ae

Our Vision: A sustainable innovative world-class utility.
Our Mission: We are committed to the happiness of our stakeholders and 
promoting Dubai’s vision through the delivery of sustainable electricity and 
water services at a world-class level of reliability, efficiency and safety in 
an environment that nurtures innovation with a competent workforce and 
effective partnerships; supporting resources sustainability.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


query regarding GSoC participation

2018-12-06 Thread Akash Singh
sir/madam,
I'm Akash Singh 3rd year Btech student and want to join development of some
project under your organisation , I want to know where and how to start
if I can get somebody's contact who can guide me it will be a great help
for me.
thank you.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 121782] [FILESAVE]Cannot save file

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

Vera  changed:

   What|Removed |Added

 Resolution|FIXED   |---
 Status|RESOLVED|NEW

--- Comment #4 from Vera  ---
This issue is not fix for Windows even in the build of today (see comment 2),
therefore I change back the status to new.

-- 
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: docker/Dockerfile

2018-12-06 Thread Libreoffice Gerrit user
 docker/Dockerfile |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bea079cfce4b98dc343419be5e2f8f22d5efb679
Author: Andras Timar 
AuthorDate: Thu Dec 6 23:21:38 2018 +0100
Commit: Andras Timar 
CommitDate: Thu Dec 6 23:21:38 2018 +0100

docker: install libcap2-bin

Change-Id: Ibd6f794190ec2f6f511f6b8546bbcd237a971a43

diff --git a/docker/Dockerfile b/docker/Dockerfile
index 8589bf9c6..bfc5934e2 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -13,7 +13,7 @@ RUN apt-get update && apt-get upgrade -y
 # install apt-transport-https in order to set up repo for Poco
 # install adduser, findutils and cpio that we need later
 # install an editor
-RUN apt-get -y install apt-transport-https locales-all libpng16-16 
libxinerama1 libgl1-mesa-glx libfontconfig1 libfreetype6 libxrender1 
libxcb-shm0 libxcb-render0 adduser cpio findutils nano libpoco*50
+RUN apt-get -y install apt-transport-https locales-all libpng16-16 
libxinerama1 libgl1-mesa-glx libfontconfig1 libfreetype6 libxrender1 
libxcb-shm0 libxcb-render0 adduser cpio findutils nano libpoco*50 libcap2-bin
 
 # tdf#117557 - Add CJK Fonts to LibreOffice Online Docker Image
 RUN apt-get -y install fonts-wqy-zenhei fonts-wqy-microhei 
fonts-droid-fallback fonts-noto-cjk
___
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' - filter/source

2018-12-06 Thread Libreoffice Gerrit user
 filter/source/msfilter/svdfppt.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit eafe89573f03ba638059bbe014fab1ed6d45d153
Author: Stephan Bergmann 
AuthorDate: Wed Dec 5 10:14:17 2018 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Dec 6 23:19:12 2018 +0100

Fix reading 16 bit millisecond value

It had originally been read as 16 bit via >> in
d2000efb31f864e912c6cf52760eea0e602b6893 "#i106421#: move msfilter to 
filter",
then accidentally changed to be read as 32 bit via >> in
9830fd36dbdb72c79703b0c61efc027fba793c5a "date/time IDL datatypes 
incompatible
change" (and later changed to be read as 32 bit explicitly via ReadUInt32 
with
15535e32ddcfee451d4dbc9be9de0b8c9f9d78d4 "convert SvStream::operator>> 
methods
to ReadXXX methods").

Change-Id: I5062e67a578d182a0df2726ab8d0bae465f154f3
Reviewed-on: https://gerrit.libreoffice.org/64604
Reviewed-by: Lionel Elie Mamane 
Tested-by: Jenkins
(cherry picked from commit f84f5b0a0cdb82f444de572f9d8554a96056f874)
Reviewed-on: https://gerrit.libreoffice.org/64636

diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index cc2fc42ad4a6..0f702e8f8531 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -2705,6 +2705,7 @@ void ImportComment10( SvxMSDffManager const & rMan, 
SvStream& rStCtrl, SdrPage*
 
 case PPT_PST_CommentAtom10 :
 {
+sal_uInt16 millisec = 0;
 rStCtrl.ReadInt32( nIndex )
.ReadInt16( aDateTime.Year )
.ReadUInt16( aDateTime.Month )
@@ -2713,11 +2714,11 @@ void ImportComment10( SvxMSDffManager const & rMan, 
SvStream& rStCtrl, SdrPage*
.ReadUInt16( aDateTime.Hours )
.ReadUInt16( aDateTime.Minutes )
.ReadUInt16( aDateTime.Seconds )
-   .ReadUInt32( aDateTime.NanoSeconds )
+   .ReadUInt16( millisec )
.ReadInt32( nPosX )
.ReadInt32( nPosY );
 
-aDateTime.NanoSeconds *= ::tools::Time::nanoPerMilli;
+aDateTime.NanoSeconds = millisec * ::tools::Time::nanoPerMilli;
 }
 break;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: external/libnumbertext

2018-12-06 Thread Libreoffice Gerrit user
 external/libnumbertext/ExternalProject_libnumbertext.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 82af7584dcfe78b2242b3611bc00375871093189
Author: Stephan Bergmann 
AuthorDate: Thu Dec 6 15:31:13 2018 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Dec 6 23:17:28 2018 +0100

Typo causing external/libnumbertext to always use $(gb_COMPILERNOOPTFLAGS)

...ever since f1579d3d6c5f5f3a651825e035b93bee7a4f43c6 "tdf#117171 support
localized number name numbering styles"

Change-Id: I93dcfa9f1310b35e3068a7e0efdce258364a7d78
Reviewed-on: https://gerrit.libreoffice.org/64720
Reviewed-by: László Németh 
Tested-by: László Németh 
Tested-by: Jenkins

diff --git a/external/libnumbertext/ExternalProject_libnumbertext.mk 
b/external/libnumbertext/ExternalProject_libnumbertext.mk
index 2b899c63d132..b12012e16577 100644
--- a/external/libnumbertext/ExternalProject_libnumbertext.mk
+++ b/external/libnumbertext/ExternalProject_libnumbertext.mk
@@ -37,7 +37,7 @@ $(call 
gb_ExternalProject_get_state_target,libnumbertext,build):
$(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM))\
$(if $(filter 
AIX,$(OS)),CFLAGS="-D_LINUX_SOURCE_COMPAT") \
$(if 
$(libnumbertext_CPPFLAGS),CPPFLAGS='$(libnumbertext_CPPFLAGS)') \
-   CXXFLAGS="$(libnumbertext_CXXFLAGS) $(if 
$(ENABLE_OPTIMIZED) $(gb_COMPILEROPTFLAGS),$(gb_COMPILERNOOPTFLAGS)) $(if 
$(debug),$(gb_DEBUGINFO_FLAGS) $(gb_DEBUG_CXXFLAGS)) $(gb_VISIBILITY_FLAGS) 
$(gb_VISIBILITY_FLAGS_CXX)" \
+   CXXFLAGS="$(libnumbertext_CXXFLAGS) $(if 
$(ENABLE_OPTIMIZED),$(gb_COMPILEROPTFLAGS),$(gb_COMPILERNOOPTFLAGS)) $(if 
$(debug),$(gb_DEBUGINFO_FLAGS) $(gb_DEBUG_CXXFLAGS)) $(gb_VISIBILITY_FLAGS) 
$(gb_VISIBILITY_FLAGS_CXX)" \
&& cd src && $(MAKE) \
)
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: Changes to 'private/kendy/new-stuff'

2018-12-06 Thread Libreoffice Gerrit user
New branch 'private/kendy/new-stuff' available with the following commits:
commit 96ed87bdccc8985b96bb6b0ce5aaa4bd4685e3c3
Author: Szymon Kłos 
Date:   Thu Dec 6 11:40:54 2018 +0100

Slide switching buttons in mobile

Change-Id: Idf30f53dc8e1a68d0c99dfef484ea9796ee40550

commit 3e910e602e20c24321aaad8d97be57256034fb45
Author: Szymon Kłos 
Date:   Tue Dec 4 23:28:55 2018 +0100

WOPI: Action_RemoveView

Change-Id: Ie8160b70b94c5cb9012560fde64e7e4e9eb079cf

commit 3af486114a311b8fb64f37b17c29723b2098c2a7
Author: Ashod Nakashian 
Date:   Wed Dec 5 08:59:59 2018 -0500

leaflet: check status change by comparing payloads only

Since we have two status message commands, we need
to store and compare just the payloads, lest we
unnecessarily re-process the document state when
nothing has changed (except we got status: vs statusupdate:
or vice versa).

Change-Id: I8506fc4ced3e7677ccc6725893b5ad8eeb8e9f9d

commit a956556e152dae16e95b3e15cd0b23890d96a374
Author: Ashod Nakashian 
Date:   Fri Nov 30 09:10:28 2018 -0500

wsd: document forced autosave and why isAutosave=false

Change-Id: I5bb35898bb917f6768327b264e87dd9000a10ecc

commit c55fa25f0f6a192e54ee2c658bcf33c2a57e0317
Author: Henry Castro 
Date:   Tue Dec 4 21:57:31 2018 -0400

loleaflet: restore original preserveAspectRatio attribute

Change-Id: Ia34deb90c958e3d633d098b63c49adfd5bc3bdac

commit beedc12346ae422d8a478c9005f425eb0b6096a2
Author: Szymon Kłos 
Date:   Tue Dec 4 16:46:45 2018 +0100

Enable undo & redo after enterEditMode

Change-Id: I275f16613eafe74539a8ddd939a8db9979174e6d

commit a91175b1f7def7c3d94e648d7a71a3e0c1088d53
Author: Szymon Kłos 
Date:   Tue Dec 4 15:37:14 2018 +0100

Enable buttons after read-only mode exit

Change-Id: Ic6680d53d07ba0d3a026ae0e17ba5ba812e60e32

commit 694e454e7cc7d11e8c9f45bb3b6d71ef51ce84cf
Author: Szymon Kłos 
Date:   Mon Dec 3 19:17:16 2018 +0100

Reload menubar on permissions change

Change-Id: I156315982cea806de9f0cd21ef45e018be0b3c52

commit c79183788c330821fac027b8da14828be08d7d3f
Author: Jan Holesovsky 
Date:   Fri Nov 30 16:29:18 2018 +0100

mobile view mode: Don't show the 'edit' button on the desktop.

Change-Id: Ia7f3fa5036c0f47fb9da51042b5cfe673871e432

commit 3e63aab55b3e0f170bae5590fbf96f3f252242b1
Author: Jan Holesovsky 
Date:   Fri Nov 30 16:18:43 2018 +0100

mobile view mode: More screen space for Writer and Calc.

Change-Id: Ia754aad59d09254d538480619aec1020f4eb4943

commit 8f93a6ba38132150793d79099b62d0333cce0bd9
Author: Jan Holesovsky 
Date:   Fri Nov 30 15:24:29 2018 +0100

mobile view mode: Don't hide the content of the upper toolbar when 
read-only.

Change-Id: I7d3cf8f5f1946f05254cc22d7ea6fedfe872e225

commit 89826be862ffaeae1a62bb5e8f974d1e277c9f03
Author: Jan Holesovsky 
Date:   Fri Nov 30 14:37:11 2018 +0100

mobile: Fix the naming confusion also for toolbar-down.

Change-Id: I717d1364926a788a15ac9b5e89c4e5fe28a8cac3

commit ecc66d53258e9e3cfc3ed853ad0c8fcece09768a
Author: Jan Holesovsky 
Date:   Fri Nov 30 14:31:34 2018 +0100

mobile: Fix confusion between  naming and w2ui naming.

Both were using toolbar-up, but the  was always up, but the actual
w2ui toolbar (named toolbar-up) was at the bottom.

Change-Id: Ic3ff80f68bfb878d2ed77e98e5be10ca96d64987

commit fc09b8c45bc305860c2310b4d4601a8db98e33f0
Author: Jan Holesovsky 
Date:   Fri Nov 30 13:15:02 2018 +0100

mobile view mode: Start with the read-only mode, upgrade to edit when 
needed.

Change-Id: I268bf89465aac871b83238b8e7c534ef80428e88

commit 8f72cbb8c4c81682e9294e42b5dbb5693561990e
Author: Jan Holesovsky 
Date:   Fri Nov 30 12:17:48 2018 +0100

mobile view mode: Add the floating action button.

The icon comes from the Material Design pages: https://material.io

Change-Id: I59acf7bfb6c65030721605ead057c8854f529a3b

commit e58353657ae02441e49c3857207e6780b7710643
Author: Marco Cecchetti 
Date:   Thu Nov 29 23:37:31 2018 +0100

loleaflet: shape scaling rework

Now shape scaling is handled through the transform dialog instead of
simulating a drag and drop event in core.

For performing a uniform scaling when the shape/image is rotated we
need to inform the client about the rotation angle for the
selectedgraphic object that has been achieved but appending an
angle argument
to the graphic selection callback.

The client check if the angle is divisible by 90 in order to decide if
uniform scaling should be used or it doesn't.

Moreover now it is also possible to reverse shapes/images through
negative scaling.

Change-Id: Iadb93f5883ac403313c1358cb3d8cc9db78338fd

commit 5f6b92b14e22ec03814b67ae809ed2e25365ab27
Author: Szymon Kłos 
Date:   Thu Nov 22 18:37:53 2018 +0100

Zooming dialogs: per instance, not global

Change-Id: 

[Libreoffice-bugs] [Bug 121952] New: A sequence of X commands in an enhanced-path needs to toggle x- and y-direction

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

Bug ID: 121952
   Summary: A sequence of X commands in an enhanced-path needs to
toggle x- and y-direction
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 147337
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147337=edit
Example with three quarter circles

The command X in the enhanced-path of a custom shape geometry toggles x- and
y-direction, see table 10 in section 19.145draw:enhanced-path
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part1.html#attribute-draw_enhanced-path

PowerPoint and Karbon renders it this way, but LibreOffice uses always
x-direction.

-- 
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: ios/Mobile

2018-12-06 Thread Libreoffice Gerrit user
 ios/Mobile/Base.lproj/Main.storyboard  |   53 -
 ios/Mobile/TemplateCollectionViewController.mm |   12 +++--
 2 files changed, 42 insertions(+), 23 deletions(-)

New commits:
commit da45975a5aea927bb8bdcaf4a58b0deced862b5c
Author: Tor Lillqvist 
AuthorDate: Thu Dec 6 17:14:47 2018 +0200
Commit: Tor Lillqvist 
CommitDate: Fri Dec 7 00:09:13 2018 +0200

Make the template collection view look much better

Now it finally looks like I want, but oh boy was that a pain. I am not
sure at all I understand what I am doing in Xcode's Interface Builder.

I tried hard at first to use the cell size 200x220 for the cell size
of the UICollectionView, consisting of a 200x200 UIImageView and a
200x20 UILabel below. But that did not seem to work, it still used a
(default?) size of 150x150. Weird. Anyway, let's commit this state now
that seems to work.

Change-Id: I4021133619fbf62cd633392d93f19c2bbc81311a

diff --git a/ios/Mobile/Base.lproj/Main.storyboard 
b/ios/Mobile/Base.lproj/Main.storyboard
index 64685855d..062c453af 100644
--- a/ios/Mobile/Base.lproj/Main.storyboard
+++ b/ios/Mobile/Base.lproj/Main.storyboard
@@ -1,6 +1,6 @@
 
 
-
+
 
 
 
@@ -15,7 +15,7 @@
 
 
 
-
+
 
 
 
@@ -30,7 +30,7 @@
 
 
 
-
+
 
 
 
@@ -43,49 +43,66 @@
 
 
 
-
-
-
+
+
+
 
 
 
-
+
 
 
 
 
 
-
+
 
 
 
 
 
 
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
 
 
 
-
-
-
 
 
 
-
-
+
+
+
+
+
+
+
 
-
 
 
 
-
+
 
 
 
-
+
 
 
 
diff --git a/ios/Mobile/TemplateCollectionViewController.mm 
b/ios/Mobile/TemplateCollectionViewController.mm
index 91d5689d0..94a922825 100644
--- a/ios/Mobile/TemplateCollectionViewController.mm
+++ b/ios/Mobile/TemplateCollectionViewController.mm
@@ -12,8 +12,7 @@
 #import "TemplateCollectionViewController.h"
 #import "TemplateSectionHeaderView.h"
 
-static NSString 

[Libreoffice-commits] core.git: configure.ac

2018-12-06 Thread Libreoffice Gerrit user
 configure.ac |   14 +++---
 1 file changed, 3 insertions(+), 11 deletions(-)

New commits:
commit 9e16ad5d511cfa85b3be87f6da36f9b8e0b47424
Author: Stephan Bergmann 
AuthorDate: Thu Dec 6 18:14:19 2018 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Dec 6 23:02:19 2018 +0100

--enable-python=system no longer works on macOS

e.g.:

> [CXX] pyuno/source/module/pyuno_callable.cxx
> In file included from pyuno/source/module/pyuno_callable.cxx:19:
> In file included from pyuno/source/module/pyuno_impl.hxx:27:
> In file included from 
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/Python.h:85:
> 
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/unicodeobject.h:534:5:
 error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
> register PyObject *obj, /* Object */
> ^

(and some $enable_python=system/$_os=Darwin-specific code can thus be 
removed,
too)

Change-Id: Ic7901732c01bef9335c63dd6f0949453f5824226
Reviewed-on: https://gerrit.libreoffice.org/64732
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/configure.ac b/configure.ac
index 4e55ddbff76e..9f60e40384a0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8263,6 +8263,9 @@ fully-internal)
 ;;
 system)
 AC_MSG_RESULT([system])
+if test "$_os" = Darwin; then
+AC_MSG_ERROR([--enable-python=system doesn't work on macOS: 
/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/unicodeobject.h
 is known to contain uses of "register", which is removed from C++17])
+fi
 ;;
 *)
 AC_MSG_ERROR([Incorrect --enable-python option])
@@ -8274,17 +8277,6 @@ if test $enable_python != no; then
 fi
 
 if test $enable_python = system; then
-if test -z "$PYTHON_CFLAGS" -a $_os = Darwin; then
-python_version=2.7
-PYTHON=python$python_version
-if test -d 
"$FRAMEWORKSHOME/Python.framework/Versions/${python_version}/include/python${python_version}";
 then
-
PYTHON_CFLAGS="-I$FRAMEWORKSHOME/Python.framework/Versions/${python_version}/include/python${python_version}"
-PYTHON_LIBS="-framework Python"
-else
-PYTHON_CFLAGS="`$PYTHON-config --includes`"
-PYTHON_LIBS="`$PYTHON-config --libs`"
-fi
-fi
 if test -n "$PYTHON_CFLAGS" -a -n "$PYTHON_LIBS"; then
 # Fallback: Accept these in the environment, or as set above
 # for MacOSX.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: configure.ac connectivity/source cppu/qa external/poppler include/o3tl include/rtl include/sal solenv/gbuild ucb/source

2018-12-06 Thread Libreoffice Gerrit user
 configure.ac|4 +-
 connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.cxx |2 -
 cppu/qa/cppumaker/test_cppumaker.cxx|2 -
 external/poppler/StaticLibrary_poppler.mk   |   16 
--
 include/o3tl/safeint.hxx|2 -
 include/rtl/stringutils.hxx |   10 --
 include/sal/types.h |2 -
 solenv/gbuild/platform/com_GCC_defs.mk  |   14 +---
 ucb/source/ucp/cmis/auth_provider.hxx   |4 +-
 ucb/source/ucp/cmis/certvalidation_handler.hxx  |4 +-
 ucb/source/ucp/cmis/cmis_content.hxx|4 +-
 ucb/source/ucp/cmis/cmis_url.cxx|4 +-
 12 files changed, 17 insertions(+), 51 deletions(-)

New commits:
commit d7b46ef1cf69c9fe5c4c36958ca5d5b40de8cf8d
Author: Stephan Bergmann 
AuthorDate: Sat Nov 24 17:41:50 2018 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Dec 6 23:01:34 2018 +0100

Remove obsolete GCC version checks

...after  "Bump (Linux) GCC baseline 
to
7.0.0".  (In some cases, those checks now need to check for __clang__, 
which was
implicitly covered in the past by Clang consistently reporting to be
GCC 4.2.1.)

Change-Id: I860fef8c4ca41c22a7541f0fb2d34b37d1d69bed
Reviewed-on: https://gerrit.libreoffice.org/63952
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/configure.ac b/configure.ac
index 02114bfd17f9..4e55ddbff76e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6258,13 +6258,13 @@ elif test "$GCC" = "yes" -o "$COM_IS_CLANG" = TRUE; then
 
 #if defined SYSTEM_LIBCMIS
 // See ucb/source/ucp/cmis/auth_provider.hxx:
-#if __GNUC__ >= 7
+#if !defined __clang__
 #pragma GCC diagnostic push
 #pragma GCC diagnostic ignored "-Wdeprecated"
 #pragma GCC diagnostic ignored "-Wunused-but-set-parameter"
 #endif
 #include 
-#if __GNUC__ >= 7
+#if !defined __clang__
 #pragma GCC diagnostic pop
 #endif
 #endif
diff --git a/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.cxx 
b/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.cxx
index 9b687f74e8ad..6397831e80dd 100644
--- a/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.cxx
+++ b/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.cxx
@@ -444,7 +444,7 @@ void SAL_CALL 
OPreparedStatement::setObjectWithInfo(sal_Int32 parameterIndex, co
 break;
 }
 
-#if defined __GNUC__ && __GNUC__ >= 7
+#if defined __GNUC__ && !defined __clang__
 [[fallthrough]];
 #else
 BOOST_FALLTHROUGH;
diff --git a/cppu/qa/cppumaker/test_cppumaker.cxx 
b/cppu/qa/cppumaker/test_cppumaker.cxx
index e73a502333f8..cc310188b105 100644
--- a/cppu/qa/cppumaker/test_cppumaker.cxx
+++ b/cppu/qa/cppumaker/test_cppumaker.cxx
@@ -444,7 +444,7 @@ void Test::testBigStruct() {
 CPPUNIT_ASSERT_EQUAL(static_cast< sal_Int32 >(0), 
guard.p->m23.getLength());
 
 //This is a very platform specific test.
-#if defined __GNUC__ && __GNUC__ >= 3 // see CPPU_GCC3_ALIGN
+#if defined __GNUC__ // see CPPU_GCC3_ALIGN
 #if defined(LINUX) && (defined (X86_64) || defined(X86) || defined(PPC))
 CPPUNIT_ASSERT_EQUAL(
 #if defined X86_64 || defined PPC
diff --git a/external/poppler/StaticLibrary_poppler.mk 
b/external/poppler/StaticLibrary_poppler.mk
index f145b7ae9c39..84873d9c7c2a 100644
--- a/external/poppler/StaticLibrary_poppler.mk
+++ b/external/poppler/StaticLibrary_poppler.mk
@@ -33,22 +33,6 @@ $(eval $(call gb_StaticLibrary_add_cxxflags,poppler,\
 ))
 endif
 
-# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58864
-# can't easily check for 4.8.2 exactly so just apply to GCC 4.8.x
-ifeq ($(COM),GCC)
-ifeq ($(COM_IS_CLANG),)
-ifeq ($(CPUNAME),INTEL)
-ifeq ($(shell expr '$(GCC_VERSION)' '<' 409),1)
-ifeq ($(shell expr '$(GCC_VERSION)' '>=' 408),1)
-$(eval $(call gb_StaticLibrary_add_cxxflags,poppler,\
-   -march=i586 \
-))
-endif
-endif
-endif
-endif
-endif
-
 $(eval $(call gb_StaticLibrary_set_generated_cxx_suffix,poppler,cc))
 
 $(eval $(call gb_StaticLibrary_add_generated_exception_objects,poppler,\
diff --git a/include/o3tl/safeint.hxx b/include/o3tl/safeint.hxx
index 6f879965840c..ae28ca4b6570 100644
--- a/include/o3tl/safeint.hxx
+++ b/include/o3tl/safeint.hxx
@@ -112,7 +112,7 @@ template inline bool checked_sub(T a, T b, T& 
result)
 return !msl::utilities::SafeSubtract(a, b, result);
 }
 
-#elif (defined __GNUC__ && __GNUC__ >= 5) || 
(__has_builtin(__builtin_mul_overflow) && !(defined ANDROID && defined 
__clang__) && !(defined(__clang__) && defined(__i386__)))

  1   2   3   4   5   >