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

2017-12-26 Thread Tomaž Vajngerl
 filter/source/msfilter/escherex.cxx |   30 +-
 1 file changed, 17 insertions(+), 13 deletions(-)

New commits:
commit 5d2141e7004275ed08dc1a8f37bdadd73eca276e
Author: Tomaž Vajngerl 
Date:   Wed Dec 27 11:02:51 2017 +0900

escherex: dynamic_cast followed by static_cast

Change-Id: I551dd671d9ee61a79b4c69f8d593aea2a7e517c6
Reviewed-on: https://gerrit.libreoffice.org/47076
Tested-by: Jenkins 
Reviewed-by: Tomaž Vajngerl 

diff --git a/filter/source/msfilter/escherex.cxx 
b/filter/source/msfilter/escherex.cxx
index cdc634d66647..fc74cf75490f 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -1245,13 +1245,15 @@ bool 
EscherPropertyContainer::CreateOLEGraphicProperties(const uno::Reference 
(pSdrOLE2) )  // no access to the native graphic object
+SdrObject* pObject = GetSdrObjectFromXShape(rXShape); // SJ: leaving 
unoapi, because currently there is
+const SdrOle2Obj* pOle2Obj = pObject == nullptr ? nullptr : 
dynamic_cast(pObject);
+if (pOle2Obj != nullptr) // no access to the native graphic object
 {
-const Graphic* pGraphic = 
static_cast(pSdrOLE2)->GetGraphic();
-if ( pGraphic )
+const Graphic* pGraphic = pOle2Obj->GetGraphic();
+if (pGraphic)
 {
-std::unique_ptr xGraphicObject(new 
GraphicObject(*pGraphic));
+Graphic aGraphic(*pGraphic);
+std::unique_ptr xGraphicObject(new 
GraphicObject(aGraphic));
 bRetValue = CreateGraphicProperties(rXShape, *xGraphicObject);
 }
 }
@@ -1294,10 +1296,11 @@ bool 
EscherPropertyContainer::CreateMediaGraphicProperties(const uno::Reference<
 boolbRetValue = false;
 if ( rXShape.is() )
 {
-SdrObject* pSdrMedia( GetSdrObjectFromXShape( rXShape ) );  // SJ: 
leaving unoapi, because currently there is
-if ( dynamic_cast(pSdrMedia) !=  nullptr )
   // no access to the native graphic object
+SdrObject* pSdrObject(GetSdrObjectFromXShape(rXShape));  // SJ: 
leaving unoapi, because currently there is
+auto* pSdrMediaObj = dynamic_cast(pSdrObject);
+if (pSdrMediaObj != nullptr)   // no access to the native 
graphic object
 {
-std::unique_ptr xGraphicObject(new 
GraphicObject(static_cast(pSdrMedia)->getSnapshot()));
+std::unique_ptr xGraphicObject(new 
GraphicObject(pSdrMediaObj->getSnapshot()));
 bRetValue = CreateGraphicProperties(rXShape, *xGraphicObject);
 }
 }
@@ -4561,8 +4564,8 @@ sal_uInt32 EscherConnectorListEntry::GetConnectorRule( 
bool bFirst )
 
 if (aType == "drawing.Custom")
 {
-SdrObject* pCustoShape( GetSdrObjectFromXShape( aXShape ) );
-if ( dynamic_cast(pCustoShape) !=  
nullptr )
+SdrObject* pCustoShape(GetSdrObjectFromXShape(aXShape));
+if (dynamic_cast(pCustoShape) !=  
nullptr)
 {
 const SdrCustomShapeGeometryItem& rGeometryItem =
 pCustoShape->GetMergedItem( SDRATTR_CUSTOMSHAPE_GEOMETRY );
@@ -4606,15 +4609,16 @@ sal_uInt32 EscherConnectorListEntry::GetConnectorRule( 
bool bFirst )
 }
 else if ( nGluePointType == 
drawing::EnhancedCustomShapeGluePointType::SEGMENTS )
 {
-SdrObject* pPoly = pCustoShape->DoConvertToPolyObj( true, 
true );
-if ( dynamic_cast( pPoly ) !=  nullptr 
)
+SdrObject* pObject = pCustoShape->DoConvertToPolyObj(true, 
true);
+const SdrPathObj* pSdrPathObj = dynamic_cast(pObject);
+if (pSdrPathObj != nullptr)
 {
 sal_Int16 a, b, nIndex = 0;
 sal_uInt32 nDistance = 0x;
 
 // #i74631# use explicit constructor here. Also 
XPolyPolygon is not necessary,
 // reducing to PolyPolygon
-const tools::PolyPolygon 
aPolyPoly(static_cast(pPoly)->GetPathPoly());
+const tools::PolyPolygon 
aPolyPoly(pSdrPathObj->GetPathPoly());
 
 for ( a = 0; a < aPolyPoly.Count(); a++ )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-12-26 Thread Tomaž Vajngerl
 filter/source/msfilter/escherex.cxx |  540 +---
 1 file changed, 267 insertions(+), 273 deletions(-)

New commits:
commit 03b9b00ae7ca132244fc669186e6577bd776c738
Author: Tomaž Vajngerl 
Date:   Wed Dec 27 11:00:55 2017 +0900

escherex: remove css:: and whitespace

Change-Id: If1ec648a3c017b6c7f208ad2ed4fda1abfb0483e
Reviewed-on: https://gerrit.libreoffice.org/47075
Tested-by: Jenkins 
Reviewed-by: Tomaž Vajngerl 

diff --git a/filter/source/msfilter/escherex.cxx 
b/filter/source/msfilter/escherex.cxx
index 578c368dcfe7..cdc634d66647 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -95,8 +95,7 @@
 #include 
 #include 
 
-using namespace ::com::sun::star;
-
+using namespace css;
 
 EscherExContainer::EscherExContainer( SvStream& rSt, const sal_uInt16 
nRecType, const sal_uInt16 nInstance ) :
 rStrm   ( rSt )
@@ -331,7 +330,7 @@ sal_uInt32 EscherPropertyContainer::ImplGetColor( const 
sal_uInt32 nSOColor, boo
 }
 
 sal_uInt32 EscherPropertyContainer::GetGradientColor(
-const css::awt::Gradient* pGradient,
+const awt::Gradient* pGradient,
 sal_uInt32 nStartColor )
 {
 sal_uInt32  nIntensity = 100;
@@ -357,7 +356,7 @@ sal_uInt32 EscherPropertyContainer::GetGradientColor(
 }
 
 void EscherPropertyContainer::CreateGradientProperties(
-const css::awt::Gradient & rGradient )
+const awt::Gradient & rGradient )
 {
 sal_uInt32  nFillType = ESCHER_FillShadeScale;
 sal_uInt32  nAngle = 0;
@@ -369,8 +368,8 @@ void EscherPropertyContainer::CreateGradientProperties(
 
 switch ( rGradient.Style )
 {
-case css::awt::GradientStyle_LINEAR :
-case css::awt::GradientStyle_AXIAL :
+case awt::GradientStyle_LINEAR :
+case awt::GradientStyle_AXIAL :
 {
 nFillType = ESCHER_FillShadeScale;
 nAngle = (rGradient.Angle * 0x1) / 10;
@@ -378,10 +377,10 @@ void EscherPropertyContainer::CreateGradientProperties(
   sal::static_int_cast(GradientStyle::Linear)) ? 
0 : 50;
 }
 break;
-case css::awt::GradientStyle_RADIAL :
-case css::awt::GradientStyle_ELLIPTICAL :
-case css::awt::GradientStyle_SQUARE :
-case css::awt::GradientStyle_RECT :
+case awt::GradientStyle_RADIAL :
+case awt::GradientStyle_ELLIPTICAL :
+case awt::GradientStyle_SQUARE :
+case awt::GradientStyle_RECT :
 {
 nFillLR = (rGradient.XOffset * 0x1) / 100;
 nFillTB = (rGradient.YOffset * 0x1) / 100;
@@ -393,7 +392,7 @@ void EscherPropertyContainer::CreateGradientProperties(
 bWriteFillTo = true;
 }
 break;
-case css::awt::GradientStyle::GradientStyle_MAKE_FIXED_SIZE : break;
+case awt::GradientStyle::GradientStyle_MAKE_FIXED_SIZE : break;
 }
 AddOpt( ESCHER_Prop_fillType, nFillType );
 AddOpt( ESCHER_Prop_fillAngle, nAngle );
@@ -410,49 +409,49 @@ void EscherPropertyContainer::CreateGradientProperties(
 }
 
 void EscherPropertyContainer::CreateGradientProperties(
-const css::uno::Reference< css::beans::XPropertySet > & rXPropSet , bool 
bTransparentGradient)
+const uno::Reference & rXPropSet , bool 
bTransparentGradient)
 {
-css::uno::Any  aAny;
-css::awt::Gradient const * pGradient = nullptr;
+uno::Any aAny;
+awt::Gradient const * pGradient = nullptr;
 
-sal_uInt32  nFillType = ESCHER_FillShadeScale;
-sal_Int32  nAngle = 0;
-sal_uInt32  nFillFocus = 0;
-sal_uInt32  nFillLR = 0;
-sal_uInt32  nFillTB = 0;
-sal_uInt32  nFirstColor = 0;// like the control var nChgColors in import 
logic
-boolbWriteFillTo = false;
+sal_uInt32 nFillType = ESCHER_FillShadeScale;
+sal_Int32 nAngle = 0;
+sal_uInt32 nFillFocus = 0;
+sal_uInt32 nFillLR = 0;
+sal_uInt32 nFillTB = 0;
+sal_uInt32 nFirstColor = 0;// like the control var nChgColors in import 
logic
+bool bWriteFillTo = false;
 
 // Transparency gradient: Means the third setting in transparency page is 
set
 if (bTransparentGradient &&  EscherPropertyValueHelper::GetPropertyValue(
 aAny, rXPropSet, "FillTransparenceGradient" ) )
 {
-pGradient = o3tl::doAccess(aAny);
+pGradient = o3tl::doAccess(aAny);
 
-css::uno::Any  aAnyTemp;
+uno::Any aAnyTemp;
 const rtl::OUString aPropName( "FillStyle" );
 if ( EscherPropertyValueHelper::GetPropertyValue(
 aAnyTemp, rXPropSet, aPropName ) )
 {
-css::drawing::FillStyle eFS;
+drawing::FillStyle eFS;
 if ( ! ( aAnyTemp >>= eFS ) )
-eFS = css::drawing::FillStyle_SOLID;
+eFS = drawing::FillStyle_SOLID;
 // solid and transparency
-if ( eFS == 

[Libreoffice-bugs] [Bug 114272] Some Asian characters are garbled with western fonts.

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114272

--- Comment #10 from Kamei  ---
(In reply to Buovjaga from comment #9)

Thank you very much for testing.
Hiragana is displayed fine anyway, isn't it?

I create new macOS account which environment is very clean, then I tested those
procedure.
But Hiragana is still displayed □ on typing with ⌘ and/or ⌥.
It occurs to me that this issue is caused by too much fonts that I installed
additionally.
I'm trying to inspect more.

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


[Libreoffice-bugs] [Bug 109158] slower loading of a huge AutoCorrect replacement table

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109158

tommy27  changed:

   What|Removed |Added

 CC||nthieb...@gmail.com

--- Comment #17 from tommy27  ---
bad performance affects LibO 6.1.x master too.
it still takes 23 seconds to load the list

the same list is loaded in 8 seconds with LibO 5.3.6.1

unfortunately the issue is present in the 5.4.x branch as well with 23 seconds
to load the list using LibO 5.4.3.2

this means that something caused a 3x slower performance in the 5.4.x and
master branches in respect to the 5.3.x branch.

a bibisect has been performed by telesto (see comment 13) so I gently ask to
the developers to give a look at it

@Norbert Thiebaud
would you please take a look at the bibisect log?

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


[Libreoffice-bugs] [Bug 93433] incomplete display of long autocorrect list in the replacement table and possible data loss when saving

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93433

--- Comment #48 from tommy27  ---
incomplete load issue still present in LibO 6.1.0.0.alpha0+
Build ID: 075b5ad5bdd230738ee30b0ea17a7fa9502c218b
CPU threads: 4; OS: Windows 6.3; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-12-22_00:40:12
Locale: it-IT (it_IT); Calc: group threaded

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


[Libreoffice-bugs] [Bug 111763] Digital signature not working under windows 10 creator (1703)

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111763

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #3 from Xisco Faulí  ---
(In reply to Buovjaga from comment #2)
> If I use this cmdlet that is shipped with Powershell, what should I do to
> generate such a certificate and be able to import it to IE?
> https://technet.microsoft.com/en-us/itpro/powershell/windows/pkiclient/new-
> selfsignedcertificate

Dear Andrew McGee,
Could you please answer the question above?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the question is answered

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


[Libreoffice-bugs] [Bug 112485] [META] Line shape and line-level bugs and enhancements

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112485
Bug 112485 depends on bug 111723, which changed state.

Bug 111723 Summary: Line and Area dialogs do not remember which tab page was 
opened last time
https://bugs.documentfoundation.org/show_bug.cgi?id=111723

   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 94722] [META] Object fill bugs and enhancements

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94722
Bug 94722 depends on bug 111723, which changed state.

Bug 111723 Summary: Line and Area dialogs do not remember which tab page was 
opened last time
https://bugs.documentfoundation.org/show_bug.cgi?id=111723

   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 113104] MacOS: CPU utilization while scrolling through a plain text document is around 90%

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113104

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #2 from Xisco Faulí  ---
Hi Telesto,
Is this issue still reproducible in 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 107273] horizontal scroll bar moves to wrong side when using touch pad

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107273

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #7 from Xisco Faulí  ---
I guess we can move it to NEW based on comment 6.

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


[Libreoffice-bugs] [Bug 107273] horizontal scroll bar moves to wrong side when using touch pad

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107273

--- Comment #8 from Xisco Faulí  ---
Could it be possible to record a screencast ?

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


[Libreoffice-bugs] [Bug 114708] Error installing extension with a space in the filename

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114708

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||xiscofa...@libreoffice.org
Version|5.3.5.2 release |Inherited From OOo
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Reproduced in

Version: 6.1.0.0.alpha0+
Build ID: 2bf1cc7372088ec31ac5f0fb60de57feda59d3b7
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group threaded

and

LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

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


[Libreoffice-bugs] [Bug 114708] Error installing extension with a space in the filename

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114708

--- Comment #2 from Xisco Faulí  ---
Created attachment 138675
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138675=edit
sample extension

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


[Libreoffice-bugs] [Bug 111769] Black is set as New color in Area tab when a table with multiple colors in its cells is selected

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111769

Tamás Zolnai  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |zolnaitamas2...@gmail.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 111417] PPTX: TextBox activeX control locked / read only property is not imported

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111417

Tamás Zolnai  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |zolnaitamas2...@gmail.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 111786] PPTX export: Shape's line transparency is not exported

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111786

Tamás Zolnai  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |zolnaitamas2...@gmail.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 114704] Crash when texts containing certain CJK characters are printed or exported to pdf

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114704

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #3 from Xisco Faulí  ---
I can't reproduce it in

Versió: 5.4.3.2
ID de la construcció: 1:5.4.3~rc2-0ubuntu0.17.04.1~lo1
Fils de CPU: 4; SO: Linux 4.10; Renderitzador de la IU: per defecte; VCL: gtk3; 
Configuració local: ca-ES-valencia (ca_ES.UTF-8); Calc: group

To be certain the reported issue is not
related to corruption in the user profile, could you please reset your
Libreoffice profile ( https://wiki.documentfoundation.org/UserProfile ) and
re-test?

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

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


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

2017-12-26 Thread ekuiitr
 cui/source/tabpages/tabarea.cxx |2 --
 cui/source/tabpages/tabline.cxx |2 --
 2 files changed, 4 deletions(-)

New commits:
commit b426b026b79a342c41f6f148bf17d5df66b22927
Author: ekuiitr 
Date:   Sun Dec 24 22:51:43 2017 +0800

tdf#111723 Fixed -  Dialog does not remember the last opened tab page

Change-Id: Ife6d0eb9ea13d2a0534f316db001dbb3b6a716eb
Reviewed-on: https://gerrit.libreoffice.org/47050
Reviewed-by: Tamás Zolnai 
Tested-by: Tamás Zolnai 

diff --git a/cui/source/tabpages/tabarea.cxx b/cui/source/tabpages/tabarea.cxx
index f1dbfc6417bb..97135d944270 100644
--- a/cui/source/tabpages/tabarea.cxx
+++ b/cui/source/tabpages/tabarea.cxx
@@ -80,8 +80,6 @@ SvxAreaTabDialog::SvxAreaTabDialog
 
 m_nTransparenceTabPage = AddTabPage( "RID_SVXPAGE_TRANSPARENCE", 
SvxTransparenceTabPage::Create,  nullptr);
 
-SetCurPageId( "RID_SVXPAGE_AREA" );
-
 CancelButton& rBtnCancel = GetCancelButton();
 rBtnCancel.SetClickHdl( LINK( this, SvxAreaTabDialog, CancelHdlImpl ) );
 }
diff --git a/cui/source/tabpages/tabline.cxx b/cui/source/tabpages/tabline.cxx
index 21d64d055743..df0938f6b79a 100644
--- a/cui/source/tabpages/tabline.cxx
+++ b/cui/source/tabpages/tabline.cxx
@@ -93,8 +93,6 @@ SvxLineTabDialog::SvxLineTabDialog
 m_nStyleTabPage = AddTabPage( "RID_SVXPAGE_LINE_DEF", 
SvxLineDefTabPage::Create, nullptr);
 m_nEndTabPage = AddTabPage( "RID_SVXPAGE_LINEEND_DEF", 
SvxLineEndDefTabPage::Create, nullptr);
 
-SetCurPageId( "RID_SVXPAGE_LINE" );
-
 CancelButton& rBtnCancel = GetCancelButton();
 rBtnCancel.SetClickHdl( LINK( this, SvxLineTabDialog, CancelHdlImpl ) );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 112315] Added links to images in modified Illustration Index are lost after updating the Index , Updating all or closing and reopening the document

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112315

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #3 from Xisco Faulí  ---


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

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


[Libreoffice-bugs] [Bug 114582] Calc stops autorecalc

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114582

Elmar  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #5 from Elmar  ---
Interesting. I wonder how that happened. Thank you. Did not see that.

== should produce an error - i did not find in the docum any reference to what
such a 

When I tried to remove the double == it kept on putting it back.
So I deleted the contents of cells and copied the columns to a new workbook
The the problem was solved.
Row 144 then gave me error 522, which I cleared by setting Iterations on.
However, I do not understand why that should be, since the simple addition in
row 144 should not have a problem if the formulas in rows 145-149 produce
results (and they are the ones that involve ranges)

Actually, if I think about that. It does make sense - you cannot resolve row
144 until rows 145-149 have been calculated.
However, why does row 143 not give the same error?

Also: the calculation still doe not happen - for example if I add a "C" in row
137, it is increment row 146 by 1. It does not. But in version5.4 it does.

If I then save the v5.4 file and open it in v6.1dev, it seems to work fine -
maybe the DEV file was corrupted at some point?

I then created an empty workbook in v6.1dev and copied the columns from the
working sheet to the new workbook. Seems to work.

So will try it out again over the next few days.

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


[Libreoffice-bugs] [Bug 105624] Hyperlinks in "Index or Table of Contents", type " Index of Tables" or "Illustration Index" get lost with saving and reloading the document

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105624

--- Comment #8 from KerryGee  ---
@ Jhonny M: Its not! The bug still persists in the latest 5.3.7 and 5.4.4
builds at the time i am writing this. Its really annoying, big time!

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


[Libreoffice-bugs] [Bug 96219] FILEOPEN: MSO DOCX image incorrectly placed when using Top Margin Position

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96219

--- Comment #11 from Luke  ---
Still reproducible with Version: 6.1.0.0.alpha0+ (x64)
Build ID: bf8e8cf11bc0d60ab80f5b3420dc424aec2fa626

The DOCX importer is still incorrectly mapping the positing to "Margin" instead
of "Entire Page".

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


[Libreoffice-bugs] [Bug 104827] FILESAVE DOC: Justified Text with Section Breaks Incorrectly Exported

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104827

--- Comment #7 from Luke  ---
Still reproducible with Version: 6.1.0.0.alpha0+ (x64)
Build ID: bf8e8cf11bc0d60ab80f5b3420dc424aec2fa626

by roundtripping attachment 129833 and opening in Word.

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


[Libreoffice-bugs] [Bug 108497] Converting OpenType Font Variation instances before printing and exporting to PDF

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108497

--- Comment #6 from Volga  ---
Created attachment 138674
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138674=edit
Test file.

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


[Libreoffice-bugs] [Bug 114708] New: Error installing extension with a space in the filename

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114708

Bug ID: 114708
   Summary: Error installing extension with a space in the
filename
   Product: LibreOffice
   Version: 5.3.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Extensions
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: m...@walkjivefly.com

Description:
If you attempt to install an extension with a space in the filename LibreOffice
throws an error like this:

(com.sun.star.uno.RuntimeException) { { Message = ":
[Errno 2] No such file or directory:
'/home/mark/.config/libreoffice/4/user/uno_packages/cache/uno_packages/lu25024oiu60e.tmp_/LOC%20(1).oxt/loc.py',
traceback follows\X000a  /usr/lib/libreoffice/program/pythonloader.py:94 in
function getModuleFromUrl() [fileHandle = open( filename, encoding='utf_8'
)]\X000a  /usr/lib/libreoffice/program/pythonloader.py:149 in function
writeRegistryInfo() [mod = self.getModuleFromUrl( locationUrl )]\X000a\X000a",
Context = (com.sun.star.uno.XInterface) @0 } }

The space in the filename is introduced by the user's browser when downloading
an ectension and a previous version still exists in the download location. The
workaround is to remove previous versions before downloading a new extension or
to manually rename the file after downloading. The bracketed number is not a
problem; it is specifically the space in the name which causes LibreOffice a
problem.

The extension partially fails to install. It does not show up in the list of
installed extensions but if you attempt to install an extension with the same
version number it will say the extension is already installed and ask whether
to replace it.

Steps to Reproduce:
1. Download any extension. Download it again (resulting in a name like "LOC
(1).ext"
2. Try to install it.
3. LibreOffice throws an error.

Actual Results:  
Extension is partially installed. It doesn't appear in the list of installed
extensions and cannot be used, but attempting to install a well-named extension
with the same version number says the extension is already installed.

Expected Results:
Handle a filename with embedded spaces gracefully.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Either make it work, or explain it will not work and do not leave the extension
in an inconsistent state.

Version: 5.1.6.2
Build ID: 1:5.1.6~rc2-0ubuntu1~xenial2
CPU Threads: 2; OS Version: Linux 4.10; UI Render: default; 
Locale: en-GB (en_GB.UTF-8); Calc: group

and
Version: 5.3.5.2
Build ID: 50d9bf2b0a79cdb85a3814b592608037a682059d
CPU threads: 4; OS: Linux (misparsed version); UI render: default; VCL: kde4;
Layout Engine: new; 
Locale: en-GB (en_GB.UTF-8); Calc: group


User-Agent: Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/46.0.2490.71 Safari/537.36

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


[Libreoffice-bugs] [Bug 114251] Hang loading spreadsheet

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

Jim Avera  changed:

   What|Removed |Added

 Attachment #138673|hang2.ods -- second demo|hang2.ods - see comment #19
description|spreadsheet |

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


[Libreoffice-bugs] [Bug 114251] Hang loading spreadsheet

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

--- Comment #19 from Jim Avera  ---
Unfortunately something is still wrong.  I downloaded master, built 
2017-12-25_23:59:18 (I don't know for certain that it has the patches, but
several days have elapsed).

The original "hang.ods" no longer hangs when loading, 
but a newer version of that spreadsheet (attached) does

STEPS TO REPRODUCE:

1. Download the attached "hang2.ods" (not hang.ods)
2. /path/to/soffice hang2.ods
3. If prompted about macros, click "Disable Macros"

(Hangs with empty white window.  
Does not respond to clicking the window-manager close button)

4. ^C to kill the hung process
5. /path/to/soffice hang2.ods
6. When prompted to send crash report, click "Don't Send".
7. If prompted, click "Disable Macros"

pure virtual method called
pure virtual method called
terminate called recursively
terminate called without an active exception

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


[Libreoffice-bugs] [Bug 114251] Hang loading spreadsheet

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

--- Comment #18 from Jim Avera  ---
Created attachment 138673
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138673=edit
hang2.ods -- second demo spreadsheet

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


[Libreoffice-bugs] [Bug 114707] New: Document is created with "portrait" orientation, but prints as "landscape, " even though commands are not changed and preview shows portrait.

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114707

Bug ID: 114707
   Summary: Document is created with "portrait" orientation, but
prints as "landscape," even though commands are not
changed and preview shows portrait.
   Product: LibreOffice
   Version: 5.4.3.2 release
  Hardware: x86 (IA32)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cmcnall...@gmail.com

Description:
I have my LibreOffice set up with portrait orientation as the default. However,
over the past several weeks, when I set up to print a document I created in
LibreOffice, it is printed in landscape orientation. (Generally, documents I'm
printing from online sources do print in portrait; this seems to be mostly a
problem of documents I have created.) I have not changed commands and don't
want the landscape orientation. Print preview shows it in portrait orientation.

Steps to Reproduce:
1.Create an original document in LibreOffice.
2.Hit the print command. 
3.

Actual Results:  
The document is printed in landscape orientation rather than portrait, as
requested.

Expected Results:
Printed the document in portrait orientation, which is where the settings were.


Reproducible: Always


User Profile Reset: No



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 114080] FILESAVE: "Save as Text" doesn' t put end-of-line after each line shown on screen

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114080

--- Comment #25 from Jay Michael  ---
Created attachment 138672
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138672=edit
macro to save current document as text, with hard line breaks

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


[Libreoffice-bugs] [Bug 114080] FILESAVE: "Save as Text" doesn' t put end-of-line after each line shown on screen

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114080

--- Comment #24 from Jay Michael  ---
 (I couldn't see how to delete a fumbled comment.)

 When I originally asked about this on ask.libreoffice.org,
https://ask.libreoffice.org/en/question/137329/feature-request-save-as-text-with-line-breaks/
librebel offered me the BASIC source for a macro that would save the current
document as a text file, with a hard return at the end of each line as the line
appeared on the screen in LibreOffice Write.

 I added a "Save as..." dialog.

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


[Libreoffice-bugs] [Bug 114080] FILESAVE: "Save as Text" doesn' t put end-of-line after each line shown on screen

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114080

--- Comment #23 from Jay Michael  ---
 When I originally asked about this on ask.libreoffice.org,
https://ask.libreoffice.org/en/question/137329/feature-request-save-as-text-with-line-breaks/
librebel offered me the BASIC

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


[Libreoffice-bugs] [Bug 104933] EDITING: Find and replace does not apply formulas when replacing blank cells

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104933

--- 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 70624] index order depend on the screen zoom and on chapter position

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70624

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 104891] PDF export of PPTX with all slides hidden returns error

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104891

--- 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 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

--- 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 69741] UNDO after rotation causes text to change from one line to two.

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69741

--- Comment #5 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 85170] FillAuto doesn't fill formulas in hidden columns

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85170

--- Comment #12 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 67764] FORMATTING: Spaces removed when pasting from windows clipboard data stored as HTML format

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67764

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 89673] EDITING - can' t use the regular context menu on misspelled words

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89673

--- Comment #5 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 114706] Pasting some paragraphs of text into another paragraph as unformatted text not correct

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114706

Kevin Suo  changed:

   What|Removed |Added

Summary|Pasting some paragraphs of  |Pasting some paragraphs of
   |text into another paragraph |text into another paragraph
   |not correct |as unformatted text not
   ||correct

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


[Libreoffice-bugs] [Bug 114706] New: Pasting some paragraphs of text into another paragraph not correct

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114706

Bug ID: 114706
   Summary: Pasting some paragraphs of text into another paragraph
not correct
   Product: LibreOffice
   Version: 6.0.0.1 rc
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: suokunl...@126.com

Steps to Reproduce:

1. Create a new Writer document with the following content. 
mmm
n
o

aaa
b


2. Copy the abc paragraphs, then paste at the beginning of the m parapraph as
unformatted text (Ctrl+Shift+V -> Unformatted Text).

Current Result:
aaammm
b

n
o

Expected Result:
aaa
b
mmm
n
o

3. UNDO.

Current Result:

n
o

Expected Result:
mmm
n
o

Version: 6.0.0.1.0+
Build ID:29840645e2cb8231040bcbac1b1fe98f494c92c9
CPU Threads:4; OS:Linux 4.14; UI Render:Default; VCL: gtk2; 
Locale:zh-CN (zh_CN.UTF-8); Calc: group

Version: 5.4.4.2
Build ID:5.4.4.2-1.fc27
CPU Threads:4; 操作系统:Linux 4.14; UI Render:Default; VCL: gtk3; 
Locale:zh-CN (zh_CN.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 90486] [META] Chart bugs and enhancements

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||110993


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=110993
[Bug 110993] Chart produces incorrect graph w/ some negative points when using
large positive values in source cells
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 110993] Chart produces incorrect graph w/ some negative points when using large positive values in source cells

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=110993

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||90486


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90486
[Bug 90486] [META] Chart 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 114668] Inconsistent labels and titles of classification dialogs

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114668

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||113108


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113108
[Bug 113108] [META] Dialog UI/UX 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 113108] [META] Dialog UI/UX bugs and enhancements

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113108

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||114668


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114668
[Bug 114668] Inconsistent labels and titles of classification dialogs
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||114657


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114657
[Bug 114657] FILESAVE: Chart Data Series lost on save (XLSX)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114657] FILESAVE: Chart Data Series lost on save (XLSX)

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114657

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||75057


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] OOXML Chart object issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113969] [META] Bugs to reduce localization efforts by translators

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113969

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||114696


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114696
[Bug 114696] Compound string in Calc: "Total " + "Result"
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114696] Compound string in Calc: "Total " + "Result"

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114696

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||113969


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113969
[Bug 113969] [META] Bugs to reduce localization efforts by translators
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108770] [META] DOCX (OOXML) bullet and numbering list-related issues

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108770

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||114703


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114703
[Bug 114703] FILEOPEN: DOCX: Incorrect numbering alignment (follow-up bug)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114703

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108770


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108770
[Bug 108770] [META] DOCX (OOXML) bullet and numbering list-related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||114681


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114681
[Bug 114681] No support for Glagolitic in LibreOffice
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114681] No support for Glagolitic in LibreOffice

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114681

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||71732


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=71732
[Bug 71732] [META] Bugs related to text rendering, typography and font features
in LO
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114489] Checkbox source format in chart "format label" menu not checked after checking it previously in the "format label" menu

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114489

Markus Mohrhard  changed:

   What|Removed |Added

  Component|Calc|Chart

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


[Libreoffice-bugs] [Bug 108901] enhancement: when logarithmic axis, additional number format 10^1...

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108901

--- Comment #2 from Francisco  ---
(In reply to Xisco Faulí from comment #1)
> I guess we can close this as a dupe of bug 39052 as the ideal solution would
> be to add the whole formatting dialog.
> For the time being, there's a workaround for your problem:
> https://ask.libreoffice.org/en/question/72370/how-can-i-add-
> superscriptsubscript-in-chart-calc/
> 
> *** This bug has been marked as a duplicate of bug 39052 ***

Xisco:

I doubt that what Lur is asking it's actually not possible. He's talking about
the numeric formatting of the axis number, which is different from the
character formatting of the chart and axis titles.

As far as I understand he's talking about the real formatting of an exponential
number: 1×10^3 instead of 1E3.
That isn't actually an available formatting for cell numbers (maybe with a
complex custom numeric format which I haven't been able to do yet).
So, what he asks is that, with a log scale, the axis number should pass from:

1E0 1E1 1E2 1E3

to

1   10  10^210^3

that is a completely different from the individual character formatting of the
axis and chart titles.

I really suggest to eliminate the duplicate label in this case.

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


[Libreoffice-bugs] [Bug 101733] Personalization not working

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101733

--- Comment #12 from David Melik  ---
>Looks like the problem described from comment 7 on is a new one, related to 
>>changes in the Mozilla Addons website structure.

No! I was commenter referred to by 'on' (the comment after #7) but am replying
to the original bug report!  It's not like I'm a Millennial using Thunderbird
for Android, Windows Phone, or even any portable PC... my situation was
slightly different but will just go to show this is a wider bug than you knew,
because the difference is I've mostly used Thunderbird on workstations with
Unix or the most Unix-like (oldest surviving) GNU/Linux, and I have the exact
same problem as the original bug report (I now see was for Windows.)

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


[Libreoffice-bugs] [Bug 108253] [META] Calc cell formula bugs and enhancements

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108253

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||54022


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=54022
[Bug 54022] Iteration Default Minimum (0.001) Causes Error 523
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54022] Iteration Default Minimum (0.001) Causes Error 523

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54022

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108253


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108253
[Bug 108253] [META] Calc cell formula 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 114702] Loop executing direct SQL

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114702

--- Comment #2 from Terrence Enger  ---
Created attachment 138671
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138671=edit
tail of terminal output from bibisect

Working on debian-buster in the recently retired daily Linux dbgutil
bibisect repository, I see that the bug entered LO somewhere in the
41 or so commits:

  commitdates-h
    --  
good  e73ca17e  2017-09-24  722161e2
bad   cc32ba82  2017-09-25  40892cd3

Commit fe0f1dba "Use a ref for arg of DirectSQLDialog::display"
catches my attention.  Julien, are you interested?

I am adding keywords regression, bibisected.

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


[Libreoffice-bugs] [Bug 53505] LibreOffice icons are larger than other app' s icons in GNOME Classic

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53505

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||106228


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 106228] [META] Icon theme issues

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106228

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||53505


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=53505
[Bug 53505] LibreOffice icons are larger than other app's icons in GNOME
Classic
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114702] Loop executing direct SQL

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114702

Terrence Enger  changed:

   What|Removed |Added

   Keywords||bibisected, regression
 CC||serval2...@yahoo.fr

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


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - 2 commits - extensions.lst

2017-12-26 Thread Andrea Pescetti
 extensions.lst |   20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

New commits:
commit 283f9bd000c187fe29edc04a23fcaf0da7459ece
Author: Andrea Pescetti 
Date:   Tue Dec 26 22:02:37 2017 +

#i127637# Sort components for languages that need multiple OXT files.

diff --git a/extensions.lst b/extensions.lst
index 881b69982889..fadba4b8d02e 100644
--- a/extensions.lst
+++ b/extensions.lst
@@ -38,11 +38,6 @@
 # [ language=all && ENABLE_XXX ]
 #file://XXX.oxt
 
-# Danish dictionary and synonyms
-[ language=da ]
-b38cba04b6513dd42b031199d617cce6 
https://sourceforge.net/projects/aoo-extensions/files/1388/12/DanskeSynonymer.oxt/download
 "danske-synonymer.oxt"
-6ee1e24fb17e44577d8e3200f3e44adc 
https://sourceforge.net/projects/aoo-extensions/files/1429/6/dict-da-current.oxt/download
 "dict-da.oxt"
-
 # Asturian dictionary
 [ language=ast ]
 931373dea3bed9621dd55713b53b38ae 
https://sourceforge.net/projects/aoo-extensions/files/3932/2/ort_ast_20150417_2259.oxt/download
 "dict-ast.oxt"
@@ -59,6 +54,11 @@
 [ language=ca_XR ]
 6112a73444a1ad3cf70736649e228f0f 
https://sourceforge.net/projects/aoo-extensions/files/1395/0/dict_valencian_llit.oxt/download
 "dict-ca_xr.oxt"
 
+# Danish dictionary and synonyms
+[ language=da ]
+6ee1e24fb17e44577d8e3200f3e44adc 
https://sourceforge.net/projects/aoo-extensions/files/1429/6/dict-da-current.oxt/download
 "dict-da.oxt"
+b38cba04b6513dd42b031199d617cce6 
https://sourceforge.net/projects/aoo-extensions/files/1388/12/DanskeSynonymer.oxt/download
 "danske-synonymer.oxt"
+
 # German dictionary
 [ language=de || language=de_DE || language=nl || language=ru ]
 ea35a6a6761655107da3e99ee56c171f 
https://sourceforge.net/projects/aoo-extensions/files/1075/15/dict-de_de-frami_2017-01-12.oxt/download
 "dict-de_de.oxt"
@@ -97,8 +97,8 @@
 
 # Hungarian dictionary and grammar checker
 [ language=hu ]
-76345f925e34fef2d29bade4f29108e9 
https://sourceforge.net/projects/aoo-extensions/files/3423/4/lightproof-hu_HU-1.3.oxt/download
 "lightproof-hu_hu.oxt"
 d320e43e815c2dfd599dbfb7cd0e41fb 
https://sourceforge.net/projects/aoo-extensions/files/1283/9/dict-hu.oxt/download
 "dict-hu.oxt"
+76345f925e34fef2d29bade4f29108e9 
https://sourceforge.net/projects/aoo-extensions/files/3423/4/lightproof-hu_HU-1.3.oxt/download
 "lightproof-hu_hu.oxt"
 
 # Italian dictionary
 [ language=it || language=de || language=de_DE ]
commit f2525d80a4ae4425bc43a1b43b96026294f29352
Author: Andrea Pescetti 
Date:   Tue Dec 26 21:14:26 2017 +

#i127637# Standardize on lowercase filenames for all bundled extensions.

diff --git a/extensions.lst b/extensions.lst
index 8dac95593825..881b69982889 100644
--- a/extensions.lst
+++ b/extensions.lst
@@ -40,7 +40,7 @@
 
 # Danish dictionary and synonyms
 [ language=da ]
-b38cba04b6513dd42b031199d617cce6 
https://sourceforge.net/projects/aoo-extensions/files/1388/12/DanskeSynonymer.oxt/download
 "DanskeSynonymer.oxt"
+b38cba04b6513dd42b031199d617cce6 
https://sourceforge.net/projects/aoo-extensions/files/1388/12/DanskeSynonymer.oxt/download
 "danske-synonymer.oxt"
 6ee1e24fb17e44577d8e3200f3e44adc 
https://sourceforge.net/projects/aoo-extensions/files/1429/6/dict-da-current.oxt/download
 "dict-da.oxt"
 
 # Asturian dictionary
@@ -97,7 +97,7 @@
 
 # Hungarian dictionary and grammar checker
 [ language=hu ]
-76345f925e34fef2d29bade4f29108e9 
https://sourceforge.net/projects/aoo-extensions/files/3423/4/lightproof-hu_HU-1.3.oxt/download
 "lightproof-hu_HU-1.3.oxt"
+76345f925e34fef2d29bade4f29108e9 
https://sourceforge.net/projects/aoo-extensions/files/3423/4/lightproof-hu_HU-1.3.oxt/download
 "lightproof-hu_hu.oxt"
 d320e43e815c2dfd599dbfb7cd0e41fb 
https://sourceforge.net/projects/aoo-extensions/files/1283/9/dict-hu.oxt/download
 "dict-hu.oxt"
 
 # Italian dictionary
@@ -120,6 +120,10 @@
 [ language=nl ]
 5c0de383ef649cffefc128cfb36b4d43 
https://sourceforge.net/projects/aoo-extensions/files/1456/6/nl-dict-v2.00g.oxt/download
 "dict-nl.oxt"
 
+# Norwegian dictionary
+[ language=nb ]
+c06841f7f193e4f083482440999d801b 
https://sourceforge.net/projects/aoo-extensions/files/1216/2/dictionary-no-no-2.2.oxt/download
 "dict-no_no.oxt"
+
 # Polish dictionary
 [ language=pl ]
 a69f9221864b1360e38ff3f0b0cc9222 
https://sourceforge.net/projects/aoo-extensions/files/806/4/pl-dict.oxt/download
 "dict-pl.oxt"
@@ -144,10 +148,6 @@
 [ language=sl ]
 a95158fff7aa901938b9bc67c4937a88 
https://sourceforge.net/projects/aoo-extensions/files/3280/10/pack-sl.oxt/download
 "dict-sl.oxt"
 
-# Norwegian dictionary
-[ language=nb ]
-c06841f7f193e4f083482440999d801b 
https://sourceforge.net/projects/aoo-extensions/files/1216/2/dictionary-no-no-2.2.oxt/download
 "dict-no_no.oxt"
-
 # Swedish dictionary
 [ language=sv ]
 32ab4edf1496a7cf5469ee1643eb0128 
https://sourceforge.net/projects/aoo-extensions/files/5959/1/dict-sv.oxt/download
 

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

2017-12-26 Thread Julien Nabet
 dbaccess/source/core/api/KeySet.cxx |  140 ++--
 1 file changed, 58 insertions(+), 82 deletions(-)

New commits:
commit a9b202a6b7000e7af34f2a639ca207122a3968bf
Author: Julien Nabet 
Date:   Tue Dec 26 19:35:13 2017 +0100

Use for-range loops in dbaccess/KeySet (2nd pass)

+ remove an unused var

Change-Id: I62659f4ca5ac734f46d00e59b12fb6f54a177ecb
Reviewed-on: https://gerrit.libreoffice.org/47071
Reviewed-by: Noel Grandin 
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 

diff --git a/dbaccess/source/core/api/KeySet.cxx 
b/dbaccess/source/core/api/KeySet.cxx
index 61b20adc8b4d..32007654544b 100644
--- a/dbaccess/source/core/api/KeySet.cxx
+++ b/dbaccess/source/core/api/KeySet.cxx
@@ -199,18 +199,15 @@ void OKeySet::findTableColumnsMatching_throw(   const 
Any& i_aTable,
 ::dbtools::throwGenericSQLException("Could not find any key column.", 
*this );
 }
 
-for (   SelectColumnsMetaData::const_iterator keyColumn = 
o_pKeyColumnNames->begin();
-keyColumn != o_pKeyColumnNames->end();
-++keyColumn
-)
+for (auto const& keyColumn : *o_pKeyColumnNames)
 {
-if ( !xTblColumns->hasByName( keyColumn->second.sRealName ) )
+if ( !xTblColumns->hasByName( keyColumn.second.sRealName ) )
 continue;
 
-Reference xProp( xTblColumns->getByName( 
keyColumn->second.sRealName ), UNO_QUERY );
+Reference xProp( xTblColumns->getByName( 
keyColumn.second.sRealName ), UNO_QUERY );
 bool bAuto = false;
 if ( ( xProp->getPropertyValue( PROPERTY_ISAUTOINCREMENT ) >>= bAuto ) 
&& bAuto )
-m_aAutoColumns.push_back( keyColumn->first );
+m_aAutoColumns.push_back( keyColumn.first );
 }
 }
 
@@ -256,23 +253,21 @@ OUStringBuffer OKeySet::createKeyFilter()
 OUStringBuffer aFilter;
 // create the where clause
 Reference xMeta = m_xConnection->getMetaData();
-SelectColumnsMetaData::const_iterator aPosEnd = m_pKeyColumnNames->end();
-for(SelectColumnsMetaData::const_iterator aPosIter = 
m_pKeyColumnNames->begin();aPosIter != aPosEnd; ++aPosIter)
+for (auto const& keyColumnName : *m_pKeyColumnNames)
 {
 if ( ! aFilter.isEmpty() )
 aFilter.append(aAnd);
-appendOneKeyColumnClause(::dbtools::quoteTableName(xMeta, 
aPosIter->second.sTableName, ::dbtools::EComposeRule::InDataManipulation),
- ::dbtools::quoteName(aQuote, 
aPosIter->second.sRealName),
+appendOneKeyColumnClause(::dbtools::quoteTableName(xMeta, 
keyColumnName.second.sTableName, ::dbtools::EComposeRule::InDataManipulation),
+ ::dbtools::quoteName(aQuote, 
keyColumnName.second.sRealName),
  *aIter++,
  aFilter);
 }
-aPosEnd = m_pForeignColumnNames->end();
-for(SelectColumnsMetaData::const_iterator aPosIter = 
m_pForeignColumnNames->begin(); aPosIter != aPosEnd; ++aPosIter)
+for (auto const& foreignColumnName : * m_pForeignColumnNames)
 {
 if ( ! aFilter.isEmpty() )
 aFilter.append(aAnd);
-appendOneKeyColumnClause(::dbtools::quoteTableName(xMeta, 
aPosIter->second.sTableName, ::dbtools::EComposeRule::InDataManipulation),
- ::dbtools::quoteName(aQuote, 
aPosIter->second.sRealName),
+appendOneKeyColumnClause(::dbtools::quoteTableName(xMeta, 
foreignColumnName.second.sTableName, 
::dbtools::EComposeRule::InDataManipulation),
+ ::dbtools::quoteName(aQuote, 
foreignColumnName.second.sRealName),
  *aIter++,
  aFilter);
 }
@@ -612,20 +607,17 @@ void OKeySet::insertRow( const ORowSetRow& 
_rInsertRow,const connectivity::OSQLT
 OUStringBuffer aValues(" VALUES ( ");
 OUString aQuote = getIdentifierQuoteString();
 
-SelectColumnsMetaData::const_iterator aIter = m_pColumnNames->begin();
-SelectColumnsMetaData::const_iterator aEnd = m_pColumnNames->end();
-sal_Int32 j = 1;
 bool bRefetch = true;
 bool bModified = false;
-for(;aIter != aEnd;++aIter,++j)
+for (auto const& columnName : *m_pColumnNames)
 {
-if((_rInsertRow->get())[aIter->second.nPosition].isModified())
+if((_rInsertRow->get())[columnName.second.nPosition].isModified())
 {
 if ( bRefetch )
 {
-bRefetch = 
std::find(m_aFilterColumns.begin(),m_aFilterColumns.end(),aIter->second.sRealName)
 == m_aFilterColumns.end();
+bRefetch = 
std::find(m_aFilterColumns.begin(),m_aFilterColumns.end(),columnName.second.sRealName)
 == m_aFilterColumns.end();
 }
-aSql.append(::dbtools::quoteName( aQuote,aIter->second.sRealName) 
+ ",");
+

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

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89606
Bug 89606 depends on bug 105624, which changed state.

Bug 105624 Summary: Hyperlinks in "Index or Table of Contents", type "Index of 
Tables" or "Illustration Index" get lost with saving and reloading the document
https://bugs.documentfoundation.org/show_bug.cgi?id=105624

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 107733] [META] Hyperlink bugs and enhancements

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107733
Bug 107733 depends on bug 105624, which changed state.

Bug 105624 Summary: Hyperlinks in "Index or Table of Contents", type "Index of 
Tables" or "Illustration Index" get lost with saving and reloading the document
https://bugs.documentfoundation.org/show_bug.cgi?id=105624

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 105624] Hyperlinks in "Index or Table of Contents", type " Index of Tables" or "Illustration Index" get lost with saving and reloading the document

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105624

Johnny_M  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||kla...@partyheld.de
 Resolution|--- |DUPLICATE

--- Comment #7 from Johnny_M  ---
Looks like a duplicate of what should be fixed now.

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

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


[Libreoffice-bugs] [Bug 114705] New: Images distorted after export to PDF from Writer with enabled JPG-compression if OpenGL ist active

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114705

Bug ID: 114705
   Summary: Images distorted after export to PDF from Writer with
enabled JPG-compression if OpenGL ist active
   Product: LibreOffice
   Version: 5.4.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: christoph.webm...@gmx.de

Description:
If I export a writer document with embedded images to a pdf, some of them get
distorted using the standard-export-settings. If I deactivate the
jpg-compression inside the export dialog, the images get not distorted. The
same happens if I let the jpg-compression activated but deactivate OpenGL. The
bug was adressed in further versions and was announced to be fixed
(https://www.bitblokes.de/libreoffice-5-1-rc1-ist-verfuegbar-kuemmert-sich-um-schusterjungen-und-hurenkinder/,
" Weiterhin sollen Bilder bei einem PDF-Export nicht mehr verzerrt werden, wenn
OpenGL aktiviert ist"), but it seems like it still exists in 5.3.7 and 5.4.4.

Steps to Reproduce:
1. Create a writer document with embedded images
2. Export to pdf with standard settings
3. Export to pdf with deactivated OpenGL or without jpeg-compresion

Actual Results:  
It seems like not all images get distorted, at the moment I don't know why some
are and some not. But I seems that bigger images are affected.

Expected Results:
Images should be not distorted


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

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 114704] Crash when texts containing certain CJK characters are printed or exported to pdf

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114704

--- Comment #2 from malte.kleeme...@googlemail.com ---
Created attachment 138670
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138670=edit
backtrace

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


[Libreoffice-bugs] [Bug 114704] Crash when texts containing certain CJK characters are printed or exported to pdf

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114704

--- Comment #1 from malte.kleeme...@googlemail.com ---
Created attachment 138669
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138669=edit
odt file that produces the  crash

-- 
You are receiving this mail because:
You are the 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

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107733
Bug 107733 depends on bug 93146, which changed state.

Bug 93146 Summary: FORMATTING:Index marks included in a table of contents are 
not considered as hyperlinks
https://bugs.documentfoundation.org/show_bug.cgi?id=93146

   What|Removed |Added

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

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


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

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89606
Bug 89606 depends on bug 93146, which changed state.

Bug 93146 Summary: FORMATTING:Index marks included in a table of contents are 
not considered as hyperlinks
https://bugs.documentfoundation.org/show_bug.cgi?id=93146

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 65463] Writer: Index entry in ToC should be clickable

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65463

Johnny_M  changed:

   What|Removed |Added

 CC||pierre-yves.samyn@laposte.n
   ||et

--- Comment #16 from Johnny_M  ---
*** Bug 93146 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 93146] FORMATTING: Index marks included in a table of contents are not considered as hyperlinks

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93146

Johnny_M  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||kla...@partyheld.de
 Resolution|--- |DUPLICATE

--- Comment #5 from Johnny_M  ---


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

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


[Libreoffice-bugs] [Bug 114704] New: Crash when texts containing certain CJK characters are printed or exported to pdf

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114704

Bug ID: 114704
   Summary: Crash when texts containing certain CJK characters are
printed or exported to pdf
   Product: LibreOffice
   Version: 5.4.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: malte.kleeme...@googlemail.com

Description:
LibreOffice Writer reproducibly crashes when trying to print certain characters
from CJK fonts. Bug may be also related to operating system (Ubuntu 17.10 64
bit) or the font used.

The character which produces the problem:
"…" (horizontal ellipsis, code point 0x2026).

Problem occurred for the following fonts:
"Noto Serif CJK SC"
"Noto Serif CJK TC"
obviously no crashes for fonts of the "Noto Sans" series.

odt file that gives the crash on my system and a backtrace are attached

Steps to Reproduce:
1. Open LibreOffice
2. Load "pdf_export_crash_17-12-27.odt" (attached)
3. Select File->Export as PDF; Press OK 
or 
3. Send file to printer

Actual Results:  
LibreOffice crashes immediately 

Expected Results:
produce the pdf / print


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Version: 5.4.2.2
Build ID: 1:5.4.2-0ubuntu0.17.10.1
CPU threads: 8; OS: Linux 4.13; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); Calc: group


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; 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: sw/source

2017-12-26 Thread Caolán McNamara
 sw/source/filter/html/htmltab.cxx |   19 ---
 1 file changed, 12 insertions(+), 7 deletions(-)

New commits:
commit e2dab2bb2ce4f113f4fd2aa24042c0c297cef674
Author: Caolán McNamara 
Date:   Tue Dec 26 21:07:14 2017 +

ofz#4794 Null-dereference

Change-Id: I2fc9f5ca60c2a476c031befd0253b1829538230d

diff --git a/sw/source/filter/html/htmltab.cxx 
b/sw/source/filter/html/htmltab.cxx
index 6d3c6e50894f..6a8a66e2510a 100644
--- a/sw/source/filter/html/htmltab.cxx
+++ b/sw/source/filter/html/htmltab.cxx
@@ -3926,13 +3926,18 @@ void SwHTMLParser::BuildTableCell( HTMLTable 
*pCurTable, bool bReadOptions,
 {
 const SwEndNode *pEndNd = pStNd->EndOfSectionNode();
 SwContentNode *pCNd = m_xDoc->GetNodes()[pEndNd->GetIndex()-1] 
->GetContentNode();
-//Added defaults to CJK and CTL
-SvxFontHeightItem aFontHeight( 40, 100, RES_CHRATR_FONTSIZE );
-pCNd->SetAttr( aFontHeight );
-SvxFontHeightItem aFontHeightCJK( 40, 100, RES_CHRATR_CJK_FONTSIZE 
);
-pCNd->SetAttr( aFontHeightCJK );
-SvxFontHeightItem aFontHeightCTL( 40, 100, RES_CHRATR_CTL_FONTSIZE 
);
-pCNd->SetAttr( aFontHeightCTL );
+if (!pCNd)
+eState = SvParserState::Error;
+else
+{
+//Added defaults to CJK and CTL
+SvxFontHeightItem aFontHeight( 40, 100, RES_CHRATR_FONTSIZE );
+pCNd->SetAttr( aFontHeight );
+SvxFontHeightItem aFontHeightCJK( 40, 100, 
RES_CHRATR_CJK_FONTSIZE );
+pCNd->SetAttr( aFontHeightCJK );
+SvxFontHeightItem aFontHeightCTL( 40, 100, 
RES_CHRATR_CTL_FONTSIZE );
+pCNd->SetAttr( aFontHeightCTL );
+}
 }
 
 xSaveStruct->AddContents( new HTMLTableCnts(pStNd) );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - 4 commits - extensions.lst

2017-12-26 Thread Andrea Pescetti
 extensions.lst |  149 -
 1 file changed, 75 insertions(+), 74 deletions(-)

New commits:
commit 8cc0fa0ead89370dc2249a5334758d437dec1b1b
Author: Andrea Pescetti 
Date:   Tue Dec 26 21:03:17 2017 +

#i127637# Use conventional filenames for locale-dependent dictionaries.

diff --git a/extensions.lst b/extensions.lst
index b31b1917bc3b..8dac95593825 100644
--- a/extensions.lst
+++ b/extensions.lst
@@ -49,27 +49,27 @@
 
 # Catalan dictionary
 [ language=ca ]
-4cf4e4a9d85f14761d38943b7e1fd76d 
https://sourceforge.net/projects/aoo-extensions/files/1205/5/ca.3.0.0.oxt/download
 "ca.3.0.0.oxt"
+4cf4e4a9d85f14761d38943b7e1fd76d 
https://sourceforge.net/projects/aoo-extensions/files/1205/5/ca.3.0.0.oxt/download
 "dict-ca.oxt"
 
 # Valencian AVL dictionary (this is incompatible with Catalan)
 [ language=ca_XV ]
-d425579a9a2e26663abaecdd661be419 
https://sourceforge.net/projects/aoo-extensions/files/1475/1/ca-valencia.3.0.0.oxt/download
 "ca-valencia.3.0.0.oxt"
+d425579a9a2e26663abaecdd661be419 
https://sourceforge.net/projects/aoo-extensions/files/1475/1/ca-valencia.3.0.0.oxt/download
 "dict-ca_xv.oxt"
 
 # Valencian RACV dictionary (this is incompatible with Catalan)
 [ language=ca_XR ]
-6112a73444a1ad3cf70736649e228f0f 
https://sourceforge.net/projects/aoo-extensions/files/1395/0/dict_valencian_llit.oxt/download
 "dict_valencian_llit.oxt"
+6112a73444a1ad3cf70736649e228f0f 
https://sourceforge.net/projects/aoo-extensions/files/1395/0/dict_valencian_llit.oxt/download
 "dict-ca_xr.oxt"
 
 # German dictionary
 [ language=de || language=de_DE || language=nl || language=ru ]
-ea35a6a6761655107da3e99ee56c171f 
https://sourceforge.net/projects/aoo-extensions/files/1075/15/dict-de_de-frami_2017-01-12.oxt/download
 "dict-de_de-frami_2017-01-12.oxt"
+ea35a6a6761655107da3e99ee56c171f 
https://sourceforge.net/projects/aoo-extensions/files/1075/15/dict-de_de-frami_2017-01-12.oxt/download
 "dict-de_de.oxt"
 
 # German (Austria) dictionary
 [ language=de || language=de_AT || language=de_DE ]
-0cf6783cb0f1355ef3869aa9699700b3 
https://sourceforge.net/projects/aoo-extensions/files/1697/12/dict-de_at-frami_2017-01-12.oxt/download
 "dict-de_at-frami_2017-01-12.oxt"
+0cf6783cb0f1355ef3869aa9699700b3 
https://sourceforge.net/projects/aoo-extensions/files/1697/12/dict-de_at-frami_2017-01-12.oxt/download
 "dict-de_at.oxt"
 
 # German (Switzerland) dictionary
 [ language=de || language=de_CH || language=de_DE ]
-48f7f27f22bf1006a6d9f91d55a7cffc 
https://sourceforge.net/projects/aoo-extensions/files/1699/12/dict-de_ch-frami_2017-01-12.oxt/download
 "dict-de_ch-frami_2017-01-12.oxt"
+48f7f27f22bf1006a6d9f91d55a7cffc 
https://sourceforge.net/projects/aoo-extensions/files/1699/12/dict-de_ch-frami_2017-01-12.oxt/download
 "dict-de_ch.oxt"
 
 # English dictionary
 [ language=en.* || language=de || language=it ]
@@ -77,11 +77,11 @@
 
 # English (USA, en_US) dictionary
 [ language==nl || language==ru ]
-e2eab80772ab1aa09716954219351a80 
https://sourceforge.net/projects/aoo-extensions/files/1470/1/en_US.oxt/download 
"en_US.oxt"
+e2eab80772ab1aa09716954219351a80 
https://sourceforge.net/projects/aoo-extensions/files/1470/1/en_US.oxt/download 
"dict-en_us.oxt"
 
 # Spanish dictionary
 [ language=es || language=ca || language=ca_XV ]
-1b999fcef948148e269161a08e7acf20 
https://sourceforge.net/projects/aoo-extensions/files/1657/4/es_es.oxt/download 
"es_es.oxt"
+1b999fcef948148e269161a08e7acf20 
https://sourceforge.net/projects/aoo-extensions/files/1657/4/es_es.oxt/download 
"dict-es_es.oxt"
 
 # Basque dictionary
 [ language=eu ]
@@ -126,7 +126,7 @@
 
 # Portuguese (European) dictionary
 [ language=pt || language=pt_PT ]
-a1414b7be0cacb7a810166833a02fa66 
https://sourceforge.net/projects/aoo-extensions/files/1196/41/oo3x-pt-pt-17.5.29.1.oxt/download
 "oo3x-pt-pt-17.5.29.1.oxt"
+a1414b7be0cacb7a810166833a02fa66 
https://sourceforge.net/projects/aoo-extensions/files/1196/41/oo3x-pt-pt-17.5.29.1.oxt/download
 "dict-pt_pt.oxt"
 
 # Romanian dictionary
 [ language=ro ]
@@ -146,7 +146,7 @@
 
 # Norwegian dictionary
 [ language=nb ]
-c06841f7f193e4f083482440999d801b 
https://sourceforge.net/projects/aoo-extensions/files/1216/2/dictionary-no-no-2.2.oxt/download
 "dictionary-no-no-2.2.oxt"
+c06841f7f193e4f083482440999d801b 
https://sourceforge.net/projects/aoo-extensions/files/1216/2/dictionary-no-no-2.2.oxt/download
 "dict-no_no.oxt"
 
 # Swedish dictionary
 [ language=sv ]
commit 12d2b65cc40eb1ab7c134ef2fc1c255e3fc665a0
Author: Andrea Pescetti 
Date:   Tue Dec 26 20:35:37 2017 +

#i127637# Sort dictionaries by language code of the dictionary.

diff --git a/extensions.lst b/extensions.lst
index 62cc5686c35d..b31b1917bc3b 100644
--- a/extensions.lst
+++ b/extensions.lst
@@ -38,6 +38,39 @@
 # [ language=all && ENABLE_XXX ]
 #file://XXX.oxt
 
+# Danish dictionary 

[Libreoffice-bugs] [Bug 114692] Loading an odt file failure

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114692

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
   Hardware|x86-64 (AMD64)  |All
Version|5.4.4.2 release |5.4.2.2 release

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


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

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114703

--- Comment #1 from Xisco Faulí  ---
attachment 100916 from bug 79940 is also affected. ( Numbering A to G in the
second section )

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


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

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114703

Xisco Faulí  changed:

   What|Removed |Added

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

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

2017-12-26 Thread Caolán McNamara
 sw/source/filter/html/htmltab.cxx |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit f03ad9ee3458c76db21c10e18bdb49d27f7be1c3
Author: Caolán McNamara 
Date:   Tue Dec 26 21:00:35 2017 +

ofz#4796 Null-dereference

Change-Id: Iad537d2bb2bed1225e5647a918c923e6d95aea75

diff --git a/sw/source/filter/html/htmltab.cxx 
b/sw/source/filter/html/htmltab.cxx
index 33c7de3e6fe3..6d3c6e50894f 100644
--- a/sw/source/filter/html/htmltab.cxx
+++ b/sw/source/filter/html/htmltab.cxx
@@ -4772,8 +4772,11 @@ void SwHTMLParser::BuildTableCaption( HTMLTable 
*pCurTable )
 
 // If there's an adjustment for the cell, we need to close it
 std::unique_ptr xCntxt(PopContext());
-EndContext(xCntxt.get());
-xCntxt.reset();
+if (xCntxt)
+{
+EndContext(xCntxt.get());
+xCntxt.reset();
+}
 
 SetAttr( false );
 
___
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)

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114703

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
 Status|UNCONFIRMED |NEW
 CC||vmik...@collabora.co.uk,
   ||xiscofa...@libreoffice.org
 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 114703] New: FILEOPEN: DOCX: Incorrect numbering alignment ( follow-up bug)

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114703

Bug ID: 114703
   Summary: FILEOPEN: DOCX: Incorrect numbering alignment
(follow-up bug)
   Product: LibreOffice
   Version: 6.0.0.0.alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Created attachment 138666
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138666=edit
comparison LibreOffice 6.1 and MSO 2010

This is a follow-up bug of bug 113547

Steps to reproduce:
1. Open attachment 119772 from bug 95189

-> Numbering alignment is shift to the right. See attached image

Reproduced in

Version: 6.1.0.0.alpha0+
Build ID: 2bf1cc7372088ec31ac5f0fb60de57feda59d3b7
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group threaded

Regression introduced by:

author  Miklos Vajna   2017-09-19 07:17:25 (GMT)
committer   Miklos Vajna   2017-09-19 14:18:54
(GMT)
commit  c72a1a74b5b1064fc9cdf9994b11fce26d866e26 (patch)
treeebf199f2a5518452cdbc7354a6d04cd513911aed
parent  f00ca5f26492a56378da0c7e54003419d8c7dd05 (diff)
Related: tdf#112211 DOCX import: fix handling of missing first ind in 
Usually a DOCX numbering definition has multiple levels, each level
containing a  element. When this is missing,
we should default to the Word default, not to the Writer one.

This makes the DOCX version of tdf#106953 imported correctly, in
preparation of dropping the original fix that helped RTF only.

Bisected with: bibisect-linux64-6.0

Adding Cc: to Miklos Vajna

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


[Libreoffice-bugs] [Bug 114702] Loop executing direct SQL

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114702

Terrence Enger  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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


[Libreoffice-bugs] [Bug 114702] Loop executing direct SQL

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114702

--- Comment #1 from Terrence Enger  ---
Created attachment 138665
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138665=edit
excerpt from gdb: info threads; backtrace

Looking further, I see a long running loop between
dbaccess/source/ui/dlg/directsql.cxx statements 207 and 209:

   +-- uno::Reference to (OStatement *) 0x573072e8
   |  +-- com::sun::star::uno::Reference::operator->
   |  |  return value = (OStatement *) 0x57307210
   |  | +-- OStatementBase::getMoreResults
   |  | |   return value = 0 '\000'
   |  | |
207: while ((hasRS=xMR->getMoreResults()) || (xMR->getUpdateCount() != -1))
 | |
   com::sun::star::uno::Reference |
   ::operator->|
   return value =  |
   (OStatement *) 0x57307210   |
  OStatementBase::getUpdateCount --+
  return value = 0

208: {
209: if(hasRS)
| 
+-- false
210: {
...   
214: }
215: }


This information is from a local build of 68f7d89c, 2017-12-11,
configured
CC=ccache /usr/bin/gcc
CXX=ccache /usr/bin/g++
--enable-option-checking=fatal
--enable-dbgutil
--enable-debug
--without-system-postgresql
--without-myspell-dicts
--with-extra-buildid
--without-doxygen
--with-external-tar=/home/terry/lo_hacking/git/src
--without-package-format
built and running of debian-buster.

I am setting keyword haveBacktrace.

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


[Libreoffice-bugs] [Bug 114407] Empty help text tooltip while hovering the form (gtk)

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114407

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #7 from Xisco Faulí  ---
Verified in

Version: 6.1.0.0.alpha0+
Build ID: 2bf1cc7372088ec31ac5f0fb60de57feda59d3b7
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk2; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group threaded

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


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

2017-12-26 Thread Ashod Nakashian
 vcl/headless/svpbmp.cxx|5 +-
 vcl/headless/svpgdi.cxx|   95 +++--
 vcl/inc/headless/svpgdi.hxx|4 +
 vcl/qa/cppunit/BitmapTest.cxx  |9 ++-
 vcl/qa/cppunit/svm/svmtest.cxx |   12 ++---
 5 files changed, 109 insertions(+), 16 deletions(-)

New commits:
commit 33761c69e9d3fa16e7a5b176200d183dc3236627
Author: Ashod Nakashian 
Date:   Sun Dec 3 23:35:26 2017 -0500

vcl-svp: Store 24-bit images in 3-byte pixels

This adds support in headless rendering for more
compact 24-bit RGB image storage in 3-byte pixels
instead of 4 bytes.

There is a conversion necessary to accomodate Cairo,
which requires 4-byte pixels, but that is relatively.

Early tests show no loss of performance at runtime.

Unit tests updated since the bitmap memory bytes
are crc-ed, which obviously are different in size
if not in content.

(cherry picked from commit 354ad875092fd0c3b12f232950375206ec5d66a6)
Reviewed-on: https://gerrit.libreoffice.org/46679
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 
(cherry picked from commit 11adb51f2553dc4a838c8668d94909771d70e1ab)

Change-Id: I3919f7c56d14d09e67f163f035b4c7683b49087c
Reviewed-on: https://gerrit.libreoffice.org/47009
Tested-by: Jenkins 
Reviewed-by: Ashod Nakashian 

diff --git a/vcl/headless/svpbmp.cxx b/vcl/headless/svpbmp.cxx
index cb7a8654798a..0ba815998d8f 100644
--- a/vcl/headless/svpbmp.cxx
+++ b/vcl/headless/svpbmp.cxx
@@ -96,14 +96,15 @@ BitmapBuffer* ImplCreateDIB(
 pDIB->maColorMask = ColorMask(aRedMask, aGreenMask, aBlueMask);
 break;
 }
+case 24:
+pDIB->mnFormat = SVP_24BIT_FORMAT;
+break;
 default:
 nBitCount = 32;
 SAL_FALLTHROUGH;
 case 32:
-{
 pDIB->mnFormat = SVP_CAIRO_FORMAT;
 break;
-}
 }
 
 pDIB->mnFormat |= ScanlineFormat::TopDown;
diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx
index bcb0e46e8bec..6a5409e7f2e9 100644
--- a/vcl/headless/svpgdi.cxx
+++ b/vcl/headless/svpgdi.cxx
@@ -24,6 +24,7 @@
 #include 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -124,25 +125,110 @@ namespace
 }
 }
 
+BitmapBuffer* FastConvert24BitRgbTo32BitCairo(const BitmapBuffer* pSrc)
+{
+if (pSrc == nullptr)
+return nullptr;
+
+assert(pSrc->mnFormat == SVP_24BIT_FORMAT);
+const long nWidth = pSrc->mnWidth;
+const long nHeight = pSrc->mnHeight;
+BitmapBuffer* pDst = new BitmapBuffer;
+pDst->mnFormat = (ScanlineFormat::N32BitTcArgb | 
ScanlineFormat::TopDown);
+pDst->mnWidth = nWidth;
+pDst->mnHeight = nHeight;
+pDst->mnBitCount = 32;
+pDst->maColorMask = pSrc->maColorMask;
+pDst->maPalette = pSrc->maPalette;
+
+long nScanlineBase;
+const bool bFail = o3tl::checked_multiply(pDst->mnBitCount, 
nWidth, nScanlineBase);
+if (bFail)
+{
+SAL_WARN("vcl.gdi", "checked multiply failed");
+pDst->mpBits = nullptr;
+delete pDst;
+return nullptr;
+}
+
+pDst->mnScanlineSize = AlignedWidth4Bytes(nScanlineBase);
+if (pDst->mnScanlineSize < nScanlineBase/8)
+{
+SAL_WARN("vcl.gdi", "scanline calculation wraparound");
+pDst->mpBits = nullptr;
+delete pDst;
+return nullptr;
+}
+
+try
+{
+pDst->mpBits = new sal_uInt8[ pDst->mnScanlineSize * nHeight ];
+}
+catch (const std::bad_alloc&)
+{
+// memory exception, clean up
+pDst->mpBits = nullptr;
+delete pDst;
+return nullptr;
+}
+
+for (long y = 0; y < nHeight; ++y)
+{
+sal_uInt8* pS = pSrc->mpBits + y * pSrc->mnScanlineSize;
+sal_uInt8* pD = pDst->mpBits + y * pDst->mnScanlineSize;
+for (long x = 0; x < nWidth; ++x)
+{
+#if defined ANDROID
+static_assert((SVP_CAIRO_FORMAT & ~ScanlineFormat::TopDown) == 
ScanlineFormat::N32BitTcRgba, "Expected SVP_CAIRO_FORMAT set to N32BitTcBgra");
+static_assert((SVP_24BIT_FORMAT & ~ScanlineFormat::TopDown) == 
ScanlineFormat::N24BitTcRgb, "Expected SVP_24BIT_FORMAT set to N24BitTcRgb");
+pD[0] = pS[0];
+pD[1] = pS[1];
+pD[2] = pS[2];
+pD[3] = 0xff; // Alpha
+#elif defined OSL_BIGENDIAN
+static_assert((SVP_CAIRO_FORMAT & ~ScanlineFormat::TopDown) == 
ScanlineFormat::N32BitTcArgb, "Expected SVP_CAIRO_FORMAT set to N32BitTcBgra");
+static_assert((SVP_24BIT_FORMAT & ~ScanlineFormat::TopDown) == 

[Libreoffice-commits] core.git: external/cairo vcl/headless

2017-12-26 Thread Ashod Nakashian
 external/cairo/cairo/cairo-1.10.2.patch |  137 
 vcl/headless/svpgdi.cxx |   25 -
 2 files changed, 143 insertions(+), 19 deletions(-)

New commits:
commit 54596087e57ea533253e19eea594d9b6c06e8d26
Author: Ashod Nakashian 
Date:   Sat Dec 9 16:28:42 2017 -0500

vcl-svp: add 24-bit (3-byte) RGB surface support to Cairo

(cherry picked from commit e8ba02b1d56dc7b59a4f0a7373995b28653a0597)
Reviewed-on: https://gerrit.libreoffice.org/46681
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 
(cherry picked from commit 31c044e2501b9d4a0917e4e09133660bbe2a24dc)

Change-Id: I7707219eae4c2d6d40c8dc957207b63d3049a75f
Reviewed-on: https://gerrit.libreoffice.org/47010
Tested-by: Jenkins 
Reviewed-by: Ashod Nakashian 

diff --git a/external/cairo/cairo/cairo-1.10.2.patch 
b/external/cairo/cairo/cairo-1.10.2.patch
index d564d53ab9e0..f50501926faa 100644
--- a/external/cairo/cairo/cairo-1.10.2.patch
+++ b/external/cairo/cairo/cairo-1.10.2.patch
@@ -1,5 +1,6 @@
 misc/cairo-1.10.2/build/Makefile.win32.features2010-08-18 
09:47:30.0 +0200
-+++ misc/build/cairo-1.10.2/build/Makefile.win32.features  2011-12-20 
09:57:06.428170146 +0100
+diff -ruNw misc/cairo-1.10.2/build/Makefile.win32.features 
misc/build/cairo-1.10.2/build/Makefile.win32.features
+--- misc/cairo-1.10.2/build/Makefile.win32.features2015-10-27 
17:04:21.0 -0400
 misc/build/cairo-1.10.2/build/Makefile.win32.features  2017-11-24 
21:43:14.103524768 -0500
 @@ -30,7 +30,7 @@
  CAIRO_HAS_FC_FONT=0
  CAIRO_HAS_PS_SURFACE=1
@@ -9,9 +10,10 @@
  CAIRO_HAS_TEST_SURFACES=0
  CAIRO_HAS_TEE_SURFACE=0
  CAIRO_HAS_XML_SURFACE=0
 misc/cairo-1.10.2/configure2010-12-25 15:22:57.0 +0100
-+++ misc/build/cairo-1.10.2/configure  2010-12-25 15:22:57.0 +0100
-@@ -19259,59 +19259,10 @@
+diff -ruNw misc/cairo-1.10.2/configure misc/build/cairo-1.10.2/configure
+--- misc/cairo-1.10.2/configure2015-12-09 15:41:45.0 -0500
 misc/build/cairo-1.10.2/configure  2017-11-24 21:43:14.103524768 -0500
+@@ -20580,61 +20580,12 @@
  rm -f confcache
  
  
@@ -58,8 +60,8 @@
  have_libz=yes
  
  $as_echo "#define HAVE_ZLIB 1" >>confdefs.h
--
--
+ 
+ 
 -else
 -  have_libz="no (requires zlib http://www.gzip.org/zlib/)"
 -fi
@@ -68,10 +70,12 @@
 -else
 -  have_libz="no (requires zlib http://www.gzip.org/zlib/)"
 -fi
- 
- 
+-
+-
  save_LIBS="$LIBS"
-@@ -29424,7 +29424,7 @@
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lzo2a_decompress in 
-llzo2" >&5
+ $as_echo_n "checking for lzo2a_decompress in -llzo2... " >&6; }
+@@ -30069,7 +30020,7 @@
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FREETYPE_VERSION - OK" 
>&5
  $as_echo "$FREETYPE_VERSION - OK" >&6; }
   ft_NONPKGCONFIG_CFLAGS=`$FREETYPE_CONFIG --cflags`
@@ -80,7 +84,7 @@
  else { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FREETYPE_VERSION - 
Too old" >&5
  $as_echo "$FREETYPE_VERSION - Too old" >&6; }
   use_ft="no ($FREETYPE_VERSION found; version 
$FREETYPE_MIN_VERSION from release $FREETYPE_MIN_RELEASE required)"
-@@ -29434,7 +29434,7 @@
+@@ -30079,7 +30030,7 @@
  fi
  
ft_CFLAGS="$FREETYPE_CFLAGS"
@@ -89,7 +93,7 @@
  
  
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether 
cairo's FreeType font backend feature could be enabled" >&5
-@@ -30121,7 +30121,7 @@
+@@ -30686,7 +30637,7 @@
  
  # The ps backend requires zlib.
  use_ps=$have_libz
@@ -98,7 +102,7 @@
  
  
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether 
cairo's PostScript surface backend feature could be enabled" >&5
-@@ -30549,7 +30549,7 @@
+@@ -31082,7 +31033,7 @@
  
  # The pdf backend requires zlib.
  use_pdf=$have_libz
@@ -107,7 +111,7 @@
  
  
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether 
cairo's PDF surface backend feature could be enabled" >&5
-@@ -32296,7 +32296,7 @@
+@@ -32973,7 +32924,7 @@
  
  
  use_xml=$have_libz
@@ -116,4 +120,107 @@
  
  
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether 
cairo's xml surface backend feature could be enabled" >&5
-$as_echo_n "checking whether cairo's xml surface backend feature could be 
enabled... " >&6; }
+diff -ruNw misc/cairo-1.10.2/src/cairo.h misc/build/cairo-1.10.2/src/cairo.h
+--- misc/cairo-1.10.2/src/cairo.h  2015-10-27 17:04:21.0 -0400
 misc/build/cairo-1.10.2/src/cairo.h2017-12-17 12:09:59.880406411 
-0500
+@@ -397,6 +397,8 @@
+  *   with red in the upper 5 bits, then green in the middle
+  *   6 bits, and blue in the lower 5 bits. (Since 1.2)
+  * @CAIRO_FORMAT_RGB30: like RGB24 but with 10bpc. (Since 1.12)
++ * @CAIRO_FORMAT_RGB24_888: each pixel is a 24-bit quantity,
++ *   with Red, Green, 

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

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

Bug 103988 Summary: FILESAVE: DOCX with chart corrupted after roundtrip, cannot 
open in MSO
https://bugs.documentfoundation.org/show_bug.cgi?id=103988

   What|Removed |Added

 Status|RESOLVED|NEW
 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 104528] [META] Saved DOCX files that MS Word can't open

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104528
Bug 104528 depends on bug 103988, which changed state.

Bug 103988 Summary: FILESAVE: DOCX with chart corrupted after roundtrip, cannot 
open in MSO
https://bugs.documentfoundation.org/show_bug.cgi?id=103988

   What|Removed |Added

 Status|RESOLVED|NEW
 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 114702] New: Loop executing direct SQL

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114702

Bug ID: 114702
   Summary: Loop executing direct SQL
   Product: LibreOffice
   Version: 4.1.6.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lo_b...@iseries-guru.com

Created attachment 138664
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138664=edit
example .odb, embedded firebird

STR
(1) Open attached file a02_fb.odb.  Program presents main database window.
(2) In Database pane click .
(3) In Tasks pane click  "SQL...".
(7) Click "Show output of "select" statements"
(8) In Command to execute type
select * from Table1
(9) Click .  Program loops, using approximately 100% of one CPU.

I observe this in daily Linux dbgutil bibisect repository version
2017-12-26.

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


[Libreoffice-bugs] [Bug 90796] [META] HiDPI / Retina bugs

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90796

Buovjaga  changed:

   What|Removed |Added

 Depends on||114700


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114700
[Bug 114700] Image Anchor Icon corrupted on HiDPI Displays
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114700] Image Anchor Icon corrupted on HiDPI Displays

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114700

Buovjaga  changed:

   What|Removed |Added

 Blocks||90796


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 90796] [META] HiDPI / Retina bugs

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90796

Buovjaga  changed:

   What|Removed |Added

 Depends on||114699


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114699
[Bug 114699] FileOpen Icons corrupted on HiDPI Display
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114699] FileOpen Icons corrupted on HiDPI Display

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114699

Buovjaga  changed:

   What|Removed |Added

 Blocks||90796


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 114696] Compound string in Calc: "Total " + "Result"

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114696

Buovjaga  changed:

   What|Removed |Added

   Priority|medium  |low
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #2 from Buovjaga  ---
Let's set to NEW.

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


[Libreoffice-bugs] [Bug 114697] Optimize OutputDevice to only call ImplRefreshAllFontData once after reading all embedded fonts

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114697

Buovjaga  changed:

   What|Removed |Added

   Keywords||perf
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Buovjaga  ---
Let's set to NEW.

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


[Libreoffice-bugs] [Bug 108566] [META] File loading and saving progress bar and related bugs and enhancements

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108566
Bug 108566 depends on bug 32716, which changed state.

Bug 32716 Summary: Show progress bar when opening a calc document with several 
DDE() links
https://bugs.documentfoundation.org/show_bug.cgi?id=32716

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

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


[Libreoffice-bugs] [Bug 32716] Show progress bar when opening a calc document with several DDE() links

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=32716

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |WONTFIX

--- Comment #6 from Buovjaga  ---
Thanks, Torge. Let's close.

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