[Libreoffice-bugs] [Bug 114802] Emojis palette inserts code instead of emoji

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114802

raal  changed:

   What|Removed |Added

   Keywords||bibisected, bisected
 CC||r...@post.cz

--- Comment #3 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Noel Grandin ; Could you possibly take a look at this one?
Thanks

2e3787168b6e2e3b00370a6a3e4d22ff20715d7b is the first bad commit
commit 2e3787168b6e2e3b00370a6a3e4d22ff20715d7b
Author: Jenkins Build User 
Date:   Tue Jun 20 06:35:35 2017 +0200

source sha:027b25ecd54ac97ea2471ca73e3ba89ce052fe76

author  Noel Grandin  2017-06-09 13:43:00
+0200
committer   Noel Grandin  2017-06-09
14:24:00 +0200
commit  027b25ecd54ac97ea2471ca73e3ba89ce052fe76 (patch)
treefe8923a13998a96a865027c897273d0edb4d7c62
parent  f59e802478e35e7b6f561f24806bca47b604529b (diff)
use comphelper::InitPropertySequence in more places

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


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

2018-01-05 Thread Szymon Kłos
 sd/qa/unit/data/pptx/tdf114848.pptx  |binary
 sd/qa/unit/export-tests-ooxml2.cxx   |   15 +++
 sd/source/filter/eppt/pptx-epptooxml.cxx |3 +++
 3 files changed, 18 insertions(+)

New commits:
commit 6a91b67b1fe98f114e95649fb7484e22cc3a313b
Author: Szymon Kłos 
Date:   Fri Jan 5 18:12:08 2018 +0100

tdf#114848 Don't save empty themes

Change-Id: I7136f5c0bc884a2f9ea945b4e0bc093a5ef2d8df
Reviewed-on: https://gerrit.libreoffice.org/47481
Tested-by: Jenkins 
Reviewed-by: Szymon Kłos 

diff --git a/sd/qa/unit/data/pptx/tdf114848.pptx 
b/sd/qa/unit/data/pptx/tdf114848.pptx
new file mode 100644
index ..5b8b6c3fad7f
Binary files /dev/null and b/sd/qa/unit/data/pptx/tdf114848.pptx differ
diff --git a/sd/qa/unit/export-tests-ooxml2.cxx 
b/sd/qa/unit/export-tests-ooxml2.cxx
index 1a6d3b1e4adc..2c499bf77528 100644
--- a/sd/qa/unit/export-tests-ooxml2.cxx
+++ b/sd/qa/unit/export-tests-ooxml2.cxx
@@ -123,6 +123,7 @@ public:
 void testGroupsPosition();
 void testGroupsRotatedPosition();
 void testAccentColor();
+void testTdf114848();
 void testTdf68759();
 void testTdf90626();
 
@@ -173,6 +174,7 @@ public:
 CPPUNIT_TEST(testGroupsPosition);
 CPPUNIT_TEST(testGroupsRotatedPosition);
 CPPUNIT_TEST(testAccentColor);
+CPPUNIT_TEST(testTdf114848);
 CPPUNIT_TEST(testTdf68759);
 CPPUNIT_TEST(testTdf90626);
 
@@ -1304,6 +1306,19 @@ void SdOOXMLExportTest2::testAccentColor()
 assertXPath(pXmlDocTheme2, 
"/a:theme/a:themeElements/a:clrScheme/a:accent6/a:srgbClr", "val", "deb340");
 }
 
+void SdOOXMLExportTest2::testTdf114848()
+{
+::sd::DrawDocShellRef xDocShRef = 
loadURL(m_directories.getURLFromSrc("sd/qa/unit/data/pptx/tdf114848.pptx"), 
PPTX);
+utl::TempFile tempFile;
+xDocShRef = saveAndReload(xDocShRef.get(), PPTX, );
+xDocShRef->DoClose();
+
+xmlDocPtr pXmlDocTheme1 = parseExport(tempFile, "ppt/theme/theme1.xml");
+assertXPath(pXmlDocTheme1, 
"/a:theme/a:themeElements/a:clrScheme/a:dk2/a:srgbClr", "val", "1f497d");
+xmlDocPtr pXmlDocTheme2 = parseExport(tempFile, "ppt/theme/theme2.xml");
+assertXPath(pXmlDocTheme2, 
"/a:theme/a:themeElements/a:clrScheme/a:dk2/a:srgbClr", "val", "1f497d");
+}
+
 void SdOOXMLExportTest2::testTdf68759()
 {
 ::sd::DrawDocShellRef xDocShRef = 
loadURL(m_directories.getURLFromSrc("sd/qa/unit/data/odp/tdf68759.odp"), ODP);
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx 
b/sd/source/filter/eppt/pptx-epptooxml.cxx
index 295d2c043aa8..cb404b1fd8d9 100644
--- a/sd/source/filter/eppt/pptx-epptooxml.cxx
+++ b/sd/source/filter/eppt/pptx-epptooxml.cxx
@@ -2604,6 +2604,9 @@ bool PowerPointExport::WriteColorSchemes(FSHelperPtr pFS, 
const OUString& rTheme
 
 aGrabBag.getValue(rThemePath) >>= aCurrentTheme;
 
+if (!aCurrentTheme.getLength())
+return false;
+
 // Order is important
 for (int nId = PredefinedClrSchemeId::dk2; nId != 
PredefinedClrSchemeId::Count; nId++)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-05 Thread Takeshi Abe
 include/svtools/headbar.hxx|6 -
 svtools/source/control/headbar.cxx |  121 +++--
 2 files changed, 52 insertions(+), 75 deletions(-)

New commits:
commit d25465aed6cc15cf51529d92bdf3475d2b6d551f
Author: Takeshi Abe 
Date:   Fri Jan 5 19:46:22 2018 +0900

svtools: Simplify HeaderBar with std::unique_ptr

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

diff --git a/include/svtools/headbar.hxx b/include/svtools/headbar.hxx
index 077718815656..a575bd7c3fb5 100644
--- a/include/svtools/headbar.hxx
+++ b/include/svtools/headbar.hxx
@@ -24,6 +24,7 @@
 #include 
 #include 
 #include 
+#include 
 
 /*
 
@@ -173,8 +174,6 @@ HeaderBarItemBits::CLICKABLE, but 
HeaderBarItemBits::FIXEDPOS.
 class Accelerator;
 class ImplHeadItem;
 
-typedef ::std::vector< ImplHeadItem* > ImplHeadItemList;
-
 #define WB_BOTTOMBORDER ((WinBits)0x0400)
 #define WB_BUTTONSTYLE  ((WinBits)0x0800)
 #define WB_STDHEADERBAR (WB_BUTTONSTYLE | WB_BOTTOMBORDER)
@@ -216,7 +215,7 @@ class VCLXHeaderBar;
 class SVT_DLLPUBLIC HeaderBar : public vcl::Window
 {
 private:
-ImplHeadItemList*   mpItemList;
+std::vector mvItemList;
 longmnBorderOff1;
 longmnBorderOff2;
 longmnOffset;
@@ -266,7 +265,6 @@ private:
 public:
 HeaderBar( vcl::Window* pParent, WinBits nWinBits );
 virtual ~HeaderBar() override;
-virtual void dispose() override;
 
 virtual voidMouseButtonDown( const MouseEvent& rMEvt ) override;
 virtual voidMouseMove( const MouseEvent& rMEvt ) override;
diff --git a/svtools/source/control/headbar.cxx 
b/svtools/source/control/headbar.cxx
index bd66dbc52c02..42c0f9cd092c 100644
--- a/svtools/source/control/headbar.cxx
+++ b/svtools/source/control/headbar.cxx
@@ -56,7 +56,6 @@ public:
 
 void HeaderBar::ImplInit( WinBits nWinStyle )
 {
-mpItemList  = new ImplHeadItemList;
 mnBorderOff1= 0;
 mnBorderOff2= 0;
 mnOffset= 0;
@@ -103,22 +102,7 @@ HeaderBar::HeaderBar( vcl::Window* pParent, WinBits 
nWinStyle ) :
 SetSizePixel( CalcWindowSizePixel() );
 }
 
-HeaderBar::~HeaderBar()
-{
-disposeOnce();
-}
-
-void HeaderBar::dispose()
-{
-if (mpItemList)
-{
-for (ImplHeadItem* i : *mpItemList)
-delete i;
-delete mpItemList;
-mpItemList = nullptr;
-}
-Window::dispose();
-}
+HeaderBar::~HeaderBar() = default;
 
 void HeaderBar::ApplySettings(vcl::RenderContext& rRenderContext)
 {
@@ -153,14 +137,14 @@ long HeaderBar::ImplGetItemPos( sal_uInt16 nPos ) const
 {
 long nX = -mnOffset;
 for ( size_t i = 0; i < nPos; i++ )
-nX += (*mpItemList)[ i ]->mnSize;
+nX += mvItemList[ i ]->mnSize;
 return nX;
 }
 
 tools::Rectangle HeaderBar::ImplGetItemRect( sal_uInt16 nPos ) const
 {
 tools::Rectangle aRect( ImplGetItemPos( nPos ), 0, 0, mnDY-1 );
-aRect.Right() = aRect.Left() + (*mpItemList)[ nPos ]->mnSize - 1;
+aRect.Right() = aRect.Left() + mvItemList[ nPos ]->mnSize - 1;
 // check for overflow on various systems
 if ( aRect.Right() > 16000 )
 aRect.Right() = 16000;
@@ -170,14 +154,13 @@ tools::Rectangle HeaderBar::ImplGetItemRect( sal_uInt16 
nPos ) const
 sal_uInt16 HeaderBar::ImplHitTest( const Point& rPos,
long& nMouseOff, sal_uInt16& nPos ) const
 {
-ImplHeadItem*   pItem;
-size_t  nCount = (sal_uInt16)mpItemList->size();
+size_t  nCount = (sal_uInt16)mvItemList.size();
 boolbLastFixed = true;
 longnX = -mnOffset;
 
 for ( size_t i = 0; i < nCount; i++ )
 {
-pItem = (*mpItemList)[ i ];
+auto& pItem = mvItemList[ i ];
 
 if ( rPos.X() < (nX+pItem->mnSize) )
 {
@@ -215,7 +198,7 @@ sal_uInt16 HeaderBar::ImplHitTest( const Point& rPos,
 
 if ( !bLastFixed )
 {
-pItem = (*mpItemList)[ nCount-1 ];
+auto& pItem = mvItemList[ nCount-1 ];
 if ( (pItem->mnSize < 4)  && (rPos.X() < (nX+HEADERBAR_SPLITOFF)) )
 {
 nPos = nCount-1;
@@ -302,7 +285,7 @@ void HeaderBar::ImplDrawItem(vcl::RenderContext& 
rRenderContext, sal_uInt16 nPos
 return;
 }
 
-ImplHeadItem* pItem  = (*mpItemList)[nPos];
+auto& pItem  = mvItemList[nPos];
 HeaderBarItemBits nBits = pItem->mnBits;
 const StyleSettings& rStyleSettings = 
rRenderContext.GetSettings().GetStyleSettings();
 
@@ -617,7 +600,7 @@ void HeaderBar::ImplUpdate(sal_uInt16 nPos, bool bEnd)
 return;
 
 tools::Rectangle aRect;
-size_t nItemCount = mpItemList->size();
+size_t nItemCount = mvItemList.size();
 

[Libreoffice-commits] core.git: bin/find-unused-defines.py chart2/source include/editeng include/svl include/svx sd/inc

2018-01-05 Thread Noel Grandin
 bin/find-unused-defines.py  |8 ++
 chart2/source/inc/chartview/ChartSfxItemIds.hxx |1 
 include/editeng/editids.hrc |2 
 include/editeng/editrids.hrc|1 
 include/svl/svl.hrc |   70 
 include/svx/svxids.hrc  |3 -
 include/svx/svxitems.hrc|1 
 sd/inc/app.hrc  |2 
 8 files changed, 8 insertions(+), 80 deletions(-)

New commits:
commit 0c1ca08318bd370280e124ea05d9bf0d2535d3e1
Author: Noel Grandin 
Date:   Fri Jan 5 10:54:08 2018 +0200

remove unused defines

In particular, the STR_SVT_MIMETYPE defines are dead
since
commit 1b694dad643334ec1bab3f823dcd68f44a05ebe3
Date:   Thu Aug 24 22:14:27 2017 +0200
loplugin:unusedmethods

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

diff --git a/bin/find-unused-defines.py b/bin/find-unused-defines.py
index 2c08cc6cd342..ad96c0c24118 100755
--- a/bin/find-unused-defines.py
+++ b/bin/find-unused-defines.py
@@ -119,6 +119,12 @@ with a.stdout as txt:
 cnt = 0
 for line2 in txt2:
 line2 = line2.strip() # otherwise the comparisons below will 
not work
+# ignore if/undef magic, does not indicate an actual use (most 
of the time)
+if "ifdef" in line2: continue
+if "undef" in line2: continue
+# ignore commented out code
+if line2.startswith("//"): continue
+if line2.startswith("/*"): continue
 # check if we found one in actual code
 if idName.startswith("SID_"):
 if not ".hrc:" in line2 and not ".src:" in line2 and not 
".sdi:" in line2: found_reason_to_exclude = True
@@ -143,8 +149,6 @@ with a.stdout as txt:
 if "sw/source/uibase/inc/ribbar.hrc:" in line2 and 
"STR_IMGBTN_" in idName: found_reason_to_exclude = True
 if "sw/source/core/undo/undo.hrc:" in line2: 
found_reason_to_exclude = True
 if "sw/inc/poolfmt.hrc:" in line2: found_reason_to_exclude = 
True
-# not sure about these, looks suspicious
-if "sd/source/ui/app/strings.src:" in line2 and 
idName.endswith("_TOOLBOX"): found_reason_to_exclude = True
 # used via a macro that hides them from search
 if "dbaccess/" in line2 and idName.startswith("PROPERTY_ID_"): 
found_reason_to_exclude = True
 if "reportdesign/" in line2 and 
idName.startswith("HID_RPT_PROP_"): found_reason_to_exclude = True
diff --git a/chart2/source/inc/chartview/ChartSfxItemIds.hxx 
b/chart2/source/inc/chartview/ChartSfxItemIds.hxx
index df7a72890fe4..81ab1aa77ef6 100644
--- a/chart2/source/inc/chartview/ChartSfxItemIds.hxx
+++ b/chart2/source/inc/chartview/ChartSfxItemIds.hxx
@@ -191,7 +191,6 @@
 
 // values for SCHATTR_STYLE_SHAPE items
 #define CHART_SHAPE3D_IGNORE  -2 //internal! (GetChartShapeStyle()!)
-#define CHART_SHAPE3D_ANY -1 //undefined type (GetChartShapeStyle()!)
 #define CHART_SHAPE3D_SQUARE   0
 #define CHART_SHAPE3D_CYLINDER 1
 #define CHART_SHAPE3D_CONE 2
diff --git a/include/editeng/editids.hrc b/include/editeng/editids.hrc
index 5921eff49866..69a34cfc7804 100644
--- a/include/editeng/editids.hrc
+++ b/include/editeng/editids.hrc
@@ -51,7 +51,7 @@
 #define SID_ATTR_CHAR_FONTLIST  ( SID_SVX_START + 22 )
 #define SID_ATTR_BORDER_OUTER   ( SID_SVX_START + 24 )
 #define SID_ATTR_BORDER_SHADOW  ( SID_SVX_START + 25 )
-#define SID_ATTR_PARA   ( SID_SVX_START + 26 )
+  // free
 #define SID_ATTR_PARA_ADJUST( SID_SVX_START + 27 )
 #define SID_ATTR_PARA_ADJUST_LEFT   ( SID_SVX_START + 28 )
 #define SID_ATTR_PARA_ADJUST_RIGHT  ( SID_SVX_START + 29 )
diff --git a/include/editeng/editrids.hrc b/include/editeng/editrids.hrc
index 096d119aa002..5cbb2d24d46b 100644
--- a/include/editeng/editrids.hrc
+++ b/include/editeng/editrids.hrc
@@ -39,7 +39,6 @@
 #define RID_SVXITEMS_SHADOW_BOTTOMRIGHT 
NC_("RID_SVXITEMS_SHADOW_BOTTOMRIGHT", "Shadow bottom right")
 
 // enum ColorName ---
-#define RID_SVXITEMS_COLOR  NC_("RID_SVXITEMS_COLOR", 
"Color ")
 #define RID_SVXITEMS_COLOR_BLACK
NC_("RID_SVXITEMS_COLOR_BLACK", "Black")
 #define RID_SVXITEMS_COLOR_BLUE NC_("RID_SVXITEMS_COLOR_BLUE", 
"Blue")
 #define RID_SVXITEMS_COLOR_GREEN
NC_("RID_SVXITEMS_COLOR_GREEN", "Green")
diff --git 

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

2018-01-05 Thread Noel Grandin
 vcl/source/gdi/gdimtf.cxx |   52 +-
 1 file changed, 20 insertions(+), 32 deletions(-)

New commits:
commit 30b18e9c1ce5578ce22cb75e38f489eb25c4b7c7
Author: Noel Grandin 
Date:   Fri Jan 5 11:32:13 2018 +0200

use std::unique_ptr in GDIMetaFile

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

diff --git a/vcl/source/gdi/gdimtf.cxx b/vcl/source/gdi/gdimtf.cxx
index 05135718af64..f4e5a8c187fb 100644
--- a/vcl/source/gdi/gdimtf.cxx
+++ b/vcl/source/gdi/gdimtf.cxx
@@ -58,9 +58,9 @@ using namespace com::sun::star;
 
 struct ImplColAdjustParam
 {
-sal_uInt8*  pMapR;
-sal_uInt8*  pMapG;
-sal_uInt8*  pMapB;
+std::unique_ptr  pMapR;
+std::unique_ptr  pMapG;
+std::unique_ptr  pMapB;
 };
 
 struct ImplBmpAdjustParam
@@ -96,14 +96,14 @@ struct ImplBmpMonoParam
 
 struct ImplColReplaceParam
 {
-sal_uLong*  pMinR;
-sal_uLong*  pMaxR;
-sal_uLong*  pMinG;
-sal_uLong*  pMaxG;
-sal_uLong*  pMinB;
-sal_uLong*  pMaxB;
-const Color*pDstCols;
-sal_uLong   nCount;
+std::unique_ptr pMinR;
+std::unique_ptr pMaxR;
+std::unique_ptr pMinG;
+std::unique_ptr pMaxG;
+std::unique_ptr pMinB;
+std::unique_ptr pMaxB;
+const Color *  pDstCols;
+sal_uLong  nCount;
 };
 
 struct ImplBmpReplaceParam
@@ -2103,9 +2103,9 @@ void GDIMetaFile::Adjust( short nLuminancePercent, short 
nContrastPercent,
 ImplColAdjustParam  aColParam;
 ImplBmpAdjustParam  aBmpParam;
 
-aColParam.pMapR = new sal_uInt8[ 256 ];
-aColParam.pMapG = new sal_uInt8[ 256 ];
-aColParam.pMapB = new sal_uInt8[ 256 ];
+aColParam.pMapR.reset(new sal_uInt8[ 256 ]);
+aColParam.pMapG.reset(new sal_uInt8[ 256 ]);
+aColParam.pMapB.reset(new sal_uInt8[ 256 ]);
 
 // calculate slope
 if( nContrastPercent >= 0 )
@@ -2168,11 +2168,6 @@ void GDIMetaFile::Adjust( short nLuminancePercent, short 
nContrastPercent,
 
 // do color adjustment
 ImplExchangeColors( ImplColAdjustFnc, , ImplBmpAdjustFnc, 
 );
-
-delete[] aColParam.pMapR;
-delete[] aColParam.pMapG;
-delete[] aColParam.pMapB;
-
 }
 
 void GDIMetaFile::Convert( MtfConversion eConversion )
@@ -2191,12 +2186,12 @@ void GDIMetaFile::ReplaceColors( const Color* 
pSearchColors, const Color* pRepla
 ImplColReplaceParam aColParam;
 ImplBmpReplaceParam aBmpParam;
 
-aColParam.pMinR = new sal_uLong[ nColorCount ];
-aColParam.pMaxR = new sal_uLong[ nColorCount ];
-aColParam.pMinG = new sal_uLong[ nColorCount ];
-aColParam.pMaxG = new sal_uLong[ nColorCount ];
-aColParam.pMinB = new sal_uLong[ nColorCount ];
-aColParam.pMaxB = new sal_uLong[ nColorCount ];
+aColParam.pMinR.reset(new sal_uLong[ nColorCount ]);
+aColParam.pMaxR.reset(new sal_uLong[ nColorCount ]);
+aColParam.pMinG.reset(new sal_uLong[ nColorCount ]);
+aColParam.pMaxG.reset(new sal_uLong[ nColorCount ]);
+aColParam.pMinB.reset(new sal_uLong[ nColorCount ]);
+aColParam.pMaxB.reset(new sal_uLong[ nColorCount ]);
 
 for( sal_uLong i = 0; i < nColorCount; i++ )
 {
@@ -2223,13 +2218,6 @@ void GDIMetaFile::ReplaceColors( const Color* 
pSearchColors, const Color* pRepla
 aBmpParam.nCount = nColorCount;
 
 ImplExchangeColors( ImplColReplaceFnc, , ImplBmpReplaceFnc, 
 );
-
-delete[] aColParam.pMinR;
-delete[] aColParam.pMaxR;
-delete[] aColParam.pMinG;
-delete[] aColParam.pMaxG;
-delete[] aColParam.pMinB;
-delete[] aColParam.pMaxB;
 };
 
 GDIMetaFile GDIMetaFile::GetMonochromeMtf( const Color& rColor ) const
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-05 Thread Noel Grandin
 vcl/source/gdi/gdimtf.cxx |8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

New commits:
commit df1c3938d2c54fbf72a0e58a9f178557fca48a3b
Author: Noel Grandin 
Date:   Fri Jan 5 11:17:49 2018 +0200

remove pCols from ImplBmpReplaceParam

it is always nullptr

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

diff --git a/vcl/source/gdi/gdimtf.cxx b/vcl/source/gdi/gdimtf.cxx
index 8f65412faba3..05135718af64 100644
--- a/vcl/source/gdi/gdimtf.cxx
+++ b/vcl/source/gdi/gdimtf.cxx
@@ -108,10 +108,9 @@ struct ImplColReplaceParam
 
 struct ImplBmpReplaceParam
 {
-const Color*pSrcCols;
-const Color*pDstCols;
+const Color*pSrcCols;
+const Color*pDstCols;
 sal_uLong   nCount;
-const sal_uLong*pTols;
 };
 
 GDIMetaFile::GDIMetaFile() :
@@ -1821,7 +1820,7 @@ BitmapEx GDIMetaFile::ImplBmpReplaceFnc( const BitmapEx& 
rBmpEx, const void* pBm
 const ImplBmpReplaceParam*  p = static_cast(pBmpParam);
 BitmapExaRet( rBmpEx );
 
-aRet.Replace( p->pSrcCols, p->pDstCols, p->nCount, p->pTols );
+aRet.Replace( p->pSrcCols, p->pDstCols, p->nCount, nullptr );
 
 return aRet;
 }
@@ -,7 +2221,6 @@ void GDIMetaFile::ReplaceColors( const Color* 
pSearchColors, const Color* pRepla
 aBmpParam.pSrcCols = pSearchColors;
 aBmpParam.pDstCols = pReplaceColors;
 aBmpParam.nCount = nColorCount;
-aBmpParam.pTols = nullptr;
 
 ImplExchangeColors( ImplColReplaceFnc, , ImplBmpReplaceFnc, 
 );
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105109] Search and Replace does not find empty paragraphs in textfile with CRLF line endings

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105109

--- Comment #4 from Varga Péter  ---
As asked for in Comment 3, re-checked, repeating stetps in original report.

Bug present in:

Latest release running on Ubuntu 17.04:
Version: 5.4.4.2
Build ID: 2524958677847fb3bb44820e40380acbe820f960
CPU threads: 1; OS: Linux 4.10; UI render: default; VCL: gtk2; 
Locale: en-US (C); Calc: group

Version: 5.4.4.2
Build ID: 2524958677847fb3bb44820e40380acbe820f960
CPU threads: 1; OS: Linux 4.10; UI render: default; VCL: gtk2; 
Locale: hu-HU (hu_HU.UTF-8); Calc: group


Release coming with Ubuntu 17.04:
Verzió: 5.3.1.2
Build az.: 1:5.3.1-0ubuntu2
CPU szálak: 1; Rendszer verziója: Linux 4.10; Felületmegjelenítés:
alapértelmezett; VCL: gtk3; Elrendezésmotor:új; 
Területi beállítások: hu-HU (hu_HU.UTF-8); Calc: group

Release coming with Ubuntu 16.04:
Verzió: 5.1.6.2
Build az.: 1:5.1.6~rc2-0ubuntu1~xenial2
CPU szálak: 4; Rendszer verziója: Linux 4.4; Felületmegjelenítés:
alapértelmezett; 
Területi beállítások: hu-HU (hu_HU.UTF-8); Calc: group

-- 
You are receiving this mail because:
You 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 114174] FILESAVE XLSX Many custom chart legend properties are not preserved when the spreadsheet is saved as XLSX

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114174

Bartosz  changed:

   What|Removed |Added

 CC||gan...@poczta.onet.pl

--- Comment #6 from Bartosz  ---
Created attachment 138912
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138912=edit
Example .xlsx file created by Office 2013, with legend with gradient

-- 
You are receiving this mail because:
You 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 114174] FILESAVE XLSX Many custom chart legend properties are not preserved when the spreadsheet is saved as XLSX

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114174

Bartosz  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |gan...@poczta.onet.pl
   |desktop.org |

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


[Libreoffice-bugs] [Bug 90798] [SVG] Exporting image produces incorrect results ( image is rotated and not filled correctly)

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90798

--- 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 65259] CONFIGURATION: paragraph style sheets in in wrong language when using wizard

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65259

--- Comment #18 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 94765] FILEOPEN: SVG:

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94765

--- 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 105108] Object area frame isn' t highlighted when clicking text contained within

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105108

--- 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 105111] Closing the formatting toolbar using Right Click, Close toolbar isn't permanent

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105111

--- 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 104994] CRASH - Shared Read Only File System causes chart inserts to fail and crashes running soffice process

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104994

--- Comment #7 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 78505] FILESAVE: First bullet of multi bullet textbox shown from the very start in powerpoint when saved as ppt

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78505

--- 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 105083] The numbered/bulleted list toggle button isn' t highlighted when a numbered/bullet list is active

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105083

--- 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 105109] Search and Replace does not find empty paragraphs in textfile with CRLF line endings

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105109

--- 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 114660] COUNTIFS FUNCTION requires a reference to the inclusion of regular expressions in formulas

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114660

--- Comment #5 from MM  ---
(In reply to tagezi from comment #3)
> (In reply to MM from comment #1)
> > Unconfirmed on windows 7 x64 with Version: 6.0.0.1
> > Build ID: d2bec56d7865f05a1003dc88449f2b0fdd85309a
> > CPU threads: 3; OS: Windows 6.1; UI render: default; 
> > 
> > I get the normal outcome instead of err507.
> > Only with =COUNTIFS(A2:A6;E2&".*";B2:B6;"<"(B2:B6)) I get 3 as outcome
> > instead of 1.
> 
> You forgot to enter a pen in the E2 cell.
> And it seems, the behavior of regex has been changed.

Thanks for pointing that out, now it reads 0 instead of 1. Still no err 507
though.

-- 
You are receiving this mail because:
You 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 102730] EDITING: Image in slide shifts when selected (see comment 6)

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102730

--- Comment #10 from David F Smith  ---
This bug is still present.  Symptoms are exactly the same as in my comment #6.

Version: 5.3.7.2 (x64)
Build ID: 6b8ed514a9f8b44d37a1b96673cbbdd077e24059
CPU Threads: 4; OS Version: Windows 6.19; UI Render: default; Layout Engine:
new; 
Locale: en-US (en_US); Calc: group

-- 
You are receiving this mail because:
You 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 91250] FILEOPEN: Decimal Place Formatting issue with imported OOXML charts

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91250

--- Comment #6 from Luke  ---
Still repro in Version: 6.1.0.0.alpha0+
Build ID: f1d1854ffe2c1bc456855573b3ed4ad9852f4571

attachment 85112 is still wrong using 2 decimal places instead of [1,4] (
general number) that Word uses.

This cannot be fixed manually as the control are still broke Format
Axis->Numbers->Decimal places : 3 has no impact on chart.

attachment 66947 is also still 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 95323] FILESAVE: ODF - Chart (with data table) saved as object when saved from .docx

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95323

Luke  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression

-- 
You are receiving this mail because:
You 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 114858] New: Default keyboard mapping of Cmd+~ not to Mac usability std

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114858

Bug ID: 114858
   Summary: Default keyboard mapping of Cmd+~ not to Mac usability
std
   Product: LibreOffice
   Version: 6.0.0.1 rc
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bun...@gmail.com

Description:
In LO 6.0 nightly the default keyboard shortcut mapping to change to another
open document has been changed. In LO 5.x it follows Mac usability stds. ie.
CMD+~ (command+tilde) changes between open documents.  This is a standard for
all Mac applications.  In LO 6.0 the default mapping has changed and now CMD+~
switches between showing formulas or calculated cells.

The Mac std. is CMD+Tab to switch between open applications and CMD+~ to switch
between open documents for an application.

Steps to Reproduce:
1.Open LO 6.0 nightly
2.Open two documents (one being a spreadsheet)
3.From the spreadsheet attempt to switch to the second open document using
CMD+~

Actual Results:  
CMD+~ changes the Calc cells to show formulas instead of switching between open
documents

Expected Results:
CMD+~ switch between open documents




Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:
LO 5.4.4 does this correctly.


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:57.0)
Gecko/20100101 Firefox/57.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-commits] core.git: helpcontent2

2018-01-05 Thread Andrea Gelmini
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 16cd875f03f65daeb399551a12dc9e54945880d1
Author: Andrea Gelmini 
Date:   Wed Jan 3 10:10:19 2018 +0100

Updated core
Project: help  189c97fd18cdcb99ad4b4d77a8ae97f8ce41f3b9

Fix typo

Change-Id: I7a9fab7c50139bcd5f5b5999b4e61e89f2e8e646
Reviewed-on: https://gerrit.libreoffice.org/47298
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 9e6681b78b95..189c97fd18cd 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 9e6681b78b9578eb739c3577218d6ce9141e7091
+Subproject commit 189c97fd18cdcb99ad4b4d77a8ae97f8ce41f3b9
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: help3xsl/README.txt help3xsl/xhp2html.sh source/HELP-IN-BROWSER-README.txt source/text

2018-01-05 Thread Andrea Gelmini
 help3xsl/README.txt|2 +-
 help3xsl/xhp2html.sh   |2 +-
 source/HELP-IN-BROWSER-README.txt  |2 +-
 source/text/scalc/01/04060119.xhp  |2 +-
 source/text/shared/01/0102.xhp |2 +-
 source/text/shared/01/0222.xhp |2 +-
 source/text/shared/01/06140100.xhp |2 +-
 source/text/shared/01/06140400.xhp |2 +-
 source/text/shared/explorer/database/dabawiz03auth.xhp |2 +-
 9 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit 9e6681b78b9578eb739c3577218d6ce9141e7091
Author: Andrea Gelmini 
Date:   Tue Jan 2 22:28:49 2018 +0100

Fix typos

Change-Id: I2a98c7a079c69ac32b382d6c320dde456be98cf1
Reviewed-on: https://gerrit.libreoffice.org/47282
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git a/help3xsl/README.txt b/help3xsl/README.txt
index c26d9152f..76112f049 100644
--- a/help3xsl/README.txt
+++ b/help3xsl/README.txt
@@ -45,7 +45,7 @@ This javascript file:
 New ‘Object’ tag
 -
 
-The filter online_transform.xsl now support the  tag defined for XHP 
files to allow a generic object in the browser. The  tag now maps to 
the folowing HTML5 tags:
+The filter online_transform.xsl now support the  tag defined for XHP 
files to allow a generic object in the browser. The  tag now maps to 
the following HTML5 tags:
 Maps to HTML5  tag:
 
 
diff --git a/help3xsl/xhp2html.sh b/help3xsl/xhp2html.sh
index 6c7145e66..28631cf51 100755
--- a/help3xsl/xhp2html.sh
+++ b/help3xsl/xhp2html.sh
@@ -7,7 +7,7 @@
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 #
 # This script builds translated XHP file with helpex executable
-# and thes transform it to html pages
+# and this transform it to html pages
 # 1) generates redirection from LibreOffice Help URL to right html page
 #in index.html with bookmark2file.js
 # 2) generates bookmark_.js for index search
diff --git a/source/HELP-IN-BROWSER-README.txt 
b/source/HELP-IN-BROWSER-README.txt
index 680f433c7..462941b7e 100644
--- a/source/HELP-IN-BROWSER-README.txt
+++ b/source/HELP-IN-BROWSER-README.txt
@@ -45,7 +45,7 @@ This javascript file:
 New ‘Object’ tag
 -
 
-The filter online_transform.xsl now support the  tag defined for XHP 
files to allow a generic object in the browser. The  tag now maps to 
the folowing HTML5 tags:
+The filter online_transform.xsl now support the  tag defined for XHP 
files to allow a generic object in the browser. The  tag now maps to 
the following HTML5 tags:
 Maps to HTML5  tag:
 
 
diff --git a/source/text/scalc/01/04060119.xhp 
b/source/text/scalc/01/04060119.xhp
index 78b1ecc36..fca7a5071 100644
--- a/source/text/scalc/01/04060119.xhp
+++ b/source/text/scalc/01/04060119.xhp
@@ -338,7 +338,7 @@
 
 Value1;... are up to 30 values, which represent deposits or 
withdrawals.
 Example
-What is the 
net present value of periodic payments of 10, 20 and 30 currency units with a 
discount rate of 8.75%. At time zero the costs were payed as -40 currency 
units.
+What is the 
net present value of periodic payments of 10, 20 and 30 currency units with a 
discount rate of 8.75%. At time zero the costs were paid as -40 currency 
units.
 
 =NPV(8.75%;10;20;30) = 49.43 currency units. The net 
present value is the returned value minus the initial costs of 40 currency 
units, therefore 9.43 currency units.
 
diff --git a/source/text/shared/01/0102.xhp 
b/source/text/shared/01/0102.xhp
index c6f565204..e9577425f 100644
--- a/source/text/shared/01/0102.xhp
+++ b/source/text/shared/01/0102.xhp
@@ -150,7 +150,7 @@
 all 
template folders as defined in %PRODUCTNAME - Preferences
 Tools - 
Options - %PRODUCTNAME - Paths
   
-When you use File - Templates - Save as Template to save a template, 
the template will be stored in your user template folder. When you open a 
document that is based on such a template, the document will be checked for a 
changed template as decribed below. The template is associated with the 
document, it may be called a "sticky template".
+When you use File - Templates - Save as Template to save a template, 
the template will be stored in your user template folder. When you open a 
document that is based on such a template, the document will be checked for a 
changed template as described below. The template is associated with the 
document, it may be called a "sticky template".
 When you use File - Save As and select a template filter to save a 
template at any other folder that is not in the list, then the documents based 
on that template will not be checked.
 When you open 
a document that was created from a "sticky 

[Libreoffice-commits] core.git: helpcontent2

2018-01-05 Thread Andrea Gelmini
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2362b69b61988a54bb08a71135c1c094097a29bc
Author: Andrea Gelmini 
Date:   Tue Jan 2 22:28:49 2018 +0100

Updated core
Project: help  9e6681b78b9578eb739c3577218d6ce9141e7091

Fix typos

Change-Id: I2a98c7a079c69ac32b382d6c320dde456be98cf1
Reviewed-on: https://gerrit.libreoffice.org/47282
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index e3dc182b9dda..9e6681b78b95 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit e3dc182b9dda0ba1a0e42dcea00e4d3b01e4b34f
+Subproject commit 9e6681b78b9578eb739c3577218d6ce9141e7091
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-05 Thread Andrea Gelmini
 source/text/shared/01/06140300.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 189c97fd18cdcb99ad4b4d77a8ae97f8ce41f3b9
Author: Andrea Gelmini 
Date:   Wed Jan 3 10:10:19 2018 +0100

Fix typo

Change-Id: I7a9fab7c50139bcd5f5b5999b4e61e89f2e8e646
Reviewed-on: https://gerrit.libreoffice.org/47298
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git a/source/text/shared/01/06140300.xhp 
b/source/text/shared/01/06140300.xhp
index d51313d7b..7540c08a0 100644
--- a/source/text/shared/01/06140300.xhp
+++ b/source/text/shared/01/06140300.xhp
@@ -40,7 +40,7 @@
 Location
 Select the location where the context menu is to be attached. 
If attached to a %PRODUCTNAME module, the context menu is available for all 
files opened in that module. If attached to the file, the context menu will be 
available only when that file is opened and active.
 Menu
-Select the Context Menu where the customization is to be 
applied. The current ser of functions is displayed in the box below.
+Select the Context Menu where the customization is to be 
applied. The current set of functions is displayed in the box below.
 Add
 Click on the Add button to add a new context menu.
 Remove
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-01-05 Thread Andrea Gelmini
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9046cf9c133d9e6afa99707d7e1b6b8c6f6d3bde
Author: Andrea Gelmini 
Date:   Tue Jan 2 21:50:28 2018 +0100

Updated core
Project: help  e3dc182b9dda0ba1a0e42dcea00e4d3b01e4b34f

Fix typos

Change-Id: I4ab0df8ed7f3d8ac95f28220c9b4f59e2a6a1eb2
Reviewed-on: https://gerrit.libreoffice.org/47281
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index f1126fd812d5..e3dc182b9dda 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit f1126fd812d5f812803f666f7fb4bcd5024c9772
+Subproject commit e3dc182b9dda0ba1a0e42dcea00e4d3b01e4b34f
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: help3xsl/convert2html.sh source/text wiki-to-help/HHC wiki-to-help/metabook.py

2018-01-05 Thread Andrea Gelmini
 help3xsl/convert2html.sh   |2 +-
 source/text/sbasic/shared/0315.xhp |2 +-
 source/text/sbasic/shared/03150001.xhp |2 +-
 source/text/scalc/01/data_form.xhp |2 +-
 source/text/shared/01/06140300.xhp |4 ++--
 wiki-to-help/HHC/install_hhc.sh|2 +-
 wiki-to-help/metabook.py   |2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit e3dc182b9dda0ba1a0e42dcea00e4d3b01e4b34f
Author: Andrea Gelmini 
Date:   Tue Jan 2 21:50:28 2018 +0100

Fix typos

Change-Id: I4ab0df8ed7f3d8ac95f28220c9b4f59e2a6a1eb2
Reviewed-on: https://gerrit.libreoffice.org/47281
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git a/help3xsl/convert2html.sh b/help3xsl/convert2html.sh
index f8a84c434..ec49e2562 100755
--- a/help3xsl/convert2html.sh
+++ b/help3xsl/convert2html.sh
@@ -16,7 +16,7 @@
 # a set of html pages.
 #
 # Conversion is done by listing the available languages in the tarball and
-# execting the XSLT transformations on each XHP and tree files.
+# executing the XSLT transformations on each XHP and tree files.
 #
 # Note: tarball, source and productversion must match.
 #
diff --git a/source/text/sbasic/shared/0315.xhp 
b/source/text/sbasic/shared/0315.xhp
index 3b6fa078a..8db94307e 100644
--- a/source/text/sbasic/shared/0315.xhp
+++ b/source/text/sbasic/shared/0315.xhp
@@ -44,7 +44,7 @@
 String
 
 DateExpression: The date expression to be 
formatted.
-NamedFormat: An optional 
vbDateTimeFormat enumeration specifying the format that is to be 
applied to the date and time exression. If omitted, the value 
vbGeneralDate is used.
+NamedFormat: An optional 
vbDateTimeFormat enumeration specifying the format that is to be 
applied to the date and time expression. If omitted, the value 
vbGeneralDate is used.
 Date and Time formats (vbDateTimeFormat 
enumeration)
 
 
diff --git a/source/text/sbasic/shared/03150001.xhp 
b/source/text/sbasic/shared/03150001.xhp
index f4e06dbe8..1006fe389 100644
--- a/source/text/sbasic/shared/03150001.xhp
+++ b/source/text/sbasic/shared/03150001.xhp
@@ -44,7 +44,7 @@
 
 String
 
-Weekday: Value from 1 to 7, Mon­day to Sun­day, 
whose Week Day Name need to be cal­cu­lated.
+Weekday: Value from 1 to 7, Mon­day to Sun­day, 
whose Week Day Name need to be calculated.
 Abbreviate: Optional. A Boolean value that 
indicates if the weekday name is to be abbreviated.
 FirstDayofWeek: Optional. Specifies the first day 
of the week.
 First day of Week:
diff --git a/source/text/scalc/01/data_form.xhp 
b/source/text/scalc/01/data_form.xhp
index a4581b3fc..4016daceb 100644
--- a/source/text/scalc/01/data_form.xhp
+++ b/source/text/scalc/01/data_form.xhp
@@ -27,7 +27,7 @@
 spreadsheet;form for inserting 
data
 
 
-Data Entry Forms for 
Spreasheets
+Data Entry Forms for 
Spreadsheets
 Data Entry Form is a tool to make table data 
entry easy in spreadsheets. With the Data Entry Form, you can enter, 
edit and delete records (or rows) of data and avoid horizontal scrolling when 
the table has many columns or when some columns are very wide.
 
 
diff --git a/source/text/shared/01/06140300.xhp 
b/source/text/shared/01/06140300.xhp
index 1c65c5bdd..d51313d7b 100644
--- a/source/text/shared/01/06140300.xhp
+++ b/source/text/shared/01/06140300.xhp
@@ -40,9 +40,9 @@
 Location
 Select the location where the context menu is to be attached. 
If attached to a %PRODUCTNAME module, the context menu is available for all 
files opened in that module. If attached to the file, the context menu will be 
available only when that file is opened and active.
 Menu
-Select the Context Menu where the customization is to be 
applied. The current ser of functions is dislayed in the box below.
+Select the Context Menu where the customization is to be 
applied. The current ser of functions is displayed in the box below.
 Add
-Click on the Add button to add a new conetxt menu.
+Click on the Add button to add a new context menu.
 Remove
 Click on the remove button to delete the context 
menu.
 You can only 
delete custom context menus and custom context menu entries.
diff --git a/wiki-to-help/HHC/install_hhc.sh b/wiki-to-help/HHC/install_hhc.sh
index 619e65aa6..eefbc2a92 100755
--- a/wiki-to-help/HHC/install_hhc.sh
+++ b/wiki-to-help/HHC/install_hhc.sh
@@ -9,7 +9,7 @@
 # Usage of HHC: wine c:\\htmlhelp\\hhc.exe c:\\test\\htmlhelp.hhp
 #
 # Changes:  Set installation directory to c:\htmlhelp
-#   Copy also itcc.dll, this is neccessary
+#   Copy also itcc.dll, this is necessary
 #   No execution of htmlhelp.exe installer needed
 #   Abortion of install if anything fails, e.g. the download of HHC.
 #
diff --git 

[Libreoffice-bugs] [Bug 112538] Cropped image created by MAC Impress cannot display correctly in the Windows Impress

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112538

tryag...@navit-project.org changed:

   What|Removed |Added

 CC||tryag...@navit-project.org

--- Comment #8 from tryag...@navit-project.org ---
I think the problem is not related to Operating system used.

It's most probably related to screen resolution of the system where the
document was created and the one where it's being viewed.

I hit a similar problem on a single computer running linux.

To reproduce the problem, run Impress inside Xephyr nested X server with -dpi
option value different to display resolution used at document creation time,
and see all cropped images being broken. Restart Xephyr with the same -dpi as
your desktop, and see the document is fine again.

Same problem seems to exist in openoffice (and is reported to be present in
staroffice too), see
https://forum.openoffice.org/en/forum/viewtopic.php?f=10=73858 .

Cropped images in my file have fo:clip attributes inside content.xml file.
These attributes define cropped area by offsets expressed in centimetres.

I guess, current display resolution at document creation time is used to
convert pixels of actual image to centimetres. Then, at document display time,
we probably have no information (or do not use it) about resolution used at
document creation time, using instead current display resolution. So we get
wrong part of image with a wrong scale.

I think storing cropped area size in pixel units would be a fix.

-- 
You are receiving this mail because:
You 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] help.git: help3xsl/help.js

2018-01-05 Thread Andrea Gelmini
 help3xsl/help.js |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f1126fd812d5f812803f666f7fb4bcd5024c9772
Author: Andrea Gelmini 
Date:   Fri Jan 5 19:01:51 2018 +0100

Fix typos

Change-Id: Ie3e0490e8ca41f9d4f20b834a3d5865c0fb18ad7
Reviewed-on: https://gerrit.libreoffice.org/47480
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git a/help3xsl/help.js b/help3xsl/help.js
index 13861024f..5ad90e765 100644
--- a/help3xsl/help.js
+++ b/help3xsl/help.js
@@ -7,7 +7,7 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
-// Used to set Apllication in caseinlie=APP
+// Used to set Application in caseinline=APP
 function setModule(module){
 if (module == null){module="WRITER"}
 var itemspan = document.getElementsByTagName("span");
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-01-05 Thread Andrea Gelmini
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1766c773ce45770b66d5bc297206a2205662f90c
Author: Andrea Gelmini 
Date:   Fri Jan 5 19:01:51 2018 +0100

Updated core
Project: help  f1126fd812d5f812803f666f7fb4bcd5024c9772

Fix typos

Change-Id: Ie3e0490e8ca41f9d4f20b834a3d5865c0fb18ad7
Reviewed-on: https://gerrit.libreoffice.org/47480
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 382ba1bc41a0..f1126fd812d5 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 382ba1bc41a04d2f7b444e4c4ca9460b66147717
+Subproject commit f1126fd812d5f812803f666f7fb4bcd5024c9772
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114854] FILEOPEN: DOCX: URL in comment imported as plain text

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114854

raal  changed:

   What|Removed |Added

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

--- Comment #1 from raal  ---
I can confirm with Version: 6.1.0.0.alpha0+
Build ID: 88f6ffeb9e0c0b942c2b0bc9d60af7bb7a6caaf8
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk3;

-- 
You are receiving this mail because:
You 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 114792] Colour gradient for Chart Wall in Calc reverts to B on confirmation.

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114792

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal  ---
I can not confirm with Version: 6.1.0.0.alpha0+
Build ID: 88f6ffeb9e0c0b942c2b0bc9d60af7bb7a6caaf8
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk3;

-- 
You are receiving this mail because:
You 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 114852] formula as OLE - not complely visible

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114852

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 114852] formula as OLE - not complely visible

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114852

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #3 from raal  ---
Created attachment 138911
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138911=edit
printscreen

no repro with Version: 6.1.0.0.alpha0+
Build ID: 88f6ffeb9e0c0b942c2b0bc9d60af7bb7a6caaf8
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk3; 

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

-- 
You are receiving this mail because:
You 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 114847] FILEOPEN DOCX: Table does not appear

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114847

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #6 from raal  ---
Created attachment 138910
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138910=edit
word2010

File is corrupted. What's your version of the Word? Please post a printscreen
how the file looks like.

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


[Libreoffice-bugs] [Bug 114847] FILEOPEN DOCX: Table does not appear

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114847

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 114857] EDITING Can't see cursor when background is dark/black

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114857

--- Comment #4 from bunkem  ---
This is also happening with the text cursor. ie. can't see the black text
cursor when the slide background is black.

-- 
You are receiving this mail because:
You 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 114857] EDITING Can't see cursor when background is dark/black

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114857

--- Comment #3 from bunkem  ---
Apologies for not putting this in the first post.

Presently testing LO nightly
Version: 6.0.0.1.0+
Build ID: 24b3fc49238b1890769fa45571a3043646e4e4b9
CPU threads: 8; OS: Mac OS X 10.11.6; UI render: default;

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


[Libreoffice-bugs] [Bug 114857] EDITING Can't see cursor when background is dark/black

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114857

--- Comment #2 from bunkem  ---
Created attachment 138909
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138909=edit
Libreoffice Impress cursor

-- 
You are receiving this mail because:
You 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 'aoo/trunk' - odk/setsdkenv_unix.sh.in odk/settings set_soenv.in solenv/doc solenv/gbuild solenv/inc ure/source

2018-01-05 Thread Don Lewis
 odk/setsdkenv_unix.sh.in  |   18 --
 odk/settings/settings.mk  |   12 ++--
 set_soenv.in  |8 +++-
 solenv/doc/gbuild/solenv/gbuild/gbuild.mk |1 -
 solenv/gbuild/gbuild.mk   |1 -
 solenv/gbuild/platform/freebsd.mk |5 -
 solenv/gbuild/platform/linux.mk   |5 -
 solenv/gbuild/platform/macosx.mk  |1 -
 solenv/gbuild/platform/os2.mk |5 -
 solenv/gbuild/platform/winmingw.mk|5 -
 solenv/inc/settings.mk|6 --
 ure/source/uretest/Makefile.pln   |9 +++--
 ure/source/uretest/README |4 
 13 files changed, 12 insertions(+), 68 deletions(-)

New commits:
commit 437a537883088da583bef724d744b9481c684228
Author: Don Lewis 
Date:   Fri Jan 5 20:47:25 2018 +

Nothing uses GXX_INCLUDE_PATH, so remove it.  The uretest/README

file mentions is being needed by the STLport included in the URE,
but that does not appear to be true any longer, and it is not
used by boost.

diff --git a/odk/setsdkenv_unix.sh.in b/odk/setsdkenv_unix.sh.in
index 6c011700fedf..5a7fa6382f64 100644
--- a/odk/setsdkenv_unix.sh.in
+++ b/odk/setsdkenv_unix.sh.in
@@ -159,12 +159,6 @@ case ${sdk_platform} in
 ;;
 
   darwin*)
-if [ -n "$OO_SDK_CPP_HOME" ]
-then
-   SDK_GXX_INCLUDE_PATH=`echo "#include " | 
${OO_SDK_CPP_HOME}/clang++ -E -xc++ - | sed -n 
'/.*1*"\(.*\)\/cstring".*/s//\1/p' | head -n 1`
-   export SDK_GXX_INCLUDE_PATH
-fi 
-
 directoryname=macosx
 comid=s5abi
 soext=dylib
@@ -176,12 +170,6 @@ case ${sdk_platform} in
 ;;
 
   linux-gnu)
-if [ -n "$OO_SDK_CPP_HOME" ]
-then
-   SDK_GXX_INCLUDE_PATH=`echo "#include " | 
${OO_SDK_CPP_HOME}/g++ -E -xc++ - | sed -n '/.*1*"\(.*\)\/cstring".*/s//\1/p' | 
head -n 1`
-   export SDK_GXX_INCLUDE_PATH
-fi 
-
 directoryname=linux
 comid=gcc3
 soext=so
@@ -193,12 +181,6 @@ case ${sdk_platform} in
 ;;
 
   freebsd*)
-if [ -n "$OO_SDK_CPP_HOME" ]
-then
-   SDK_GXX_INCLUDE_PATH=`echo "#include " | 
${OO_SDK_CPP_HOME}/g++ -E -xc++ - | sed -n '/.*1*"\(.*\)\/cstring".*/s//\1/p' | 
head -n 1`
-   export SDK_GXX_INCLUDE_PATH
-fi 
-
 directoryname=freebsd
 comid=gcc3
 soext=so
diff --git a/odk/settings/settings.mk b/odk/settings/settings.mk
index 93b116306991..0976ec27b988 100644
--- a/odk/settings/settings.mk
+++ b/odk/settings/settings.mk
@@ -345,8 +345,8 @@ endif
 SDK_JAVA_INCLUDES = -I"$(OO_SDK_JAVA_HOME)/include" 
-I"$(OO_SDK_JAVA_HOME)/include/linux"
 CC_INCLUDES=-I. -I$(OUT)/inc -I$(OUT)/inc/examples -I$(PRJ)/include
 STL_INCLUDES=-I"$(OO_SDK_HOME)/include/stl"
-CC_DEFINES_JNI=-DUNX -DGCC -DLINUX -DCPPU_ENV=$(CPPU_ENV) 
-DGXX_INCLUDE_PATH=$(SDK_GXX_INCLUDE_PATH)
-CC_DEFINES=-DUNX -DGCC -DLINUX -DCPPU_ENV=$(CPPU_ENV) 
-DGXX_INCLUDE_PATH=$(SDK_GXX_INCLUDE_PATH) -DHAVE_GCC_VISIBILITY_FEATURE
+CC_DEFINES_JNI=-DUNX -DGCC -DLINUX -DCPPU_ENV=$(CPPU_ENV)
+CC_DEFINES=-DUNX -DGCC -DLINUX -DCPPU_ENV=$(CPPU_ENV) 
-DHAVE_GCC_VISIBILITY_FEATURE
 
 # define for used compiler necessary for UNO
 #-DCPPU_ENV=gcc2 -- gcc 2.91/2.95
@@ -464,8 +464,8 @@ endif
 SDK_JAVA_INCLUDES = 
-I/System/Library/Frameworks/JavaVM.framework/Versions/Current/Headers 
-I/System/Library/Frameworks/JavaVM.framework/Headers
 CC_INCLUDES=-I. -I$(OUT)/inc -I$(OUT)/inc/examples -I$(PRJ)/include
 STL_INCLUDES=-I"$(OO_SDK_HOME)/include/stl"
-CC_DEFINES_JNI=-DUNX -DGCC -DMACOSX -DCPPU_ENV=$(CPPU_ENV) 
-DGXX_INCLUDE_PATH=$(SDK_GXX_INCLUDE_PATH)
-CC_DEFINES=-DUNX -DGCC -DMACOSX -DCPPU_ENV=$(CPPU_ENV) 
-DGXX_INCLUDE_PATH=$(SDK_GXX_INCLUDE_PATH) -DHAVE_GCC_VISIBILITY_FEATURE
+CC_DEFINES_JNI=-DUNX -DGCC -DMACOSX -DCPPU_ENV=$(CPPU_ENV)
+CC_DEFINES=-DUNX -DGCC -DMACOSX -DCPPU_ENV=$(CPPU_ENV) 
-DHAVE_GCC_VISIBILITY_FEATURE
 
 CC_OUTPUT_SWITCH=-o
 
@@ -585,8 +585,8 @@ endif
 SDK_JAVA_INCLUDES = -I"$(OO_SDK_JAVA_HOME)/include" 
-I"$(OO_SDK_JAVA_HOME)/include/freebsd"
 CC_INCLUDES=-I. -I$(OUT)/inc -I$(OUT)/inc/examples -I$(PRJ)/include
 STL_INCLUDES=-I"$(OO_SDK_HOME)/include/stl"
-CC_DEFINES_JNI=-DUNX -DGCC -DFREEBSD -DCPPU_ENV=$(CPPU_ENV) 
-DGXX_INCLUDE_PATH=$(SDK_GXX_INCLUDE_PATH)
-CC_DEFINES=-DUNX -DGCC -DFREEBSD -DCPPU_ENV=$(CPPU_ENV) 
-DGXX_INCLUDE_PATH=$(SDK_GXX_INCLUDE_PATH) -DHAVE_GCC_VISIBILITY_FEATURE
+CC_DEFINES_JNI=-DUNX -DGCC -DFREEBSD -DCPPU_ENV=$(CPPU_ENV)
+CC_DEFINES=-DUNX -DGCC -DFREEBSD -DCPPU_ENV=$(CPPU_ENV) 
-DHAVE_GCC_VISIBILITY_FEATURE
 
 CC_OUTPUT_SWITCH=-o
 
diff --git a/set_soenv.in b/set_soenv.in
index 6ec61c6be3c2..8912b8b5719e 100644
--- a/set_soenv.in
+++ b/set_soenv.in
@@ -57,8 +57,8 @@ my ( $outfile, $outfile_sh, $outfile_bat, $bootfile, 
$newline, $comment,
  $compiler, $unsetenv, $setenv, $unset, $set, $ds, $ps,
  $wps, $cur_dir, $par_dir, $I, $L, $D, $buildenv, $answer, $tmp, $MINGW,
  $USE_MINGW, $platform,
- 

[Libreoffice-bugs] [Bug 114857] EDITING Can't see cursor when background is dark/black

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114857

--- Comment #1 from bunkem  ---
Created attachment 138908
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138908=edit
Powerpoint cursor

-- 
You are receiving this mail because:
You 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: lotuswordpro/source

2018-01-05 Thread Caolán McNamara
 lotuswordpro/source/filter/lwppagelayout.cxx |9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

New commits:
commit 9fff5632a91c8d396116565162cf0a5b4fa9875f
Author: Caolán McNamara 
Date:   Fri Jan 5 20:54:59 2018 +

ofz#4879 Divide-by-zero

Change-Id: I0df4bc2c8d9c5d5f95141b585826fc773a1fde3e
Reviewed-on: https://gerrit.libreoffice.org/47484
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/lotuswordpro/source/filter/lwppagelayout.cxx 
b/lotuswordpro/source/filter/lwppagelayout.cxx
index fc5d77ab90de..193bdbbedb69 100644
--- a/lotuswordpro/source/filter/lwppagelayout.cxx
+++ b/lotuswordpro/source/filter/lwppagelayout.cxx
@@ -63,6 +63,7 @@
 #include "lwppagehint.hxx"
 #include "lwpdivinfo.hxx"
 #include "lwpstory.hxx"
+#include 
 #include 
 #include 
 #include 
@@ -273,8 +274,12 @@ void LwpPageLayout::ParseFootNoteSeparator(XFPageMaster * 
pm1)
 }
 if(rFootnoteSep.HasCustomLength())
 {
-nLengthPercent =  
static_cast(100*LwpTools::ConvertFromUnitsToMetric(rFootnoteSep.GetLength())/GetMarginWidth());
-if(nLengthPercent > 100)
+const double fMarginWidth = GetMarginWidth();
+if (fMarginWidth == 0.0)
+throw o3tl::divide_by_zero();
+
+nLengthPercent =  
static_cast(100*LwpTools::ConvertFromUnitsToMetric(rFootnoteSep.GetLength())
 / fMarginWidth);
+if (nLengthPercent > 100)
 nLengthPercent = 100;
 }
 double fAbove = 
LwpTools::ConvertFromUnitsToMetric(rFootnoteSep.GetAbove());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114857] New: EDITING Can't see cursor when background is dark/black

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114857

Bug ID: 114857
   Summary: EDITING Can't see cursor when background is dark/black
   Product: LibreOffice
   Version: 6.0.0.1 rc
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bun...@gmail.com

Description:
If you have a black or dark background on a slide, the cursors don't change
contrast to allow seeing the cursor.  ie. black cross-hair on black background
can't be seen.

Pointer cursor is black but has white outline so can be seen.

In Powerpoint, the cross-hair changes to white when on black background so it
stays visible.

Steps to Reproduce:
1.Set up a slide with a black background
2.Select any of the draw shape/line/arrow from the toolbar.
3.Move cursor over the black slide and you can't see it.

Actual Results:  
You can't see the cross-hair cursor when you have a black background.

Expected Results:
Cursor in general should have color or highlight so you can see it regardless
of the slide background.  It needs to be able to switch.


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:57.0)
Gecko/20100101 Firefox/57.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 107360] No Access connection for 64 bit LO (Windows) - see Comment 7

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107360

--- Comment #11 from Chris Grove  ---
It has been suggested that the answer is to back-grade LO to a 32 bit version. 
Fine, but my experience over the last few years is that, as soon as an upgrade
is available, Base 'stops responding', so this seems unlikely to work.  I wish
I knew why this happened as it seems illogical, but that has been what has
happened to me.
The other suggestion is that to download 'Microsoft Access Database Engine 2016
Redistributable' will make access possible.  I have been unable to find any way
of doing this.  Advice?
Chris

-- 
You are receiving this mail because:
You 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: 4 commits - docker/l10n-docker-nightly.sh

2018-01-05 Thread Andras Timar
 docker/l10n-docker-nightly.sh |   63 +-
 1 file changed, 44 insertions(+), 19 deletions(-)

New commits:
commit 4dd0ed6792aad78257c7f5fef0487e98a6d13458
Author: Andras Timar 
Date:   Fri Jan 5 17:25:42 2018 +0100

Online docker: always overwrite autogen.input

Change-Id: I049c22ee698fc5393486623ae71b7b41a4bf8904

diff --git a/docker/l10n-docker-nightly.sh b/docker/l10n-docker-nightly.sh
index 7cb97cc3..c95c9b3e 100755
--- a/docker/l10n-docker-nightly.sh
+++ b/docker/l10n-docker-nightly.sh
@@ -38,7 +38,22 @@ mkdir -p "$INSTDIR"
 # libreoffice repo
 if test ! -d libreoffice ; then
 git clone git://anongit.freedesktop.org/libreoffice/core libreoffice || 
exit 1
-cat > libreoffice/autogen.input << EOF
+fi
+
+( cd libreoffice && git checkout master && git pull -r ) || exit 1
+
+# online repo
+if test ! -d online ; then
+git clone git://anongit.freedesktop.org/libreoffice/online online || exit 1
+( cd online && ./autogen.sh ) || exit 1
+fi
+
+( cd online && git checkout -f master && git pull -r ) || exit 1
+
+# LibreOffice #
+
+# build LibreOffice
+cat > libreoffice/autogen.input << EOF
 --disable-cups
 --disable-dbus
 --disable-dconf
@@ -92,22 +107,7 @@ if test ! -d libreoffice ; then
 --without-system-postgresql
 EOF
 
-( cd libreoffice && ./autogen.sh ) || exit 1
-fi
-
-( cd libreoffice && git checkout master && git pull -r ) || exit 1
-
-# online repo
-if test ! -d online ; then
-git clone git://anongit.freedesktop.org/libreoffice/online online || exit 1
-( cd online && ./autogen.sh ) || exit 1
-fi
-
-( cd online && git checkout -f master && git pull -r ) || exit 1
-
-# LibreOffice #
-
-# build LibreOffice
+( cd libreoffice && ./autogen.sh ) || exit 1
 ( cd libreoffice && make ) || exit 1
 
 # copy stuff
commit 0e9aecaba72783102f2a9b01dcb7caeb49409f6c
Author: Andras Timar 
Date:   Fri Jan 5 17:24:33 2018 +0100

Online docker: add dictionaries

Change-Id: I31a121d5d532ff68acdb053a491e6fec68772f8d

diff --git a/docker/l10n-docker-nightly.sh b/docker/l10n-docker-nightly.sh
index d47b2fb8..7cb97cc3 100755
--- a/docker/l10n-docker-nightly.sh
+++ b/docker/l10n-docker-nightly.sh
@@ -80,7 +80,7 @@ if test ! -d libreoffice ; then
 --without-help
 --without-java
 --without-junit
---without-myspell-dicts
+--with-myspell-dicts
 --without-package-format
 --without-system-cairo
 --without-system-jars
@@ -113,6 +113,30 @@ fi
 # copy stuff
 mkdir -p "$INSTDIR"/opt/
 cp -a libreoffice/instdir "$INSTDIR"/opt/libreoffice
+mkdir -p "$INSTDIR"/usr/share/hunspell
+mkdir -p "$INSTDIR"/usr/share/hyphen
+mkdir -p "$INSTDIR"/opt/lool/systemplate/usr/share/hyphen
+for i in `find libreoffice/instdir/share/extensions/ -name hyph*.dic`;do cp -a 
$i "$INSTDIR"/opt/lool/systemplate/usr/share/hyphen;done
+for i in `find libreoffice/instdir/share/extensions/ -name hyph*.dic`;do cp -a 
$i "$INSTDIR"/usr/share/hyphen;done
+cp -a libreoffice/instdir/share/extensions/dict-en/en_US.* 
"$INSTDIR"/usr/share/hunspell
+cp -a libreoffice/instdir/share/extensions/dict-en/en_GB.* 
"$INSTDIR"/usr/share/hunspell
+cp -a libreoffice/instdir/share/extensions/dict-it/it_IT.* 
"$INSTDIR"/usr/share/hunspell
+cp -a libreoffice/instdir/share/extensions/dict-nl/nl_NL.* 
"$INSTDIR"/usr/share/hunspell
+cp -a libreoffice/instdir/share/extensions/dict-pl/pl_PL.* 
"$INSTDIR"/usr/share/hunspell
+cp -a libreoffice/instdir/share/extensions/dict-ru/ru_RU.* 
"$INSTDIR"/usr/share/hunspell
+cp -a libreoffice/instdir/share/extensions/dict-pt-BR/pt_BR.* 
"$INSTDIR"/usr/share/hunspell
+cp -a libreoffice/instdir/share/extensions/dict-pt-PT/pt_PT.* 
"$INSTDIR"/usr/share/hunspell
+cp -a libreoffice/instdir/share/extensions/dict-fr/fr.dic 
"$INSTDIR"/usr/share/hunspell/fr_FR.dic
+cp -a libreoffice/instdir/share/extensions/dict-fr/fr.aff 
"$INSTDIR"/usr/share/hunspell/fr_FR.aff
+cp -a libreoffice/instdir/share/extensions/dict-es/es_ANY.dic 
"$INSTDIR"/usr/share/hunspell/es_ES.dic
+cp -a libreoffice/instdir/share/extensions/dict-es/es_ANY.aff 
"$INSTDIR"/usr/share/hunspell/es_ES.aff
+cp -a libreoffice/instdir/share/extensions/dict-de/de_AT_frami.dic 
"$INSTDIR"/usr/share/hunspell/de_AT.dic
+cp -a libreoffice/instdir/share/extensions/dict-de/de_AT_frami.aff 
"$INSTDIR"/usr/share/hunspell/de_AT.aff
+cp -a libreoffice/instdir/share/extensions/dict-de/de_CH_frami.dic 
"$INSTDIR"/usr/share/hunspell/de_CH.dic
+cp -a libreoffice/instdir/share/extensions/dict-de/de_CH_frami.aff 
"$INSTDIR"/usr/share/hunspell/de_CH.aff
+cp -a libreoffice/instdir/share/extensions/dict-de/de_DE_frami.dic 
"$INSTDIR"/usr/share/hunspell/de_DE.dic
+cp -a libreoffice/instdir/share/extensions/dict-de/de_DE_frami.aff 
"$INSTDIR"/usr/share/hunspell/de_DE.aff
+
 
 # loolwsd & loleaflet #
 
commit a314dab8d8b1f398521d689b7bbac665ae3173e2
Author: Andras Timar 
Date:   Fri Jan 5 17:12:34 2018 +0100

Online docker: do not 

[Libreoffice-bugs] [Bug 114794] LibreOffice will no longer recognise my Access database

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114794

--- Comment #18 from Chris Grove  ---
Well; I suppose that could be the problem. Until I updated my LO, I had never
bothered with the difference between 64 bit and 32. But 64 bit LO still offers
you the possibility of connecting to  an .mdb file.  If it can't work, then
perhaps it should not offer it as a possibility.  Maybe I'll have to go to
Ability after all.  Chris

-- 
You are receiving this mail because:
You 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: test/source

2018-01-05 Thread Miklos Vajna
 test/source/sheet/tableautoformat.cxx |   19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)

New commits:
commit 6007cdaabe1694ca8804ba816dbd87885dd3d8ac
Author: Miklos Vajna 
Date:   Fri Jan 5 15:38:10 2018 +0100

CppunitTest_sc_autoformatobj: fix read of value vs content of value

As far as I see the old qadevOOo/runner/lib/MultiPropertyTest.java
didn't assert the content of the property value (only avoided the set of
the property if the value was null or void), the new C++ version asserts
both the type and the value. Asserting the type is probably a good
thing, but asserting the value is problematic, at least the test failed
for me without these tweaks.

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

diff --git a/test/source/sheet/tableautoformat.cxx 
b/test/source/sheet/tableautoformat.cxx
index 28f98eb172f6..ed1424482cb6 100644
--- a/test/source/sheet/tableautoformat.cxx
+++ b/test/source/sheet/tableautoformat.cxx
@@ -28,8 +28,8 @@ void TableAutoFormat::testTableAutoFormatProperties()
 
 propName = "IncludeFont";
 bool aIncludeFont = false;
-CPPUNIT_ASSERT(xTableAutoFormat->getPropertyValue(propName) >>= 
aIncludeFont);
-CPPUNIT_ASSERT_MESSAGE("Unable to get property value IncludeFont", 
aIncludeFont);
+CPPUNIT_ASSERT_MESSAGE("Unable to get property value IncludeFont",
+   xTableAutoFormat->getPropertyValue(propName) >>= 
aIncludeFont);
 
 aNewValue <<= false;
 xTableAutoFormat->setPropertyValue(propName, aNewValue);
@@ -38,8 +38,8 @@ void TableAutoFormat::testTableAutoFormatProperties()
 
 propName = "IncludeJustify";
 bool aIncludeJustify = false;
-CPPUNIT_ASSERT(xTableAutoFormat->getPropertyValue(propName) >>= 
aIncludeJustify);
-CPPUNIT_ASSERT_MESSAGE("Unable to get property value IncludeJustify", 
aIncludeJustify);
+CPPUNIT_ASSERT_MESSAGE("Unable to get property value IncludeJustify",
+   xTableAutoFormat->getPropertyValue(propName) >>= 
aIncludeJustify);
 
 aNewValue <<= false;
 xTableAutoFormat->setPropertyValue(propName, aNewValue);
@@ -48,8 +48,8 @@ void TableAutoFormat::testTableAutoFormatProperties()
 
 propName = "IncludeBorder";
 bool aIncludeBorder = false;
-CPPUNIT_ASSERT(xTableAutoFormat->getPropertyValue(propName) >>= 
aIncludeBorder);
-CPPUNIT_ASSERT_MESSAGE("Unable to get property value IncludeBorder", 
aIncludeBorder);
+CPPUNIT_ASSERT_MESSAGE("Unable to get property value IncludeBorder",
+   xTableAutoFormat->getPropertyValue(propName) >>= 
aIncludeBorder);
 
 aNewValue <<= false;
 xTableAutoFormat->setPropertyValue(propName, aNewValue);
@@ -58,8 +58,8 @@ void TableAutoFormat::testTableAutoFormatProperties()
 
 propName = "IncludeBackground";
 bool aIncludeBackground = false;
-CPPUNIT_ASSERT(xTableAutoFormat->getPropertyValue(propName) >>= 
aIncludeBackground);
-CPPUNIT_ASSERT_MESSAGE("Unable to get property value IncludeBackground", 
aIncludeBackground);
+CPPUNIT_ASSERT_MESSAGE("Unable to get property value IncludeBackground",
+   xTableAutoFormat->getPropertyValue(propName) >>= 
aIncludeBackground);
 
 aNewValue <<= false;
 xTableAutoFormat->setPropertyValue(propName, aNewValue);
@@ -68,9 +68,8 @@ void TableAutoFormat::testTableAutoFormatProperties()
 
 propName = "IncludeNumberFormat";
 bool aIncludeNumberFormat = false;
-CPPUNIT_ASSERT(xTableAutoFormat->getPropertyValue(propName) >>= 
aIncludeNumberFormat);
 CPPUNIT_ASSERT_MESSAGE("Unable to get property value IncludeNumberFormat",
-   aIncludeNumberFormat);
+   xTableAutoFormat->getPropertyValue(propName) >>= 
aIncludeNumberFormat);
 
 aNewValue <<= false;
 xTableAutoFormat->setPropertyValue(propName, aNewValue);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - sw/source

2018-01-05 Thread Michael Stahl
 sw/source/core/layout/trvlfrm.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit fdac745028c2616ca4c7d105471282fc431cabc5
Author: Michael Stahl 
Date:   Fri Dec 15 17:07:01 2017 +0100

tdf#100635 sw: fix layout crash caused by field expansion ...

... triggering recursive layout-in-layout where a SwTextFrame
that's being formatted is deleted inside some other frame's
SwTextNode::GetFormatted().

The offending field is a SwAuthorityField that's located in a
fly-frame with FLY_AT_PAGE anchor.

SwPageFrame::GetContentPosition() is only called by field expansion
code, so this shouldn't have an effect on layout.

It already has a fall-back for the case when the frame has invalid
flags, so handle the situation when the SwLineLayout has been
deleted from the SwCache due to overflow the same way,
which prevents the recursive formatting.

Change-Id: I90437edb5692dc2bdec7ad03964588942bde05be
(cherry picked from commit b77881366b17230908f441dfa27afcafc4374708)
Reviewed-on: https://gerrit.libreoffice.org/46569
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 
(cherry picked from commit a1e377aff16ea7c4d434ab60d7ed946c82514684)
Reviewed-on: https://gerrit.libreoffice.org/46722
Tested-by: Xisco Faulí 

diff --git a/sw/source/core/layout/trvlfrm.cxx 
b/sw/source/core/layout/trvlfrm.cxx
index 05864d10a4ba..d854e092705c 100644
--- a/sw/source/core/layout/trvlfrm.cxx
+++ b/sw/source/core/layout/trvlfrm.cxx
@@ -1434,9 +1434,12 @@ void SwPageFrame::GetContentPosition( const Point , 
SwPosition  ) const
 else if ( aAct.X() > aRect.Right() )
 aAct.X() = aRect.Right();
 
-if( !pAct->IsValid() )
+if (!pAct->IsValid() ||
+(pAct->IsTextFrame() && !static_cast(pAct)->HasPara()))
 {
 // ContentFrame not formatted -> always on node-beginning
+// tdf#100635 also if the SwTextFrame would require reformatting,
+// which is unwanted in case this is called from text formatting code
 SwContentNode* pCNd = const_cast(pAct->GetNode());
 OSL_ENSURE( pCNd, "Where is my ContentNode?" );
 rPos.nNode = *pCNd;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - sw/source

2018-01-05 Thread Michael Stahl
 sw/source/uibase/index/toxmgr.cxx |   12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

New commits:
commit 1a27d6d76d6ef3afa5def40314120cd313b7f6d5
Author: Michael Stahl 
Date:   Thu Dec 14 18:52:15 2017 +0100

tdf#100635 sw: fix crash in SwTOXMgr::UpdateOrInsertTOX()

GetAuthBrackets() returns an empty string if the user selects
[None], in that case apparently 0 bytes are used, multiple places
check for that.

Change-Id: I8375621fa553bc780db343ed8a0bd7ecb3c832dc
(cherry picked from commit 2993bb634dc9ea66af90671a55a4503843338746)
Reviewed-on: https://gerrit.libreoffice.org/46568
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 
(cherry picked from commit 4d4dfeac7cf8cd14efa15a2c5204afc9af4f680c)
Reviewed-on: https://gerrit.libreoffice.org/46721
Tested-by: Xisco Faulí 

diff --git a/sw/source/uibase/index/toxmgr.cxx 
b/sw/source/uibase/index/toxmgr.cxx
index bbd2b293628d..b5b8b31e9198 100644
--- a/sw/source/uibase/index/toxmgr.cxx
+++ b/sw/source/uibase/index/toxmgr.cxx
@@ -355,8 +355,16 @@ bool SwTOXMgr::UpdateOrInsertTOX(const SwTOXDescription& 
rDesc,
 pFType = static_cast(
 pSh->InsertFieldType(type));
 }
-pFType->SetPreSuffix(rDesc.GetAuthBrackets()[0],
-rDesc.GetAuthBrackets()[1]);
+OUString const& rBrackets(rDesc.GetAuthBrackets());
+if (rBrackets.isEmpty())
+{
+pFType->SetPreSuffix('\0', '\0');
+}
+else
+{
+assert(rBrackets.getLength() == 2);
+pFType->SetPreSuffix(rBrackets[0], rBrackets[1]);
+}
 pFType->SetSequence(rDesc.IsAuthSequence());
 SwTOXSortKey rArr[3];
 rArr[0] = rDesc.GetSortKey1();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - editeng/source

2018-01-05 Thread Michael Stahl
 editeng/source/editeng/impedit4.cxx |   26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

New commits:
commit fedad0e8fd19b4a7b39476bbce7b8942ada97311
Author: Michael Stahl 
Date:   Thu Dec 14 14:17:03 2017 +0100

editeng: fix RTF export of colors

SfxItemPool may contain null pointers and return them from GetItem2(),
even if non-null pointers follow, so have to use GetItemCount2() here.

This later asserts when it can't find the items in aColorList.

(cherry picked from commit 30504139af039d524ca0fd7158fc21ed38db2d9f)

editeng: RTF export: another buggy GetItem2() loop, for fonts
(cherry picked from commit 8ce353279caa84944971f22ec536433030e5d9c7)

editeng: error: "remove_const_t" is not a member of "std"
Manual type inference was an interesting oxymoronic curiosity that
can probably only exist in C++, but it turns out our baseline
compilers don't even support it yet.
(cherry picked from commit 700e1e7fda6f0a415adbbd5bb190efa5c7435c4f)

Change-Id: I976c95387b4c45e5a4371254f130df6b24370eaa
Reviewed-on: https://gerrit.libreoffice.org/46469
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 
(cherry picked from commit b8ba995f079add002ab9606168d31d5386993160)
Reviewed-on: https://gerrit.libreoffice.org/46716

diff --git a/editeng/source/editeng/impedit4.cxx 
b/editeng/source/editeng/impedit4.cxx
index 0715212ff856..d1e688aed165 100644
--- a/editeng/source/editeng/impedit4.cxx
+++ b/editeng/source/editeng/impedit4.cxx
@@ -340,10 +340,15 @@ sal_uInt32 ImpEditEngine::WriteRTF( SvStream& rOutput, 
EditSelection aSel )
 else if ( nScriptType == 2 )
 nWhich = EE_CHAR_FONTINFO_CTL;
 
-sal_uInt32 i = 0;
-const SvxFontItem* pFontItem = static_cast(aEditDoc.GetItemPool().GetItem2( nWhich, i ));
-while ( pFontItem )
+auto const nFonts(aEditDoc.GetItemPool().GetItemCount2(nWhich));
+for (sal_uInt32 i = 0; i < nFonts; ++i)
 {
+SvxFontItem const*const pFontItem = static_cast(
+aEditDoc.GetItemPool().GetItem2(nWhich, i));
+if (!pFontItem)
+{
+continue;
+}
 bool bAlreadyExist = false;
 sal_uLong nTestMax = nScriptType ? aFontTable.size() : 1;
 for ( sal_uLong nTest = 0; !bAlreadyExist && ( nTest < nTestMax ); 
nTest++ )
@@ -353,8 +358,6 @@ sal_uInt32 ImpEditEngine::WriteRTF( SvStream& rOutput, 
EditSelection aSel )
 
 if ( !bAlreadyExist )
 aFontTable.push_back( new SvxFontItem( *pFontItem ) );
-
-pFontItem = static_cast(aEditDoc.GetItemPool().GetItem2( nWhich, ++i ));
 }
 }
 
@@ -418,18 +421,15 @@ sal_uInt32 ImpEditEngine::WriteRTF( SvStream& rOutput, 
EditSelection aSel )
 {
 aColorList.push_back(rDefault.GetValue());
 }
-sal_uInt32 i = 0;
-SvxColorItem const* pColorItem = static_cast(
-aEditDoc.GetItemPool().GetItem2( EE_CHAR_COLOR, i));
-while ( pColorItem )
+auto const nColors(aEditDoc.GetItemPool().GetItemCount2(EE_CHAR_COLOR));
+for (sal_uInt32 i = 0; i < nColors; ++i)
 {
-++i;
-if ( pColorItem->GetValue() != COL_AUTO )
+SvxColorItem const*const pColorItem(static_cast(
+aEditDoc.GetItemPool().GetItem2(EE_CHAR_COLOR, i)));
+if (pColorItem && pColorItem->GetValue() != COL_AUTO) // may be null!
 {
 aColorList.push_back(pColorItem->GetValue());
 }
-pColorItem = static_cast(
-aEditDoc.GetItemPool().GetItem2(EE_CHAR_COLOR, i));
 }
 
 rOutput.WriteChar( '{' ).WriteCharPtr( OOO_STRING_SVTOOLS_RTF_COLORTBL );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-05 Thread Caolán McNamara
 i18nlangtag/source/languagetag/languagetag.cxx |   12 ++--
 include/i18nlangtag/languagetag.hxx|3 +++
 unotools/source/config/configmgr.cxx   |2 ++
 3 files changed, 15 insertions(+), 2 deletions(-)

New commits:
commit cadfee0a72cf032314833959f7b7f3f6688a3079
Author: Caolán McNamara 
Date:   Fri Jan 5 15:15:15 2018 +

ofz#4952 avoid liblangtag config when fuzzing enabled

Change-Id: I9f2b0cbb5108f57ec2f80ebe24f748c33ea9cf59
Reviewed-on: https://gerrit.libreoffice.org/47477
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/i18nlangtag/source/languagetag/languagetag.cxx 
b/i18nlangtag/source/languagetag/languagetag.cxx
index 28842ccace6d..f9945f10c5c9 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -702,6 +702,14 @@ void LanguageTag::setConfiguredSystemLanguage( 
LanguageType nLang )
 aLanguageTag.registerImpl();
 }
 
+static bool lt_tag_parse_disabled = false;
+
+// static
+void LanguageTag::disable_lt_tag_parse()
+{
+lt_tag_parse_disabled = true;
+}
+
 static bool lcl_isKnownOnTheFlyID( LanguageType nLang )
 {
 return nLang != LANGUAGE_DONTKNOW && nLang != LANGUAGE_SYSTEM &&
@@ -1197,7 +1205,7 @@ bool LanguageTagImpl::canonicalize()
 
 myLtError aError;
 
-if (lt_tag_parse( mpImplLangtag, OUStringToOString( maBcp47, 
RTL_TEXTENCODING_UTF8).getStr(), ))
+if (!lt_tag_parse_disabled && lt_tag_parse(mpImplLangtag, 
OUStringToOString(maBcp47, RTL_TEXTENCODING_UTF8).getStr(), ))
 {
 char* pTag = lt_tag_canonicalize( mpImplLangtag, );
 SAL_WARN_IF( !pTag, "i18nlangtag", "LanguageTagImpl::canonicalize: 
could not canonicalize '" << maBcp47 << "'");
@@ -2809,7 +2817,7 @@ bool LanguageTag::isValidBcp47( const OUString& rString, 
OUString* o_pCanonicali
 
 myLtError aError;
 
-if (lt_tag_parse( aVar.mpLangtag, OUStringToOString( rString, 
RTL_TEXTENCODING_UTF8).getStr(), ))
+if (!lt_tag_parse_disabled && lt_tag_parse(aVar.mpLangtag, 
OUStringToOString(rString, RTL_TEXTENCODING_UTF8).getStr(), ))
 {
 char* pTag = lt_tag_canonicalize( aVar.mpLangtag, );
 SAL_WARN_IF( !pTag, "i18nlangtag", "LanguageTag:isValidBcp47: could 
not canonicalize '" << rString << "'");
diff --git a/include/i18nlangtag/languagetag.hxx 
b/include/i18nlangtag/languagetag.hxx
index a9937205ef8c..f337d147b414 100644
--- a/include/i18nlangtag/languagetag.hxx
+++ b/include/i18nlangtag/languagetag.hxx
@@ -528,6 +528,9 @@ public:
 /** @ATTENTION: _ONLY_ to be called by the application's configuration! */
 static void setConfiguredSystemLanguage( LanguageType nLang );
 
+/** @ATTENTION: _ONLY_ to be called by fuzzing setup */
+static void disable_lt_tag_parse();
+
 typedef std::shared_ptr< LanguageTagImpl > ImplPtr;
 
 private:
diff --git a/unotools/source/config/configmgr.cxx 
b/unotools/source/config/configmgr.cxx
index 417bfc311bbf..1f83a94830d2 100644
--- a/unotools/source/config/configmgr.cxx
+++ b/unotools/source/config/configmgr.cxx
@@ -28,6 +28,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -205,6 +206,7 @@ bool utl::ConfigManager::IsFuzzing()
 void utl::ConfigManager::EnableFuzzing()
 {
 bIsFuzzing = true;
+LanguageTag::disable_lt_tag_parse();
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-05 Thread Caolán McNamara
 lotuswordpro/source/filter/lwpparastyle.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit cef6271497ad3fe74820b36d6387351b15a16519
Author: Caolán McNamara 
Date:   Fri Jan 5 14:59:49 2018 +

ofz#4976 Integer-overflow

Change-Id: I6929fc192e0e602c06edf89cf70e256797f7543a
Reviewed-on: https://gerrit.libreoffice.org/47476
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/lotuswordpro/source/filter/lwpparastyle.cxx 
b/lotuswordpro/source/filter/lwpparastyle.cxx
index b51d24b22251..b0d19ecc8b06 100644
--- a/lotuswordpro/source/filter/lwpparastyle.cxx
+++ b/lotuswordpro/source/filter/lwpparastyle.cxx
@@ -68,6 +68,7 @@
 #include "lwpnumberingoverride.hxx"
 #include "lwptaboverride.hxx"
 #include "lwpbackgroundoverride.hxx"
+#include 
 #include 
 #include 
 #include 
@@ -455,7 +456,7 @@ void LwpParaStyle::ApplyIndent(LwpPara* pPara, XFParaStyle* 
pParaStyle, LwpInden
 Amount += pParentIndent->GetMFirst();
 else if (relative == LwpIndentOverride::RELATIVE_REST)
 Amount += pParentIndent->GetMRest();
-pTotalIndent->SetMAll(Amount + pTotalIndent->GetMAll());
+pTotalIndent->SetMAll(o3tl::saturating_add(Amount, 
pTotalIndent->GetMAll()));
 pTotalIndent->SetMRight(pParentIndent->GetMRight()+ 
pTotalIndent->GetMRight());
 
 pParaStyle->SetIndent(pTotalIndent->GetFirst());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114852] formula as OLE - not complely visible

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114852

--- Comment #2 from Wolf  ---
Created attachment 138907
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138907=edit
example formula

-- 
You are receiving this mail because:
You 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 114852] formula as OLE - not complely visible

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114852

--- Comment #1 from Wolf  ---
I found that I can edit the formula CONTOUR and make it visible. It seems to be
drawn very narrow - mabe giving it slightly more allowance can fix the problem?

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


[Libreoffice-bugs] [Bug 114856] HTML parser in Writer borken

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114856

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #1 from V Stuart Foote  ---
Hmm, not clear this is valid.

The GUI allows you to select the filter for import/opening of a document into a
LO module. And HTML with .htm/.html are opened into Writer Web by default.

The Writer Web module provides an HTML source view mode to directly adjust
content and markup.

And if you want to open HTML with formatting into Writer, selecting the "HTML
Document Writer (*.html, *.htm, *.xhtml)" filter with the GUI will correctly
handle it.

Beyond that, not clear there is an issue. Perhaps provide a sample document you
beleive is not being correctly opening into Writer Web, or with filter
selection into Writer.

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


[Libreoffice-bugs] [Bug 114847] FILEOPEN DOCX: Table does not appear

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114847

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #5 from Regina Henschel  ---
Neither of the two files can be opened in Word 2010.

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


[Libreoffice-commits] core.git: download.lst external/libebook solenv/flatpak-manifest.in writerperfect/Library_wpftwriter.mk

2018-01-05 Thread David Tardon
 download.lst   
 |4 
 
external/libebook/0001-lrf-compute-color-interpolation-coeff.-correctly.patch.1 
|   25 -
 external/libebook/ExternalProject_libebook.mk  
 |8 -
 external/libebook/UnpackedTarball_libebook.mk  
 |3 
 external/libebook/libebook-msvc.patch.1
 |   46 ++
 external/libebook/ubsan.patch  
 |   11 --
 solenv/flatpak-manifest.in 
 |6 -
 writerperfect/Library_wpftwriter.mk
 |1 
 8 files changed, 57 insertions(+), 47 deletions(-)

New commits:
commit 86994e1c25bb5a2d0f97d17328457fa6dfd2f288
Author: David Tardon 
Date:   Tue Jan 2 13:56:54 2018 +0100

upload libe-book 0.1.3

Change-Id: I8862e7f4d2dcb007295028b9ec7be04e58ebafd3
Reviewed-on: https://gerrit.libreoffice.org/47264
Tested-by: Jenkins 
Reviewed-by: David Tardon 

diff --git a/download.lst b/download.lst
index b98f31a8521b..6e2be6621236 100644
--- a/download.lst
+++ b/download.lst
@@ -31,8 +31,8 @@ export CT2N_SHA256SUM := 
71b238efd2734be9800af07566daea8d6685aeed28db5eb5fa0e645
 export CT2N_TARBALL := 
1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt
 export CURL_SHA256SUM := 
7ce35f207562674e71dbada6891b37e3f043c1e7a82915cb9c2a17ad3a9d659b
 export CURL_TARBALL := curl-7.57.0.tar.gz
-export EBOOK_SHA256SUM := 
b710a57c633205b933015474d0ac0862253d1c52114d535dd09b20939a0d1850
-export EBOOK_TARBALL := libe-book-0.1.2.tar.bz2
+export EBOOK_SHA256SUM := 
7e8d8ff34f27831aca3bc6f9cc532c2f90d2057c778963b884ff3d1e34dfe1f9
+export EBOOK_TARBALL := libe-book-0.1.3.tar.xz
 export EPOXY_SHA256SUM := 
1d8668b0a259c709899e1c4bab62d756d9002d546ce4f59c9665e2fc5f001a64
 export EPOXY_TARBALL := libepoxy-1.3.1.tar.bz2
 export EPM_SHA256SUM := 
b3fc4c5445de6c9a801504a3ea3efb2d4ea9d5a622c9427e716736e7713ddb91
diff --git 
a/external/libebook/0001-lrf-compute-color-interpolation-coeff.-correctly.patch.1
 
b/external/libebook/0001-lrf-compute-color-interpolation-coeff.-correctly.patch.1
deleted file mode 100644
index dba57ac64a67..
--- 
a/external/libebook/0001-lrf-compute-color-interpolation-coeff.-correctly.patch.1
+++ /dev/null
@@ -1,25 +0,0 @@
-From 584c9bcfed7295e5e0a9d5caafb32a5020b74300 Mon Sep 17 00:00:00 2001
-From: David Tardon 
-Date: Mon, 12 Jan 2015 17:10:07 +0100
-Subject: [PATCH] lrf: compute color interpolation coeff. correctly
-

- src/lib/LRFCollector.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/lib/LRFCollector.cpp b/src/lib/LRFCollector.cpp
-index 1c02593..3fbee2e 100644
 a/src/lib/LRFCollector.cpp
-+++ b/src/lib/LRFCollector.cpp
-@@ -50,7 +50,7 @@ const LRFColor combine(const LRFColor , const LRFColor 
)
- {
-   assert(0 == bg.a);
- 
--  const double a = fg.a / 255.0;
-+  const double a = 1 - fg.a / 255.0;
- 
-   const double r = (1 - a) * bg.r + a * fg.r;
-   const double g = (1 - a) * bg.g + a * fg.g;
--- 
-2.1.0
-
diff --git a/external/libebook/ExternalProject_libebook.mk 
b/external/libebook/ExternalProject_libebook.mk
index 476aac285b3a..bac09b699b12 100644
--- a/external/libebook/ExternalProject_libebook.mk
+++ b/external/libebook/ExternalProject_libebook.mk
@@ -18,12 +18,12 @@ $(eval $(call gb_ExternalProject_register_targets,libebook,\
 $(eval $(call gb_ExternalProject_use_externals,libebook,\
boost_headers \
icu \
+   liblangtag \
libxml2 \
revenge \
zlib \
 ))
 
-# TODO: remove the generators/stream empty vars on libe-book update
 $(call gb_ExternalProject_get_state_target,libebook,build) :
$(call gb_ExternalProject_run,build,\
export PKG_CONFIG="" \
@@ -39,11 +39,11 @@ $(call gb_ExternalProject_get_state_target,libebook,build) :
--disable-werror \
--disable-weffc \
CXXFLAGS="$(gb_CXXFLAGS) $(if 
$(ENABLE_OPTIMIZED),$(gb_COMPILEROPTFLAGS),$(gb_COMPILERNOOPTFLAGS))" \
-   CPPFLAGS="$(CPPFLAGS) $(ICU_UCHAR_TYPE) 
$(BOOST_CPPFLAGS) \
-   -DBOOST_ERROR_CODE_HEADER_ONLY 
-DBOOST_SYSTEM_NO_DEPRECATED" \
+   CPPFLAGS="$(CPPFLAGS) $(ICU_UCHAR_TYPE) 
$(BOOST_CPPFLAGS)" \
+   LANGTAG_CFLAGS="$(LIBLANGTAG_CFLAGS)" \
+   LANGTAG_LIBS="$(LIBLANGTAG_LIBS)" \
XML_CFLAGS="$(LIBXML_CFLAGS)" \
XML_LIBS="$(LIBXML_LIBS)" \
-   REVENGE_GENERATORS_CFLAGS=' ' REVENGE_GENERATORS_LIBS=' 
' REVENGE_STREAM_CFLAGS=' ' REVENGE_STREAM_LIBS=' ' \
$(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 

[Libreoffice-bugs] [Bug 107360] No Access connection for 64 bit LO (Windows) - see Comment 7

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107360

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 114794] LibreOffice will no longer recognise my Access database

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114794

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 114794] LibreOffice will no longer recognise my Access database

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114794

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 CC||rob...@familiegrosskopf.de
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=97
   ||395

--- Comment #17 from rob...@familiegrosskopf.de ---
Have never used Access and *.mdb. Only one idea: Isn't *.mdb a database for
32bit? Could this be the problem? 6bit LO, 64bit Java and 32bit *.mdb-file?

See also
https://bugs.documentfoundation.org/show_bug.cgi?id=97395

-- 
You are receiving this mail because:
You 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 97395] FILEOPEN: Libre Office odb crashes when try to open tables from Access MDB file

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97395

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 114856] New: HTML parser in Writer borken

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114856

Bug ID: 114856
   Summary: HTML parser in Writer borken
   Product: LibreOffice
   Version: 5.4.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:html
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: d...@owasp.org

When trying to import a HTML document into write it seems to insist on 
on the first line. Otherwise it is being imported as plain text.

This is broken as nowadays^W since at least 20years (HTML 3.2 as far as I can
recall) requires a DOCTYPE header before.

My expectation is that the parser needs to be adjusted so that it is more
flexible.

-- 
You are receiving this mail because:
You 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 114850] Crash in: connectivity::odbc::OConnection::getOdbcFunction( ODBC3SQLFunctionId) const

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114850

--- Comment #3 from Pieter Wolters  ---
version sqlite : 3.8.2 2013-12-06 14:53:30

-- 
You are receiving this mail because:
You 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-01-05 Thread Caolán McNamara
 sw/source/filter/html/htmlftn.cxx |   31 ---
 sw/source/filter/html/htmltab.cxx |   32 
 sw/source/filter/html/swhtml.hxx  |   23 +++
 sw/source/filter/html/wrthtml.hxx |4 +---
 4 files changed, 64 insertions(+), 26 deletions(-)

New commits:
commit c75c3b2fdab5614664215e52d85657472ec86f05
Author: Caolán McNamara 
Date:   Fri Jan 5 12:06:09 2018 +

ofz#4971 Bad-cast

Change-Id: Icf66aa82e72a2b9f24f590b84bb0441ebf09463f
Reviewed-on: https://gerrit.libreoffice.org/47466
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/sw/source/filter/html/htmlftn.cxx 
b/sw/source/filter/html/htmlftn.cxx
index ef384761f2b3..749b01dcf142 100644
--- a/sw/source/filter/html/htmlftn.cxx
+++ b/sw/source/filter/html/htmlftn.cxx
@@ -31,17 +31,6 @@
 #include "swhtml.hxx"
 #include "wrthtml.hxx"
 
-struct SwHTMLFootEndNote_Impl
-{
-SwHTMLTextFootnotes aTextFootnotes;
-std::vector aNames;
-
-OUString sName;
-OUString sContent;// information for the last footnote
-bool bEndNote;
-bool bFixed;
-};
-
 sal_Int32 lcl_html_getNextPart( OUString& rPart, const OUString& rContent,
  sal_Int32 nPos )
 {
@@ -209,11 +198,8 @@ void SwHTMLParser::FinishFootEndNote()
 m_pPam->GetNode().GetTextNode()->GetTextAttrForCharAt(
 m_pPam->GetPoint()->nContent.GetIndex() - 1, RES_TXTATR_FTN ) );
 // In header and footer no footnotes can be inserted.
-if( pTextFootnote )
-{
-m_pFootEndNoteImpl->aTextFootnotes.push_back( pTextFootnote );
-m_pFootEndNoteImpl->aNames.push_back(m_pFootEndNoteImpl->sName);
-}
+if (pTextFootnote)
+
m_pFootEndNoteImpl->aTextFootnotes.push_back(SwHTMLTextFootnote(m_pFootEndNoteImpl->sName,pTextFootnote));
 m_pFootEndNoteImpl->sName = aEmptyOUStr;
 m_pFootEndNoteImpl->sContent = aEmptyOUStr;
 m_pFootEndNoteImpl->bFixed = false;
@@ -235,19 +221,18 @@ SwNodeIndex *SwHTMLParser::GetFootEndNoteSection( const 
OUString& rName )
 {
 SwNodeIndex *pStartNodeIdx = nullptr;
 
-if( m_pFootEndNoteImpl )
+if (m_pFootEndNoteImpl)
 {
 OUString aName(rName.toAsciiUpperCase());
 
-size_t nCount = m_pFootEndNoteImpl->aNames.size();
+size_t nCount = m_pFootEndNoteImpl->aTextFootnotes.size();
 for(size_t i = 0; i < nCount; ++i)
 {
-if(m_pFootEndNoteImpl->aNames[i] == aName)
+if (m_pFootEndNoteImpl->aTextFootnotes[i].sName == aName)
 {
-pStartNodeIdx = 
m_pFootEndNoteImpl->aTextFootnotes[i]->GetStartNode();
-
m_pFootEndNoteImpl->aNames.erase(m_pFootEndNoteImpl->aNames.begin() + i);
+pStartNodeIdx = 
m_pFootEndNoteImpl->aTextFootnotes[i].pTextFootnote->GetStartNode();
 m_pFootEndNoteImpl->aTextFootnotes.erase( 
m_pFootEndNoteImpl->aTextFootnotes.begin() + i );
-if(m_pFootEndNoteImpl->aNames.empty())
+if (m_pFootEndNoteImpl->aTextFootnotes.empty())
 {
 delete m_pFootEndNoteImpl;
 m_pFootEndNoteImpl = nullptr;
@@ -288,7 +273,7 @@ Writer& OutHTML_SwFormatFootnote( Writer& rWrt, const 
SfxPoolItem& rHt )
 }
 
 if( !rHTMLWrt.m_pFootEndNotes )
-rHTMLWrt.m_pFootEndNotes = new SwHTMLTextFootnotes;
+rHTMLWrt.m_pFootEndNotes = new std::vector;
 rHTMLWrt.m_pFootEndNotes->insert( rHTMLWrt.m_pFootEndNotes->begin() + 
nPos, pTextFootnote );
 
 OStringBuffer sOut;
diff --git a/sw/source/filter/html/htmltab.cxx 
b/sw/source/filter/html/htmltab.cxx
index 92ec9aa5c928..59cc59c64e5f 100644
--- a/sw/source/filter/html/htmltab.cxx
+++ b/sw/source/filter/html/htmltab.cxx
@@ -58,6 +58,7 @@
 #include "swhtml.hxx"
 #include "swcss1.hxx"
 #include 
+#include 
 
 #define NETSCAPE_DFLT_BORDER 1
 #define NETSCAPE_DFLT_CELLSPACING 2
@@ -5021,6 +5022,24 @@ namespace
 m_pObjectFormat->Remove(this);
 }
 };
+
+class IndexInRange
+{
+private:
+SwNodeIndex maStart;
+SwNodeIndex maEnd;
+public:
+explicit IndexInRange(const SwNodeIndex& rStart, const SwNodeIndex& 
rEnd)
+: maStart(rStart)
+, maEnd(rEnd)
+{
+}
+bool operator()(const SwHTMLTextFootnote& rTextFootnote) const
+{
+const SwNodeIndex 
aTextIdx(rTextFootnote.pTextFootnote->GetTextNode());
+return aTextIdx >= maStart && aTextIdx <= maEnd;
+}
+};
 }
 
 std::shared_ptr SwHTMLParser::BuildTable(SvxAdjust eParentAdjust,
@@ -5294,6 +5313,19 @@ std::shared_ptr 
SwHTMLParser::BuildTable(SvxAdjust eParentAdjust,
 SwFrameFormat* pObjectFormat = m_pMarquee ? 
::FindFrameFormat(m_pMarquee) : nullptr;

[Libreoffice-bugs] [Bug 114850] Crash in: connectivity::odbc::OConnection::getOdbcFunction( ODBC3SQLFunctionId) const

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114850

--- Comment #2 from Pieter Wolters  ---
Created attachment 138906
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138906=edit
SQLITE database

-- 
You are receiving this mail because:
You 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 114850] Crash in: connectivity::odbc::OConnection::getOdbcFunction( ODBC3SQLFunctionId) const

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114850

--- Comment #1 from Pieter Wolters  ---
Created attachment 138905
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138905=edit
ODB file for test database

this file shows a test odb file with a dropdownfield in a form. 

on the start of the form the LO dies. 

sqlite file will be send by also.

-- 
You are receiving this mail because:
You 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 107733] [META] Hyperlink bugs and enhancements

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107733
Bug 107733 depends on bug 104707, which changed state.

Bug 104707 Summary: FILESAVE DOCX: URL in comment is not saved to docx format
https://bugs.documentfoundation.org/show_bug.cgi?id=104707

   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 112916] [META] DOCX (OOXML) comment issues

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112916
Bug 112916 depends on bug 104707, which changed state.

Bug 104707 Summary: FILESAVE DOCX: URL in comment is not saved to docx format
https://bugs.documentfoundation.org/show_bug.cgi?id=104707

   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 109531] All components crash on startup in KDE Neon

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109531

--- Comment #13 from Henning  ---
Thank you :-)

-- 
You are receiving this mail because:
You 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 114855] Replacing Source Sans Pro by Source Sans Variable

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114855

Volga  changed:

   What|Removed |Added

 Blocks||113305


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 113305] [META] Bundled fonts bugs and enhancements

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113305

Volga  changed:

   What|Removed |Added

 Depends on||114855


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114855
[Bug 114855] Replacing Source Sans Pro by Source Sans Variable
-- 
You are receiving this mail because:
You 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 109531] All components crash on startup in KDE Neon

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109531

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #12 from Buovjaga  ---
Let's set to WFM as it's the problem is gone :)

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


[Libreoffice-bugs] [Bug 114853] [META] Bitmap fill bugs and enhancements

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114853

V Stuart Foote  changed:

   What|Removed |Added

Summary|[META] Bitmaa fill bugs and |[META] Bitmap fill bugs and
   |enhancements|enhancements

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


[Libreoffice-bugs] [Bug 109531] All components crash on startup in KDE Neon

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109531

Henning  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #11 from Henning  ---
Dear Xisco,
apologies for the late reply. :-(

I tried the latest master. All components start, the bug does not appear
anymore. The used version is:

Version: 6.1.0.0.alpha0+
Build ID: d2c9b749503ef0763a6140a7b509f73adb6015d2

I hope I'm doing the right thing by setting the status back to UNCONFIRMED, as
a green note on this page is telling me to.

-- 
You are receiving this mail because:
You 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 113622] Impress can't play MP4 videos (OS X-specific)

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113622

--- Comment #29 from Tor Lillqvist  ---
I wonder if the currently unused FrameGrabber::create( const ::rtl::OUString&
rURL ) function was supposed to be used originally, or perhaps if using that
instead of calling the FrameGrabber::create( AVAsset* pMovie ) function from
Player::createFrameGrabber() would be relevant in fixing this problem?

Ah, inspecting git log shows that 75c804c1be8acf4c3fc9935b81e696918f33fd9d
removed the use of that function. The log message also seems to confirm the
idea that the code is wrongly structured, and should be re-factored to use the
asynchronous APIs properly (waiting for stuff to be ready) see comment #22.

-- 
You are receiving this mail because:
You 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 114855] New: Replacing Source Sans Pro by Source Sans Variable

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114855

Bug ID: 114855
   Summary: Replacing Source Sans Pro by Source Sans Variable
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: shanshandehongx...@outlook.com

Description:
Adobe released Source Sans Variable font in 19 Aug 2017, the variable version
of Source Sans Pro. Since then, we bundle Source Sans Variable to reduce sixe
of installation package. But we must get support for font variation.

Steps to Reproduce:
-

Actual Results:  
-

Expected Results:
-


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101
Firefox/57.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 114854] FILEOPEN: DOCX: URL in comment imported as plain text

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114854

Justin L  changed:

   What|Removed |Added

   Keywords||filter:docx
 CC||jl...@mail.com
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||4707

-- 
You are receiving this mail because:
You 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 114854] New: FILEOPEN: DOCX: URL in comment imported as plain text

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114854

Bug ID: 114854
   Summary: FILEOPEN: DOCX: URL in comment imported as plain text
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jl...@mail.com

Created attachment 138904
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138904=edit
tdf104707_urlComment.odt: ODT master for creating .doc and .docx copies.

URLs in comments in .docx format are imported as plain text, losing the URL
formatting/clickability.

See attachment 138876 from related bug 104707
URLinComment2003.docx: MS Word 2003 created test with URL in comment

.odt and .doc files don't have this problem. Look at
ww8par5.cxx:Read_F_Hyperlink for the function that creates the
SwFormatINetFormat attribute.

The problem code for docx is in DomainMapper_Impl:PopFieldContext() which
throws an exception when setting the "HyperLinkURL" property in the annotation.
The same code is used for setting the URL property in regular text and works
fine there. I'm stumped, but it should be an easy bug to solve for someone with
good understanding of how .docx importing works.

-- 
You are receiving this mail because:
You 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 114848] FILESAVE: PPTX: Shape's colour lost after RT

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114848

Szymon Kłos  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |szymon.k...@collabora.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 113072] [META] Numbering format presets for lists, pages, etc

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113072

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||77803


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=77803
[Bug 77803] Implement separate numbering styles for Chinese and Japanese
(they're similar, but not the same)
-- 
You are receiving this mail because:
You 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 77803] Implement separate numbering styles for Chinese and Japanese ( they're similar, but not the same)

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77803

Yousuf Philips (jay)  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=10 |
   |6988|
 Blocks||113072


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113072
[Bug 113072] [META] Numbering format presets for lists, pages, etc
-- 
You are receiving this mail because:
You 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-01-05 Thread Jim Raykowski
 sw/source/uibase/utlui/content.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 3a9877b74e1730424a41319a03f5b56a6102a76b
Author: Jim Raykowski 
Date:   Thu Dec 28 08:46:00 2017 -0900

tdf#114724 fix headings outline tracking highlight in Navigator

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

diff --git a/sw/source/uibase/utlui/content.cxx 
b/sw/source/uibase/utlui/content.cxx
index c28a8b9254cc..6f1e71e5b0c6 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -2082,6 +2082,7 @@ bool SwContentTree::HasContentChanged()
 const SwOutlineNodes::size_type nActPos = 
GetWrtShell()->GetOutlinePos(MAXLEVEL);
 SvTreeListEntry* pFirstEntry = First();
 
+SelectAll(false);
 while( nullptr != (pFirstEntry = Next(pFirstEntry)) )
 {
 
assert(dynamic_cast(static_cast(pFirstEntry->GetUserData(;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114853] [META] Bitmaa fill bugs and enhancements

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114853

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||94714


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94714
[Bug 94714] Bitmaps and patterns are applied at a larger size
-- 
You are receiving this mail because:
You 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 112579] [META] Pattern fill bugs and enhancements

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112579

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||94714


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94714
[Bug 94714] Bitmaps and patterns are applied at a larger size
-- 
You are receiving this mail because:
You 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 94722] [META] Object fill bugs and enhancements

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94722

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|94714   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94714
[Bug 94714] Bitmaps and patterns are applied at a larger size
-- 
You are receiving this mail because:
You 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 94714] Bitmaps and patterns are applied at a larger size

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94714

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|94722   |114853, 112579


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94722
[Bug 94722] [META] Object fill bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=112579
[Bug 112579] [META] Pattern fill bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=114853
[Bug 114853] [META] Bitmaa fill bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114853] [META] Bitmaa fill bugs and enhancements

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114853

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl,
   ||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 114853] New: [META] Bitmaa fill bugs and enhancements

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114853

Bug ID: 114853
   Summary: [META] Bitmaa fill bugs and enhancements
   Product: LibreOffice
   Version: 6.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Depends on: 113224, 114838
Blocks: 94722


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94722
[Bug 94722] [META] Object fill bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=113224
[Bug 113224] [META] Bitmap fill issues of the Area fill tab
https://bugs.documentfoundation.org/show_bug.cgi?id=114838
[Bug 114838] Area Fill Bitmap SVG import
-- 
You are receiving this mail because:
You 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 114838] Area Fill Bitmap SVG import

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114838

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||114853


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 113224] [META] Bitmap fill issues of the Area fill tab

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113224

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||114853


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 94722] [META] Object fill bugs and enhancements

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94722

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||114853


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 114844] Text layout in opened PDF is wrong

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114844

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Blocks||99746

--- Comment #2 from V Stuart Foote  ---
Your screen shot shows font substitutions are being made for several of the
PalatinoLinoType fonts subsetted into the PDF. Similar for me on Windows
builds.

So, IMHO this is correct behavior (if referenced font is not installed on
system) but then fallback handling of font metrics is not ideal.

Unlike other PDF "viewers", for our purposes of extracting PDF content, on
filter import of a PDF the font substitution has to be made--as we likely will
need to change text to use glyphs that are not included with the available
subset in the PDF. 

And the trouble comes with the fallback mechanism, which is passed off to the
OS to deal with. 

I don't know if the PDF font embedding includes all the metrics--anyone?  But
not sure we can improve that if the font metrics are not available.

So, not really an issue with HarfBuzz?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99746
[Bug 99746] [META] PDF import filter in Draw
-- 
You are receiving this mail because:
You 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 99746] [META] PDF import filter in Draw

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99746

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||114844


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114844
[Bug 114844] Text layout in opened PDF is wrong
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 95695] Text wrapping doesn't work if an image overlaps an other image

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95695

--- Comment #5 from jens116  ---
Still exist in LO 5.44 on Windowns 10

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


[Libreoffice-bugs] [Bug 95695] Text wrapping doesn't work if an image overlaps an other image

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95695

jens116  changed:

   What|Removed |Added

Summary|Text wrapping works not if  |Text wrapping doesn't work
   |an image overlaps with the  |if an image overlaps an
   |previous image  |other image

-- 
You are receiving this mail because:
You 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: chart2/source sc/source shell/source sw/source

2018-01-05 Thread Andrea Gelmini
 chart2/source/view/charttypes/Splines.cxx|4 ++--
 sc/source/core/data/table6.cxx   |2 +-
 shell/source/cmdmail/cmdmailsuppl.cxx|4 ++--
 sw/source/filter/ww8/docxattributeoutput.cxx |2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 52bab68b384309d618b03373b247401c9bcfd3de
Author: Andrea Gelmini 
Date:   Fri Jan 5 10:55:20 2018 +0100

Fix typos

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

diff --git a/chart2/source/view/charttypes/Splines.cxx 
b/chart2/source/view/charttypes/Splines.cxx
index 6f49d83d9d15..fa31a609c61e 100644
--- a/chart2/source/view/charttypes/Splines.cxx
+++ b/chart2/source/view/charttypes/Splines.cxx
@@ -65,7 +65,7 @@ public:
 
 /** @descr this function corresponds to the function splint in [1].
 
-[1] Numerical Recipies in C, 2nd edition
+[1] Numerical Recipes in C, 2nd edition
 William H. Press, et al.,
 Section 3.3, page 116
 */
@@ -88,7 +88,7 @@ private:
 
 /** @descr this function corresponds to the function spline in [1].
 
-[1] Numerical Recipies in C, 2nd edition
+[1] Numerical Recipes in C, 2nd edition
 William H. Press, et al.,
 Section 3.3, page 115
 */
diff --git a/sc/source/core/data/table6.cxx b/sc/source/core/data/table6.cxx
index 50c5e5127403..d7dcc367117c 100644
--- a/sc/source/core/data/table6.cxx
+++ b/sc/source/core/data/table6.cxx
@@ -569,7 +569,7 @@ bool ScTable::ReplaceAll(
 else
 GetLastDataPos(nLastCol, nLastRow);
 
-// tdf#92160 - columnular replace is faster, and more memory efficient.
+// tdf#92160 - columnar replace is faster, and more memory efficient.
 SvxSearchItem aCopyItem(rSearchItem);
 aCopyItem.SetRowDirection(false);
 
diff --git a/shell/source/cmdmail/cmdmailsuppl.cxx 
b/shell/source/cmdmail/cmdmailsuppl.cxx
index 687bee4a09ff..8e4afb1b333d 100644
--- a/shell/source/cmdmail/cmdmailsuppl.cxx
+++ b/shell/source/cmdmail/cmdmailsuppl.cxx
@@ -234,7 +234,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const 
Reference< XSimpleMailM
 appendShellWord(aBuffer, xSimpleMailMessage->getRecipient(), false);
 }
 
-// Append carbon copy receipients set in the message
+// Append carbon copy recipients set in the message
 Sequence< OUString > aStringList = xSimpleMailMessage->getCcRecipient();
 sal_Int32 n, nmax = aStringList.getLength();
 for ( n = 0; n < nmax; n++ )
@@ -243,7 +243,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const 
Reference< XSimpleMailM
 appendShellWord(aBuffer, aStringList[n], false);
 }
 
-// Append blind carbon copy receipients set in the message
+// Append blind carbon copy recipients set in the message
 aStringList = xSimpleMailMessage->getBccRecipient();
 nmax = aStringList.getLength();
 for ( n = 0; n < nmax; n++ )
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index e4c888e4fb5a..3f6b78ef6932 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -2494,7 +2494,7 @@ void DocxAttributeOutput::RunText( const OUString& rText, 
rtl_TextEncoding /*eCh
 
 void DocxAttributeOutput::RawText(const OUString& rText, rtl_TextEncoding 
/*eCharSet*/)
 {
-assert (m_pHyperlinkAttrList.is() && "jluth is at mail dot comand wants 
example documents that use RawText/EEField");
+assert (m_pHyperlinkAttrList.is() && "jluth is at mail dot com and wants 
example documents that use RawText/EEField");
 if ( m_pHyperlinkAttrList.is() )
 m_sRawText = rText;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114703] FILEOPEN: DOCX: Incorrect numbering alignment (follow-up bug)

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114703

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |vmik...@collabora.co.uk
   |desktop.org |

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


[Libreoffice-bugs] [Bug 113622] Impress can't play MP4 videos (OS X-specific)

2018-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113622

--- Comment #28 from Tor Lillqvist  ---
Hmm, my tests in comment #25 were with a sandboxed build of LO from the 5.4
branch. Now when I tried in a normal master build it doesn't even work for the
video file for which it did work in that earlier test. Sad. Oh well, I doubt I
personally will be able to spend any more time on this bug now.

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


  1   2   3   >