[Libreoffice-commits] core.git: 5 commits - testtools/source toolkit/source ucbhelper/source unotest/source xmloff/source

2016-11-30 Thread Stephan Bergmann
 testtools/source/bridgetest/bridgetest.cxx |8 -
 testtools/source/bridgetest/currentcontextchecker.cxx  |4 
 toolkit/source/awt/vclxtoolkit.cxx |   10 -
 toolkit/source/controls/dialogcontrol.cxx  |5 
 toolkit/source/controls/grid/defaultgridcolumnmodel.cxx|7 
 toolkit/source/controls/grid/defaultgriddatamodel.cxx  |7 
 toolkit/source/controls/tree/treedatamodel.cxx |5 
 ucbhelper/source/client/proxydecider.cxx   |8 -
 unotest/source/cpp/unoexceptionprotector/unoexceptionprotector.cxx |2 
 xmloff/source/chart/SchXMLAxisContext.cxx  |   10 -
 xmloff/source/chart/SchXMLEnumConverter.cxx|2 
 xmloff/source/chart/SchXMLSeries2Context.cxx   |5 
 xmloff/source/chart/SchXMLTableContext.cxx |5 
 xmloff/source/chart/SchXMLTextListContext.cxx  |5 
 xmloff/source/chart/contexts.cxx   |5 
 xmloff/source/core/DocumentSettingsContext.cxx |   25 ---
 xmloff/source/core/PropertySetMerger.cxx   |5 
 xmloff/source/core/XMLEmbeddedObjectImportContext.cxx  |6 
 xmloff/source/core/xmlexp.cxx  |5 
 xmloff/source/core/xmlimp.cxx  |5 
 xmloff/source/draw/XMLImageMapContext.cxx  |   18 --
 xmloff/source/draw/XMLNumberStyles.cxx |5 
 xmloff/source/draw/animationimport.cxx |5 
 xmloff/source/draw/animimp.cxx |   11 -
 xmloff/source/draw/eventimp.cxx|   11 -
 xmloff/source/draw/layerimp.cxx|5 
 xmloff/source/draw/sdpropls.cxx|6 
 xmloff/source/draw/sdxmlimp.cxx|   16 --
 xmloff/source/draw/ximpstyl.cxx|   11 -
 xmloff/source/meta/MetaImportComponent.cxx |6 
 xmloff/source/meta/xmlmetai.cxx|6 
 xmloff/source/script/xmlscripti.cxx|5 
 xmloff/source/style/xmlnumfi.cxx   |   20 --
 xmloff/source/style/xmlnumi.cxx|   15 --
 xmloff/source/style/xmltabi.cxx|6 
 xmloff/source/table/XMLTableImport.cxx |   11 -
 xmloff/source/text/XMLTextColumnsContext.cxx   |   13 -
 xmloff/source/text/XMLTextFrameContext.cxx |   21 --
 xmloff/source/text/XMLTextShapeStyleContext.cxx|6 
 xmloff/source/text/txtparai.cxx|   18 --
 xmloff/source/text/txtprhdl.cxx|   71 
--
 xmloff/source/transform/ChartPlotAreaOASISTContext.cxx |4 
 xmloff/source/transform/ChartPlotAreaOOoTContext.cxx   |4 
 xmloff/source/transform/FormPropOOoTContext.cxx|6 
 xmloff/source/transform/MergeElemTContext.cxx  |   10 -
 xmloff/source/transform/OOo2Oasis.cxx  |   30 
 xmloff/source/transform/Oasis2OOo.cxx  |   30 
 xmloff/source/transform/PersMixedContentTContext.cxx   |5 
 xmloff/source/transform/StyleOASISTContext.cxx |6 
 xmloff/source/transform/StyleOOoTContext.cxx   |   12 -
 50 files changed, 1 insertion(+), 526 deletions(-)

New commits:
commit 1222f58dcf817360abf3d24c2e1bca1613880b67
Author: Stephan Bergmann 
Date:   Thu Dec 1 08:54:56 2016 +0100

loplugin:unnecessaryoverride (dtors) in testtools

Change-Id: If004c2c58cb92e211cea34b54c3c38c91ccb6e7d

diff --git a/testtools/source/bridgetest/bridgetest.cxx 
b/testtools/source/bridgetest/bridgetest.cxx
index bcccf4f..167719d 100644
--- a/testtools/source/bridgetest/bridgetest.cxx
+++ b/testtools/source/bridgetest/bridgetest.cxx
@@ -111,9 +111,6 @@ public:
 explicit TestBridgeImpl( const Reference< XComponentContext > & xContext )
 : m_xContext( xContext )
 {}
-virtual ~TestBridgeImpl() override
-{
-}
 
 // XServiceInfo
 virtual OUString SAL_CALL getImplementationName() throw (RuntimeException, 
std::exception) override;
@@ -339,7 +336,6 @@ class MyClass : public osl::DebugBase, public 
OWeakObject
 {
 public:
 MyClass();
-virtual ~MyClass() override;
 };
 
 
@@ -347,10 +343,6 @@ MyClass::MyClass()
 {
 }
 
-MyClass::~MyClass()
-{
-}
-
 static bool performTest(
 const 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - slideshow/source

2016-11-30 Thread Caolán McNamara
 slideshow/source/engine/opengl/TransitionImpl.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 75627b4dc1a821142419ed50d247c2d0e621c78b
Author: Caolán McNamara 
Date:   Wed Nov 30 14:22:53 2016 +

glDrawArrays takes num of indices, not size of storage

this stops the strange missing corner seen during the diamond
transition

Change-Id: If806a0a3303eb38644bb6d3a479cadbd5fe9ca25
(cherry picked from commit 579feb4d841ea80de699f4124378d0701034833e)
Reviewed-on: https://gerrit.libreoffice.org/31426
Tested-by: Jenkins 
Reviewed-by: David Tardon 

diff --git a/slideshow/source/engine/opengl/TransitionImpl.cxx 
b/slideshow/source/engine/opengl/TransitionImpl.cxx
index 33e7f4b..a2b11c3 100644
--- a/slideshow/source/engine/opengl/TransitionImpl.cxx
+++ b/slideshow/source/engine/opengl/TransitionImpl.cxx
@@ -366,7 +366,7 @@ void Primitive::display(GLint primitiveTransformLocation, 
double nTime, double W
 CHECK_GL_ERROR();
 glVertexPointer( 3, GL_FLOAT, sizeof(Vertex), [0] );
 CHECK_GL_ERROR();
-glDrawArrays( GL_TRIANGLES, 0, getVerticesSize() );
+glDrawArrays( GL_TRIANGLES, 0, Vertices.size() );
 CHECK_GL_ERROR();
 glPopClientAttrib();
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-11-30 Thread Muthu Subramanian
 oox/source/drawingml/textparagraphproperties.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 3770a6a3f3bd3e9c3f71a346b9db895e5bf0df31
Author: Muthu Subramanian 
Date:   Sun Oct 30 23:47:33 2016 +0530

tdf#103477 buClrTx => use text color instead

Change-Id: I82d9231d2d0ea95cadc803f9a8dab9c23b88a677
Reviewed-on: https://gerrit.libreoffice.org/30403
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/oox/source/drawingml/textparagraphproperties.cxx 
b/oox/source/drawingml/textparagraphproperties.cxx
index 4d281c0..aa62253 100644
--- a/oox/source/drawingml/textparagraphproperties.cxx
+++ b/oox/source/drawingml/textparagraphproperties.cxx
@@ -356,7 +356,9 @@ void BulletList::pushToPropMap( const 
::oox::core::XmlFilterBase* pFilterBase, P
 if ( maStyleName.hasValue() )
 rPropMap.setAnyProperty( PROP_CharStyleName, maStyleName);
 if (pFilterBase ) {
-if ( maBulletColorPtr->isUsed() )
+bool bFollowTextColor = false;
+mbBulletColorFollowText >>= bFollowTextColor;
+if ( maBulletColorPtr->isUsed() && !bFollowTextColor )
 rPropMap.setProperty( PROP_BulletColor, 
maBulletColorPtr->getColor( pFilterBase->getGraphicHelper() ));
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104013] glyphs positioned at left margin of menu entries are clipped when OpenGL rendered with HarfBuzz common layout

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104013

--- Comment #17 from Khaled Hosny  ---
(In reply to Luke from comment #15)
> Created attachment 129168 [details]
> Screenshot before/after patch
> 
> Does it fix the Option->Tools bug? Seems the same on my system.

So they weren’t duplicates after all. I guess we should de-duplicate them then,
close the other as fixed and leave this one open.

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


Re:jewelry wholesalers

2016-11-30 Thread sus...@parqueencn.com




Dear Friend,

Glad to know you are on the market for jewelry goods.
We are Parqueen, a professional 
supplier for jewelry products with many years experience, just as Necklace, 
Rings, bridal product etc. and hope to find a way to cooperate with you.


Should you wanna know more about our company, please visit parqueen.com,

any comments, that will be appreciated!





Best Regards,

Susana
Parqueen Jewelry Factory
Contact: 0086 13500027448
website: parqueen.com
Email: susana @parqueen . com 


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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - include/sfx2 sfx2/source

2016-11-30 Thread Akshay Deep
 include/sfx2/templatelocalview.hxx  |2 +-
 sfx2/source/control/templatedefaultview.cxx |2 +-
 sfx2/source/control/templatelocalview.cxx   |4 ++--
 sfx2/source/control/templatesearchview.cxx  |2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit e4a8b60564cdc332b07f3e18a67416b3c5c48703
Author: Akshay Deep 
Date:   Mon Nov 28 20:21:26 2016 +0530

tdf#101870 - Template manager thumbnail view control needs a border

Change-Id: If1773b99aa816b2b45fe16127ff09a646e3702ae
Reviewed-on: https://gerrit.libreoffice.org/31324
Tested-by: Jenkins 
Reviewed-by: Akshay Deep 
(cherry picked from commit 9abc547ef28f3f6891030597fd304ca757b102da)
Reviewed-on: https://gerrit.libreoffice.org/31450

diff --git a/include/sfx2/templatelocalview.hxx 
b/include/sfx2/templatelocalview.hxx
index 8a3bfae..d75d86b 100644
--- a/include/sfx2/templatelocalview.hxx
+++ b/include/sfx2/templatelocalview.hxx
@@ -78,7 +78,7 @@ class SFX2_DLLPUBLIC TemplateLocalView : public ThumbnailView
 
 public:
 
-TemplateLocalView ( vcl::Window* pParent );
+TemplateLocalView ( vcl::Window* pParent, WinBits nWinStyle = WB_TABSTOP | 
WB_BORDER );
 
 virtual ~TemplateLocalView () override;
 virtual void dispose() override;
diff --git a/sfx2/source/control/templatedefaultview.cxx 
b/sfx2/source/control/templatedefaultview.cxx
index 9884e06..219c533 100644
--- a/sfx2/source/control/templatedefaultview.cxx
+++ b/sfx2/source/control/templatedefaultview.cxx
@@ -26,7 +26,7 @@ VCL_BUILDER_FACTORY(TemplateDefaultView)
 static const int gnItemPadding(5); //TODO:: Change padding to 10. It looks 
really crowded and occupied.
 
 TemplateDefaultView::TemplateDefaultView( Window* pParent)
-: TemplateLocalView(pParent)
+: TemplateLocalView(pParent, WB_TABSTOP)
 , mnTextHeight(30)
 {
 Rectangle aScreen = 
Application::GetScreenPosSizePixel(Application::GetDisplayBuiltInScreen());
diff --git a/sfx2/source/control/templatelocalview.cxx 
b/sfx2/source/control/templatelocalview.cxx
index a37dab2..6603a3c 100644
--- a/sfx2/source/control/templatelocalview.cxx
+++ b/sfx2/source/control/templatelocalview.cxx
@@ -88,8 +88,8 @@ bool ViewFilter_Application::operator () (const 
ThumbnailViewItem *pItem)
 return true;
 }
 
-TemplateLocalView::TemplateLocalView ( vcl::Window* pParent)
-: ThumbnailView(pParent),
+TemplateLocalView::TemplateLocalView ( vcl::Window* pParent, WinBits nWinStyle)
+: ThumbnailView(pParent, nWinStyle),
   mnCurRegionId(0),
   maSelectedItem(nullptr),
   mnThumbnailWidth(TEMPLATE_THUMBNAIL_MAX_WIDTH),
diff --git a/sfx2/source/control/templatesearchview.cxx 
b/sfx2/source/control/templatesearchview.cxx
index e1db4e5..8403143 100644
--- a/sfx2/source/control/templatesearchview.cxx
+++ b/sfx2/source/control/templatesearchview.cxx
@@ -24,7 +24,7 @@
 #define MNI_DELETE 4
 
 TemplateSearchView::TemplateSearchView (vcl::Window *pParent)
-: ThumbnailView(pParent,WB_TABSTOP | WB_VSCROLL),
+: ThumbnailView(pParent,WB_TABSTOP | WB_VSCROLL | WB_BORDER),
 maSelectedItem(nullptr),
 maPosition(0,0)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 103596] Support OpenType Font Variation based text layout

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103596

--- Comment #2 from Volga  ---
On this article you will see the advantages of using OpenType Font Variations
in the document if you can read Chinese:
http://www.typeisbeautiful.com/2016/09/10968/zh-hant/

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


[Libreoffice-bugs] [Bug 101729] Vertical Text in table, depending on vertical alignment, is wrong position

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101729

odinatlas  changed:

   What|Removed |Added

Version|5.2.1.2 release |5.2.0.1 rc

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


[Libreoffice-bugs] [Bug 103995] underline improvement

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103995

--- Comment #2 from Volga  ---
(In reply to V Stuart Foote from comment #1)
> Such adaptive underlining would require ability to use metric for OpenType
> or Graphite fonts that define it. 

AAT defined metric should also be used on OS X.

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


[Libreoffice-bugs] [Bug 104315] New: Directories

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104315

Bug ID: 104315
   Summary: Directories
   Product: LibreOffice
   Version: 5.3.0.0.beta1
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: wolff-ohlenb...@t-online.de

Hello to all,

in 5.3.0.0.beta1 and above in the configuration for the directories I've set a
blank before and bihind the tab. When I create the directories, there are
backspaces set for the blanks.

Best regards, Helmut!

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


[Libreoffice-bugs] [Bug 100158] grouping processes doesn't work in gnome-shell/wayland

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100158

David Tardon  changed:

   What|Removed |Added

 CC||mark.fil...@collabora.com

--- Comment #2 from David Tardon  ---
*** Bug 104285 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 104285] Icons & text missing when switching between apps

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104285

David Tardon  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||dtar...@redhat.com
 Resolution|--- |DUPLICATE

--- Comment #1 from David Tardon  ---


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

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

2016-11-30 Thread Matúš Kukan
 solenv/gbuild/Helper.mk |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 985e93ecb44aef97995099d4fd5915afd3cab282
Author: Matúš Kukan 
Date:   Thu Dec 1 07:35:26 2016 +0100

fix cross-toolset: gb_Helper_optional_for_host can't contain 'newline'

Otherwise, the 'newline' is passed as a second parameter to
gb_Module_add_moduledir which breaks build. :/

Change-Id: I02eba5ddef9f7a6dccbb7d135a7e8c68629da9c4

diff --git a/solenv/gbuild/Helper.mk b/solenv/gbuild/Helper.mk
index 1464411..c3677c0 100644
--- a/solenv/gbuild/Helper.mk
+++ b/solenv/gbuild/Helper.mk
@@ -299,8 +299,9 @@ endef
 endif
 
 define gb_Helper_optional_for_host
-$(if $(filter build,$(gb_Side)),,$(call 
gb_Output_error,gb_Helper_optional_for_host: Use only when gb_Side=build))
-$(if $(filter $(1),$(BUILD_TYPE_FOR_HOST)),$(2))
+$(if $(filter build,$(gb_Side)), \
+   $(if $(filter $(1),$(BUILD_TYPE_FOR_HOST)),$(2)), \
+   $(call gb_Output_error,gb_Helper_optional_for_host: Use only when 
gb_Side=build))
 endef
 
 define gb_Helper_print_on_error
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 103805] HP K209a Problem on windows 10 home 64bit

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103805

--- Comment #4 from Buovjaga  ---
The upic images you posted only show a placeholder image for me. Please attach
them to Bugzilla
https://bugs.documentfoundation.org/attachment.cgi?bugid=103805=enter

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


[Libreoffice-bugs] [Bug 104314] New: macOS: [Calc] When filtering/sorting, the popup closes without applying filters

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104314

Bug ID: 104314
   Summary: macOS: [Calc] When filtering/sorting, the popup closes
without applying filters
   Product: LibreOffice
   Version: 5.2.3.3 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lae...@tdf.com

Description:
When selecting the sort dropdown in a header cell, I am presented with options
to sort ascending/descending, and filter by certain criteria.

When I uncheck a box to adjust my filter, and THEN go up to press "Sort
Ascending" to sort my column, the popup closes without taking any affect. I
find it very annoying that I have to adjust my filters first, press ok, and
then go into the popup again and press "Sort Ascending" to get the desired
effect.

Please fix this.

Steps to Reproduce:
1. Press dropdown arrow on a column to open the filter/sort dialog
2. Uncheck/check any boxes for the filter
3. Press "Sort Ascending" or "Sort Descending"

Actual Results:  
The dialog closes without taking any effect

Expected Results:
Calc should have applied my filter and sorted document as I desired.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/602.3.7
(KHTML, like Gecko) Version/10.0.2 Safari/602.3.7

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


[Libreoffice-commits] online.git: wsd/LOOLWSD.cpp

2016-11-30 Thread Ashod Nakashian
 wsd/LOOLWSD.cpp |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit da3b1b208aefc734c856492db1078e1804702b4e
Author: Ashod Nakashian 
Date:   Wed Nov 30 20:23:14 2016 -0500

loolwsd: alertAllUsersInternal expects lock to be taken

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

diff --git a/wsd/LOOLWSD.cpp b/wsd/LOOLWSD.cpp
index 3e56c67..860e7a3 100644
--- a/wsd/LOOLWSD.cpp
+++ b/wsd/LOOLWSD.cpp
@@ -291,6 +291,8 @@ static void forkChildren(const int number)
 if (!fs.empty())
 {
 LOG_WRN("File system of " << fs << " dangerously low on disk 
space");
+
+std::unique_lock DocBrokersLock(DocBrokersMutex);
 alertAllUsersInternal("error: cmd=internal kind=diskfull");
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104313] New: macOS: Lag when resizing window

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104313

Bug ID: 104313
   Summary: macOS: Lag when resizing window
   Product: LibreOffice
   Version: 5.2.3.3 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lae...@tdf.com

There is lots of lag in the UI when resizing a window on the mac. This happens
in OpenOffice to some extent as well, but its not nearly as bad.

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


[Libreoffice-bugs] [Bug 104312] New: macOS: Severe lag on drawing canvas in "Draw"

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104312

Bug ID: 104312
   Summary: macOS: Severe lag on drawing canvas in "Draw"
   Product: LibreOffice
   Version: 5.2.3.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lae...@tdf.com

When drawing a shape (a square for example) on the drawing canvas, there is
quite a bit of lag. The program's lag gets even worse when I try to select
things by dragging a square around objects. It takes a few seconds for the
selection square to even appear, and then a few more seconds for it to catch up
with the position of my mouse.

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


[Libreoffice-bugs] [Bug 104311] New: Scroll works on touch pad but not on mouse.

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104311

Bug ID: 104311
   Summary: Scroll works on touch pad but not on mouse.
   Product: LibreOffice
   Version: 5.2.3.1 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: zwei...@gmail.com

Description:
This error is also present in the version 5.1.6.1.

Basically, I can use the mouse normally in all application but Libreoffice.
I can scroll with the touchpad though, but not with the mouse.



Steps to Reproduce:
1.Scroll with the usb-mouse's middle button in a laptop
2.
3.

Actual Results:  
Nothing happens

Expected Results:
Scroll


Reproducible: Always

User Profile Reset: Yes

Additional Info:


User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:50.0) Gecko/20100101
Firefox/50.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 104175] LibO crashes when adding remote Windows/SMB share

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104175

--- Comment #3 from Michael Shuen  ---
(In reply to tommy27 from comment #2)
> please tell which LibO version you are using

Version: 5.2.3.3
Build ID: d54a8868f08a7b39642414cf2c8ef2f228f780cf

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


[Libreoffice-bugs] [Bug 104310] XLSX file looses data validations on import

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104310

Mike Kaganski  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

--- Comment #1 from Mike Kaganski  ---
Created attachment 129178
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129178=edit
Workbook with standard validations

This is the same file re-saved with usual validations, for comparison.

A patch is submitted to gerrit: https://gerrit.libreoffice.org/31456

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


[Libreoffice-bugs] [Bug 104310] New: XLSX file looses data validations on import

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104310

Bug ID: 104310
   Summary: XLSX file looses data validations on import
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

Created attachment 129177
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129177=edit
Workbook with validations in x14 namespace

Opening attached file with LO 5.2.3.3, the data validations for cells C1:C5 are
lost.

The problem is that the validations are specified inside an ext, using
x14:dataValidations items instead of plain top-level dataValidations.

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


[Libreoffice-bugs] [Bug 73596] FILEOPEN: docx Index field not get imported and hence get lost while saving

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73596

Luke  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 104061] FILESAVE: DOCX: columns saved in different pages after RT

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104061

Luke  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 86957] "Window -> Freeze" produces an .xlsx file incompatible with MSO 2010 "Freeze Panes"

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86957

Kevin Suo  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 104302] Invalid position of submenu

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104302

tommy27  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@quipo.it
 Ever confirmed|0   |1

--- Comment #2 from tommy27  ---
try upgrading to 5.1.6.2 or 5.2.3.3 and reset your user profile
(https://wiki.documentfoundation.org/UserProfile) to see if issue persists (a
screenshot of the bug would be appreciated)

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


[Libreoffice-bugs] [Bug 104308] Error opening xls files

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104308

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #3 from tommy27  ---
Not reproduced with 5.2.3.3 / Win8.1 x64

try uninstalling LibO and do a fresh new install to see if issue persists.

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


[Libreoffice-bugs] [Bug 104267] change outlines selection for tables and cells

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104267

tommy27  changed:

   What|Removed |Added

   Keywords||needsUXEval
 Status|NEEDINFO|NEW

--- Comment #3 from tommy27  ---
thanks for the mockup.
let's hear what the UX team thinks about it.

status 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 103943] FILESAVE: DOCX: Dot colours in chart are not preserved

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103943

Luke  changed:

   What|Removed |Added

   Priority|medium  |lowest
   Severity|normal  |trivial

--- Comment #4 from Luke  ---
MS Word 2013 refuses to open attachment 98675 "because it found a problem with
its Contents". This bugdoc is invalid.

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


[Libreoffice-bugs] [Bug 104309] scrollbar form is lost entirely when saving as xlsx; max scroll value lost when saving as xls

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104309

--- Comment #2 from stragu  ---
https://bugs.documentfoundation.org/show_bug.cgi?id=76567 is very much related
but is slightly different in its behaviour.

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


[Libreoffice-bugs] [Bug 104309] scrollbar form is lost entirely when saving as xlsx; max scroll value lost when saving as xls

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104309

--- Comment #1 from stragu  ---
Created attachment 129176
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129176=edit
original testing spreadsheet

original document after following described steps, before saving into different
formats

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


[Libreoffice-bugs] [Bug 76567] Compatibility problem with an Excel file with scrollbar

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76567

stragu  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 104309] scrollbar form is lost entirely when saving as xlsx; max scroll value lost when saving as xls

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104309

stragu  changed:

   What|Removed |Added

 CC||stephane.guil...@member.fsf
   ||.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=76
   ||567

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


[Libreoffice-bugs] [Bug 104309] New: scrollbar form is lost entirely when saving as xlsx; max scroll value lost when saving as xls

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104309

Bug ID: 104309
   Summary: scrollbar form is lost entirely when saving as xlsx;
max scroll value lost when saving as xls
   Product: LibreOffice
   Version: 5.2.3.2 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stephane.guil...@member.fsf.org

Description:
Scrollbar (aka slider) created via the "Form Controls" toolbar disappears after
saving as xlsx and opening again, and scrollbar max value is lost when saving
as xls.

Not sure if this is a FILESAVE or FILEOPEN issue.

Steps to Reproduce:
1. Open the "Form Controls" toolbar: View > Toolbars > Form Controls;
2. Activate "design mode";
3. Create a scrollbar by clicking the "Scrollbar" button and defining an area,
leaving the defaults (which include a max scroll value of 100);
4. Define a linked cell in "Control Properties > Data".
5. Toggle design mode and test the slider.
6. Save as ods, xlsx and xls.

Actual Results:  
- ODS opens and behaves normally.
- XLSX opens but the scrollbar has vanished and the cell value is the last one
that was set by the scrollbar before saving.
- XLS opens but the scrollbar max value changed to 0, and if changed back to
100 manually, the value only goes up to max scroll value -1 (i.e. 99 in this
case).

Expected Results:
Scrollbar should behave as initially set up, in all three formats.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101
Firefox/50.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 103805] HP K209a Problem on windows 10 home 64bit

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103805

--- Comment #3 from npz  ---
(In reply to npz from comment #2)
> I downloaded your file as you recommened and I have tested it on windows 10
> x64 , the printer propeties now display.
> 
> https://www.mx7.com/i/198/Gx5Lyd.jpg
> 
> but the characters is display strange. I just ignore it, right?

https://www.mx7.com/i/d44/25OqAL.jpg

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


[Libreoffice-bugs] [Bug 76567] Compatibility problem with an Excel file with scrollbar

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76567

--- Comment #7 from stragu  ---
Confirmed with LO 5.2.3~rc2-0ubuntu1~trusty1 on KXStudio 14.04

Thoroughly tested using the attachment 96312:

* Original file (xlsx) only allows to go up to 16 using the scrollbar (even
though the control properties show "20" as max value);
* If original file is saved as ods and opened, it also only allows to go up to
16 using the scrollbar (even though the control properties show "20" as max
value);
* If original file is saved as xls and opened, the max value is set to 0 in the
control properties. If max is set to 20 manually, the scrollbar can only reach
19.

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


[Libreoffice-bugs] [Bug 103805] HP K209a Problem on windows 10 home 64bit

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103805

npz  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from npz  ---
I downloaded your file as you recommened and I have tested it on windows 10 x64
, the printer propeties now display.

https://www.mx7.com/i/198/Gx5Lyd.jpg

but the characters is display strange. I just ignore it, right?

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


[Libreoffice-bugs] [Bug 102621] DOCX import: Chart with Empty Data Incorrectly Imported

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102621

Luke  changed:

   What|Removed |Added

Summary|DOCX import: Incorrect  |DOCX import: Chart with
   |Chart import|Empty Data Incorrectly
   ||Imported

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


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

2016-11-30 Thread Henry Castro
 loleaflet/src/control/Control.CharacterMap.js |   83 +-
 1 file changed, 57 insertions(+), 26 deletions(-)

New commits:
commit fc6a1f4bf18633d99a3281bce4f80b7d537caacc
Author: Henry Castro 
Date:   Wed Nov 30 21:08:16 2016 -0400

loleaflet: limit Unicode character ranges

There are very big ranges, that's probably not common use for final users

diff --git a/loleaflet/src/control/Control.CharacterMap.js 
b/loleaflet/src/control/Control.CharacterMap.js
index 3ec35ee..c79f371 100644
--- a/loleaflet/src/control/Control.CharacterMap.js
+++ b/loleaflet/src/control/Control.CharacterMap.js
@@ -39,9 +39,11 @@ L.Control.CharacterMap = L.Control.extend({
{ name: _('Myanmar'),   start: 
0x1000, end: 0x109F }, /*UBLOCK_MYANMAR=28*/
{ name: _('Basic Georgian'),start: 
0x10A0, end: 0x10FF }, /*UBLOCK_GEORGIAN=29*/
{ name: _('Hangul Jamo'),   start: 
0x1100, end: 0x11FF }, /*UBLOCK_HANGUL_JAMO=30*/
-   { name: _('Ethiopic'),  start: 
0x1200, end: 0x137F }, /*UBLOCK_ETHIOPIC=31*/
+   //{ name: _('Ethiopic'),start: 
0x1200, end: 0x137F }, /*UBLOCK_ETHIOPIC=31*/
+   { name: _('Ethiopic'),  start: 
0x1200, end: 0x12FF }, /*UBLOCK_ETHIOPIC=31*/
{ name: _('Cherokee'),  start: 
0x13A0, end: 0x13FF }, /*UBLOCK_CHEROKEE=32*/
-   { name: _('Canadian Aboriginal Syllables'), start: 
0x1400, end: 0x167F }, /*UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS=33*/
+   //{ name: _('Canadian Aboriginal Syllables'),   start: 
0x1400, end: 0x167F }, /*UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS=33*/
+   { name: _('Canadian Aboriginal Syllables'), start: 
0x1400, end: 0x14FF }, /*UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS=33*/
{ name: _('Ogham'), start: 
0x1680, end: 0x169F }, /*UBLOCK_OGHAM=34*/
{ name: _('Runic'), start: 
0x16A0, end: 0x16FF }, /*UBLOCK_RUNIC=35*/
{ name: _('Khmer'), start: 
0x1780, end: 0x17FF }, /*UBLOCK_KHMER=36*/
@@ -78,18 +80,28 @@ L.Control.CharacterMap = L.Control.extend({
{ name: _('Bopomofo Extended'), start: 
0x31A0, end: 0x31BF }, /*UBLOCK_BOPOMOFO_EXTENDED=67*/
{ name: _('Enclosed CJK Letters and Months'),   start: 
0x3200, end: 0x32FF }, /*UBLOCK_ENCLOSED_CJK_LETTERS_AND_MONTHS=68*/
{ name: _('CJK Compatibility'), start: 
0x3300, end: 0x33FF }, /*UBLOCK_CJK_COMPATIBILITY=69*/
-   { name: _('CJK Unified Ideographs Extension A'),start: 
0x3400, end: 0x4DB5 }, /*UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A=70*/
-   { name: _('CJK Unified Ideographs'),start: 
0x4E00, end: 0x9FFF }, /*UBLOCK_CJK_UNIFIED_IDEOGRAPHS=71*/
-   { name: _('Yi Syllables'),  start: 
0xA000, end: 0xA48F }, /*UBLOCK_YI_SYLLABLES=72*/
+   //{ name: _('CJK Unified Ideographs Extension A'),  start: 
0x3400, end: 0x4DB5 }, /*UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A=70*/
+   { name: _('CJK Unified Ideographs Extension A'),start: 
0x3400, end: 0x34FF }, /*UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A=70*/
+   //{ name: _('CJK Unified Ideographs'),  start: 
0x4E00, end: 0x9FFF }, /*UBLOCK_CJK_UNIFIED_IDEOGRAPHS=71*/
+   { name: _('CJK Unified Ideographs'),start: 
0x4E00, end: 0x4EFF }, /*UBLOCK_CJK_UNIFIED_IDEOGRAPHS=71*/
+
+   { name: _('Yi Syllables'),  start: 
0xA000, end: 0xA0FF }, /*UBLOCK_YI_SYLLABLES=72*/
+   //{ name: _('Yi Syllables'),start: 
0xA000, end: 0xA48F }, /*UBLOCK_YI_SYLLABLES=72*/
{ name: _('Yi Radicals'),   start: 
0xA490, end: 0xA4CF }, /*UBLOCK_YI_RADICALS=73*/
-   { name: _('Hangul'),start: 
0xAC00, end: 0xD7AF }, /*UBLOCK_HANGUL_SYLLABLES=74*/
-   { name: _('High Surrogates'),   start: 
0xD800, end: 0xDB7F }, /*UBLOCK_HIGH_SURROGATES =75*/
+   //{ name: _('Hangul'),  start: 
0xAC00, end: 0xD7AF }, /*UBLOCK_HANGUL_SYLLABLES=74*/
+   { name: _('Hangul'),start: 
0xAC00, end: 0xACFF }, /*UBLOCK_HANGUL_SYLLABLES=74*/
+   //{ name: _('High Surrogates'), start: 
0xD800, end: 0xDB7F }, /*UBLOCK_HIGH_SURROGATES =75*/
+   

[Libreoffice-bugs] [Bug 104301] Double-clicking on a tab of the undocked sidebar, closes the sidebar

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104301

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
Version|5.4.0.0.alpha0+ |5.2.3.3 release
 Blocks||103459
 OS|Windows (All)   |All
   Severity|normal  |minor

--- Comment #1 from Aron Budea  ---
Confirmed with 5.2.3.3 / Windows 7 and Ubuntu 16.04.


Referenced Bugs:

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

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103459

Aron Budea  changed:

   What|Removed |Added

 Depends on||104301


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104301
[Bug 104301] Double-clicking on a tab of the undocked sidebar, closes the
sidebar
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104308] Error opening xls files

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104308

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
 OS|other   |Linux (All)

--- Comment #2 from Aron Budea  ---
Not reproduced with 5.2.3.3 / Ubuntu 16.04.

Another interesting observation by the reporter that seemed to be similar to
bug 47953, might or might not be related:

[00:33:33]  I don't know if this can help
[00:33:45]  but also when I try to create new document
[00:33:53]  I obtain this message two time
[00:34:02]  Error loading BASIC of document
file:///home/walter/.config/libreoffice/4/user/basic/Standard/script.xlb/:
[00:34:02]  General Error.
[00:34:02]  General input/output error.
[00:34:21]  then I obtain the new sheet
[00:34:54]  but where I want save it in xls file (97-2003) I obtain
this error:
[00:34:54]  Error saving the document Untitled1:
[00:34:55]  Read-Error.
[00:34:55]  Internal import error.

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


[Libreoffice-bugs] [Bug 104013] glyphs positioned at left margin of menu entries are clipped when OpenGL rendered with HarfBuzz common layout

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104013

--- Comment #16 from Commit Notification 
 ---
Khaled Hosny committed a patch related to this issue.
It has been pushed to "libreoffice-5-3":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=c7e7a634cf5941fffd97102fe4252aee7445e36b=libreoffice-5-3

tdf#104013: Band aid for overzealous clipping

It will be available in 5.3.0.1.

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

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

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


[Libreoffice-bugs] [Bug 104013] glyphs positioned at left margin of menu entries are clipped when OpenGL rendered with HarfBuzz common layout

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104013

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.4.0|target:5.4.0 target:5.3.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-commits] core.git: Branch 'libreoffice-5-3' - vcl/win

2016-11-30 Thread Khaled Hosny
 vcl/win/gdi/winlayout.cxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit c7e7a634cf5941fffd97102fe4252aee7445e36b
Author: Khaled Hosny 
Date:   Wed Nov 30 14:42:19 2016 +0200

tdf#104013: Band aid for overzealous clipping

Change-Id: If66b7a61f4165ea2e504625cde36161adf945a53
Reviewed-on: https://gerrit.libreoffice.org/31418
Tested-by: Jenkins 
Reviewed-by: Khaled Hosny 
(cherry picked from commit ba3e52699bc05911bc1f9e3cbd5d1332902c736a)
Reviewed-on: https://gerrit.libreoffice.org/31441

diff --git a/vcl/win/gdi/winlayout.cxx b/vcl/win/gdi/winlayout.cxx
index 4941ac7..c693b31 100644
--- a/vcl/win/gdi/winlayout.cxx
+++ b/vcl/win/gdi/winlayout.cxx
@@ -3427,6 +3427,11 @@ bool D2DWriteTextOutRenderer::GetDWriteInkBox(SalLayout 
const , Rectangl
 rOut.Union(b);
 }
 
+// The clipping rectangle is sometimes overzealous, add an extra pixel to
+// remedy this.
+if (!rOut.IsEmpty())
+rOut.expand(1);
+
 return true;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104259] FILEOPEN DOCX: Incorrect text alignment

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104259

--- Comment #8 from Jacques Guilleron  ---
Created attachment 129175
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129175=edit
View in LO 5.3.0.0.alpha1

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - sc/uiconfig

2016-11-30 Thread Gabor Kelemen
 sc/uiconfig/scalc/ui/cellprotectionpage.ui |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f2f495ea0fb69031cd1b394176e0a91191b594d8
Author: Gabor Kelemen 
Date:   Tue Nov 29 10:04:19 2016 +0100

tdf#104177 Modify helper label to reflect menu changes

Change-Id: I4adc48af562b934975b555488758546d2ddc1203
Reviewed-on: https://gerrit.libreoffice.org/31348
Tested-by: Jenkins 
Reviewed-by: Andras Timar 
(cherry picked from commit 2c4bb8d799e7ae27648a575872e521d62f6e53ac)
Reviewed-on: https://gerrit.libreoffice.org/31453
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/sc/uiconfig/scalc/ui/cellprotectionpage.ui 
b/sc/uiconfig/scalc/ui/cellprotectionpage.ui
index c619dfc..83e0bc3 100644
--- a/sc/uiconfig/scalc/ui/cellprotectionpage.ui
+++ b/sc/uiconfig/scalc/ui/cellprotectionpage.ui
@@ -98,7 +98,7 @@
 0
 Cell protection 
is only effective after the current sheet has been protected.
 
-Select 'Protect Document' from the 'Tools' menu, and specify 
'Sheet'.
+Select 'Protect Sheet' from the 'Tools' menu.
 True
 52
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104259] FILEOPEN DOCX: Incorrect text alignment

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104259

Jacques Guilleron  changed:

   What|Removed |Added

 CC||guillero...@aol.com

--- Comment #7 from Jacques Guilleron  ---
Hi Telesto, Tommy,

I don't reproduce with
LO 5.1.0.3 (x64) Build ID: 5e3e00a007d9b3b6efb6797a8b8e57b51ab1f737
CPU Threads: 2; OS Version: Windows 6.1; UI Render: default; 
Locale : fr-FR (fr_FR)
nor with
LO 5.3.0.0.alpha1 Build ID: f4ca1573fcf445164c068c1046ab5d084e1b005f
Threads CPU : 2; Version de l'OS :Windows 6.1; UI Render : par défaut; 
Locale : fr-FR (fr_FR); Calc: CL
under Windows 7 Home.

Regards,

Jacques

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


[Libreoffice-bugs] [Bug 102621] DOCX import: Incorrect Chart import

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102621

Adolfo Jayme  changed:

   What|Removed |Added

 Attachment #127738|application/octet-stream|application/vnd.openxmlform
  mime type||ats-officedocument.wordproc
   ||essingml.document

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


[Libreoffice-bugs] [Bug 104306] Invalid implementation of scrolling in web mode

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104306

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
Can not reproduce, no visual glitches entering Web view mode on Windows 8.1 Pro
64-bit en-US with either

Version: 5.4.0.0.alpha0+
Build ID: 2e0ab512592e2e134faf9612a293fb8fdd0527d0
CPU Threads: 8; OS Version: Windows 6.29; UI Render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2016-11-29_23:29:46
Locale: en-US (en_US); Calc: CL

Version: 5.2.3.3 (x64)
Build ID: d54a8868f08a7b39642414cf2c8ef2f228f780cf
CPU Threads: 8; OS Version: Windows 6.29; UI Render: default; 
Locale: en-US (en_US); Calc: group

and no issues with either when opened with OpenGL rendering.

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


[Libreoffice-bugs] [Bug 104308] Error opening xls files

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104308

--- Comment #1 from kurtz  ---
Created attachment 129174
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129174=edit
a xls file sample

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


[Libreoffice-bugs] [Bug 104308] New: Error opening xls files

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104308

Bug ID: 104308
   Summary: Error opening xls files
   Product: LibreOffice
   Version: 5.2.3.3 release
  Hardware: x86-64 (AMD64)
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kurtzv...@gmail.com

Description:
When I try to open a xsl file I obtain always a popup with the same error:
Read-Error. Internal import error.

Steps to Reproduce:
1. Open any xls file with localc or soffice (I attached an example)

Actual Results:  
Popup with: Read-Error. Internal import error.

Expected Results:
Open the file correctly


Reproducible: Always

User Profile Reset: Yes

Additional Info:
SO Sabayon
I obtain this error after an update from version 5.1.4.2 to 5.2.3.3



User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:50.0) Gecko/20100101
Firefox/50.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 104305] Can't open html files

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104305

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #2 from V Stuart Foote  ---
Opens immediately into Writer/Web without issue

Windows 8.1 Pro 64-bit en-US with
Version: 5.4.0.0.alpha0+
Build ID: 2e0ab512592e2e134faf9612a293fb8fdd0527d0
CPU Threads: 8; OS Version: Windows 6.29; UI Render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2016-11-29_23:29:46
Locale: en-US (en_US); Calc: CL

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


[Libreoffice-bugs] [Bug 104307] New: Replace error message " No SDBC driver was found for the given URL" with a helpful one

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104307

Bug ID: 104307
   Summary: Replace error message "No SDBC driver was found for
the given URL" with a helpful one
   Product: LibreOffice
   Version: 5.1.6.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: krich...@posteo.de

Description:
Opening the default address data source in LibreOffice on Ubuntu 16.10 causes
the error `No SDBC driver was found for the given URL`. This error message is
unhelpful and the user needs to dig through tons of search engine results to
figure out what it actually means (one has to install LibreOffice from the
website). The error message thus needs to be enhances with this information at
least. There might be other causes for the error message, so they probably need
to be added as well.

Actual Results:  
Unhelpful error message

Expected Results:
Helpful error message


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101
Firefox/50.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 47953] : Error messages when opening LibreOffice

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47953

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
   Hardware|Other   |All
   See Also||https://bz.apache.org/ooo/s
   ||how_bug.cgi?id=59890,
   ||https://bugzilla.redhat.com
   ||/show_bug.cgi?id=748232

--- Comment #9 from Aron Budea  ---
Someone reported symptoms like this today in #libreoffice-qa, so I assume the
bug still exists.

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


[Libreoffice-bugs] [Bug 51969] Feature Request: Use CardDav as an address book source

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51969

Kalle Richter  changed:

   What|Removed |Added

 CC||krich...@posteo.de

--- Comment #2 from Kalle Richter  ---
Since this seems to have been ignored by devs, I'd like to stress again how
important it is to have CardDAV support in LibreOffice being the only
cross-platform protocol/format for addresses.

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


[Libreoffice-bugs] [Bug 104292] Writer: resizing image from the right to the left isn' t working properly

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104292

Jacques Guilleron  changed:

   What|Removed |Added

 CC||guillero...@aol.com

--- Comment #2 from Jacques Guilleron  ---
Hi Telesto,

Your actual results shows to you that object's alignment is Center Horizontal.
This is confirmed by right clicking, next choosing Properties...
at Type > Position > Horizontal.
You can change it there to left or right alignment, 
or use the appropriate buttons in Image Toolbar.

Regards,

Jacques

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


[Libreoffice-bugs] [Bug 104306] New: Invalid implementation of scrolling in web mode

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104306

Bug ID: 104306
   Summary: Invalid implementation of scrolling in web mode
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ahx2...@gmail.com

Description:
Screen not updated.

Steps to Reproduce:
1. Download doc file
   https://cse.sc.edu/~wyxu/719Spring10/papers/JesseWalkerWEP.doc
2. Open doc file in Writer ("File", "Open").
3. Switch to web view ("View", "Web").
4. Rotate mouse wheel to scroll document.

Actual Results:  
Text partially visible (for example, only top or bottom of lines). There are
white areas.
Press "UpArrow" or "DownArrow" to move cursor in white areas; cursor moved like
in white text on white background.
Some times Writer draw text in white areas.
Scroll step to big.

Expected Results:
Text must be visible (no white areas).
Scroll step must be equal height of one line.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:37.0) Gecko/20100101
Firefox/37.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 104302] Invalid position of submenu

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104302

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Not reproducible.
Versión: 5.1.6.1 (x64)
Id. de compilación: f3e25ec0581f5012f54d8810dcddd5824f4ee374
Subprocesos de CPU: 1; Versión de SO: Windows 6.19; Renderizado de IU:
predeterminado; 
Configuración regional: es-ES (es_ES); Calc: group
Version: 5.2.3.3 (x64)
Build ID: d54a8868f08a7b39642414cf2c8ef2f228f780cf
CPU Threads: 4; OS Version: Windows 6.19; UI Render: GL; 
Locale: es-ES (es_ES); 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 93085] Application window is too high, status bar is not visible ( 1024x600 resolution), size of module launch inherited from the StartCenter which gets a fixed minimum height

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93085

m.a.riosv  changed:

   What|Removed |Added

 CC||ahx2...@gmail.com

--- Comment #25 from m.a.riosv  ---
*** Bug 104304 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 104304] Do not limit window height

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104304

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||miguelangelrv@libreoffice.o
   ||rg
 Resolution|--- |DUPLICATE

--- Comment #1 from m.a.riosv  ---
I think a duplicate. Please if you are not agree reopen it.

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

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


[Libreoffice-bugs] [Bug 104305] Can't open html files

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104305

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Opens instantaly with:
Version: 5.2.3.3 (x64)
Build ID: d54a8868f08a7b39642414cf2c8ef2f228f780cf
CPU Threads: 4; OS Version: Windows 6.19; UI Render: GL; 
Locale: es-ES (es_ES); 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 104305] New: Can't open html files

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104305

Bug ID: 104305
   Summary: Can't open html files
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ahx2...@gmail.com

Description:
Buggy html converter.

Steps to Reproduce:
1. Save page
   https://en.wikipedia.org/wiki/LibreOffice
   as html file.
2. Open html file in Writer ("File", "Open").

Actual Results:  
LibreOffice become unresponsive.
CPU load is 100%.
LibreOffice can be terminated
by sending SIGTERM.

Expected Results:
Open html file.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/42.0.2311.90 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 104303] Printers & Scanners default paper size set US Letter causes text to be skewed in a strange way.

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104303

--- Comment #1 from Ben Conder  ---
Created attachment 129173
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129173=edit
Document that gets Margin issues for me.

If I open this document on the Linux LibreOffice it works fine. Only the OS X
versions have problems for me.

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


[Libreoffice-bugs] [Bug 104304] New: Do not limit window height

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104304

Bug ID: 104304
   Summary: Do not limit window height
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ahx2...@gmail.com

Description:
Can't reduce window height,
even if screen height
smaller than window height.

Steps to Reproduce:
Try to reduce window height.

Actual Results:  
Minimal window height
bigger than screen height.
Bottom of window not visible on screen.

Expected Results:
Do not limit window height.
Maximized window must have same dimensions as screen.
Entire window must be visible on screen.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101
Firefox/37.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 104303] New: Printers & Scanners default paper size set US Letter causes text to be skewed in a strange way.

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104303

Bug ID: 104303
   Summary: Printers & Scanners default paper size set US Letter
causes text to be skewed in a strange way.
   Product: LibreOffice
   Version: 5.1.6.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: b...@conder.us

Created attachment 129172
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129172=edit
Showing the differences to print preview vs the page. Printing the page looks
the same as the preview.

If you have your default paper size set to US Letter on Mac OS X and print
something all the text is skewed and incorrect. If I put my default paper size
to A4 in Mac OS X printer settings it will print correctly. 

LibreOffice is set to use 8.5x11(US Letter). 

Margins are 1 inch. Header should .5 inches from the top. 

It does it with any new documents I make or new documents made with Microsoft
Office Word. 

Bug is also in presentation. 

Doesn't matter what printer I use.

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


[Libreoffice-bugs] [Bug 86899] [META] Requests for the addition of UNO commands

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86899
Bug 86899 depends on bug 83956, which changed state.

Bug 83956 Summary: TRACK CHANGES: uno commands for Accept All and Reject All
https://bugs.documentfoundation.org/show_bug.cgi?id=83956

   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 83946] [META] Bugs for tracking changes

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83946
Bug 83946 depends on bug 83956, which changed state.

Bug 83956 Summary: TRACK CHANGES: uno commands for Accept All and Reject All
https://bugs.documentfoundation.org/show_bug.cgi?id=83956

   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 101977] TRACK CHANGES: More uno commands for accepting/ rejecting changes

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101977

--- Comment #2 from Yousuf Philips (jay)  ---
*** Bug 83956 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 83956] TRACK CHANGES: uno commands for Accept All and Reject All

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83956

Yousuf Philips (jay)  changed:

   What|Removed |Added

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

--- Comment #2 from Yousuf Philips (jay)  ---


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

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


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

2016-11-30 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/fods/mina.fods | 5423 +++
 1 file changed, 5423 insertions(+)

New commits:
commit c5bc7820482c9dc69fcbd54d8c3a8c0ed27c8d30
Author: Zdeněk Crhonek 
Date:   Wed Nov 30 21:58:05 2016 +0100

add MINA test case

Change-Id: I746f85503aef14d3e5730ffcf67689ae00dc8f10
Reviewed-on: https://gerrit.libreoffice.org/31442
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/qa/unit/data/functions/fods/mina.fods 
b/sc/qa/unit/data/functions/fods/mina.fods
new file mode 100644
index 000..4539941
--- /dev/null
+++ b/sc/qa/unit/data/functions/fods/mina.fods
@@ -0,0 +1,5423 @@
+
+
+http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:scr
 ipt="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:form
 x="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
+ 
2016-11-30T19:26:45.213722795P0D1LibreOfficeDev/5.3.0.0.alpha1$Linux_X86_64
 
LibreOffice_project/883024d657fb45c7da459017d2f936aac5644bfb
+ 
+  
+   0
+   0
+   120104
+   16954
+   
+
+ view1
+ 
+  
+   2
+   8
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   75
+   60
+   true
+   false
+  
+  
+   4
+   1
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   75
+   60
+   true
+   false
+  
+ 
+ Sheet2
+ 1241
+ 0
+ 75
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ true
+ false
+ false
+ 1270
+ 1270
+ 1
+ 1
+ true
+ false
+
+   
+  
+  
+   7
+   false
+   false
+   true
+   true
+   false
+   false
+   false
+   1270
+   1270
+   true
+   true
+   true
+   true
+   true
+   false
+   12632256
+   false
+   Lexmark-E352dn
+   
+
+ cs
+ CZ
+ 
+ 
+ 
+
+
+ de
+ DE
+ 
+ 
+ 
+
+
+ en
+ US
+ 
+ 
+ 
+
+
+ nl
+ NL
+ 
+ 
+ 
+
+   
+   true
+   true
+   3
+   1
+   true
+   1
+   true
+   lgH+/0xleG1hcmstRTM1MmRuQ1VQUzpMZXhtYXJrLUUzNTJkbgAWAAMAtwAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1FMzUyZG4Kb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhClBhZ2VTaXplOkxldHRlcgAAEgBDT01QQVRfRFVQTEVYX01PREUPAER1cGxleE1vZGU6Ok9mZg==
+   false
+   0
+  
+ 
+ 
+  
+   http://openoffice.org/2004/office; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
+
+   
+  
+ 
+ 
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+ 
+ 
+  
+   
+   
+  
+  
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   
+   -
+   
+
+   Kč
+   
+  
+  
+
+   
+
+  
+  
+
+   (
+   
+   )
+  
+  
+
+   -
+   
+
+  
+  
+   
+
+   
+   
+   
+  
+  
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   -
+   
+
+   Kč
+   
+  
+  
+   
+
+   Kč
+  
+  
+   -

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

2016-11-30 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/fods/minifs.fods | 5797 +
 1 file changed, 5797 insertions(+)

New commits:
commit 931facfec45934cfbe4945c8122ca8f87e55e7d1
Author: Zdeněk Crhonek 
Date:   Wed Nov 30 22:00:15 2016 +0100

add MINIFS test case

Change-Id: I7b4403dda5e4f06ad51618f3aac50b17103ee265
Reviewed-on: https://gerrit.libreoffice.org/31443
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/qa/unit/data/functions/fods/minifs.fods 
b/sc/qa/unit/data/functions/fods/minifs.fods
new file mode 100644
index 000..a171c13
--- /dev/null
+++ b/sc/qa/unit/data/functions/fods/minifs.fods
@@ -0,0 +1,5797 @@
+
+
+http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:scr
 ipt="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:form
 x="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
+ 
2016-11-30T21:59:28.972566352P0D1LibreOfficeDev/5.3.0.0.alpha1$Linux_X86_64
 
LibreOffice_project/883024d657fb45c7da459017d2f936aac5644bfb
+ 
+  
+   0
+   0
+   121969
+   20602
+   
+
+ view1
+ 
+  
+   2
+   8
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   75
+   60
+   true
+   false
+  
+  
+   4
+   10
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   75
+   60
+   true
+   false
+  
+ 
+ Sheet2
+ 1241
+ 0
+ 75
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ true
+ false
+ false
+ 1270
+ 1270
+ 1
+ 1
+ true
+ false
+
+   
+  
+  
+   7
+   false
+   false
+   true
+   true
+   false
+   false
+   false
+   1270
+   1270
+   true
+   true
+   true
+   true
+   true
+   false
+   12632256
+   false
+   Lexmark-E352dn
+   
+
+ cs
+ CZ
+ 
+ 
+ 
+
+
+ de
+ DE
+ 
+ 
+ 
+
+
+ en
+ US
+ 
+ 
+ 
+
+
+ nl
+ NL
+ 
+ 
+ 
+
+   
+   true
+   true
+   3
+   1
+   true
+   1
+   true
+   lgH+/0xleG1hcmstRTM1MmRuQ1VQUzpMZXhtYXJrLUUzNTJkbgAWAAMAtwAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1FMzUyZG4Kb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhClBhZ2VTaXplOkxldHRlcgAAEgBDT01QQVRfRFVQTEVYX01PREUPAER1cGxleE1vZGU6Ok9mZg==
+   false
+   0
+  
+ 
+ 
+  
+   http://openoffice.org/2004/office; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
+
+   
+  
+ 
+ 
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+ 
+ 
+  
+   
+   
+  
+  
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   
+   -
+   
+
+   Kč
+   
+  
+  
+
+   
+
+  
+  
+
+   (
+   
+   )
+  
+  
+
+   -
+   
+
+  
+  
+   
+
+   
+   
+   
+  
+  
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   -
+   
+
+   Kč
+   
+  
+  
+   
+
+   Kč
+  

[Libreoffice-bugs] [Bug 83946] [META] Bugs for tracking changes

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83946
Bug 83946 depends on bug 104006, which changed state.

Bug 104006 Summary: TRACK CHANGES: Needed an option provides "never don't show 
tracking info" when open a file.
https://bugs.documentfoundation.org/show_bug.cgi?id=104006

   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 104006] TRACK CHANGES: Needed an option provides "never don' t show tracking info" when open a file.

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104006

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC|libreoffice-ux-advise@lists |philip...@hotmail.com
   |.freedesktop.org|
 Resolution|--- |WONTFIX

--- Comment #15 from Yousuf Philips (jay)  ---
As the state of 'Show track changes' is saved in a document, there isnt a need
for such an option to be available for advanced users. So agree with others
that this is 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-commits] core.git: sc/qa

2016-11-30 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/fods/fake_test_file.fods | 1221 ++
 sc/qa/unit/data/functions/fods/mode.sngl.fods  | 4207 +
 2 files changed, 5428 insertions(+)

New commits:
commit 8b39a58d02c12dfb88c0daaafa0d5072162dc48b
Author: Zdeněk Crhonek 
Date:   Wed Nov 30 22:35:33 2016 +0100

add MODE.SNGL test file

Change-Id: I1943547d22df7580467814300e4d372fd20b197f
Reviewed-on: https://gerrit.libreoffice.org/31448
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/qa/unit/data/functions/fods/fake_test_file.fods 
b/sc/qa/unit/data/functions/fods/fake_test_file.fods
new file mode 100644
index 000..72a91bce
--- /dev/null
+++ b/sc/qa/unit/data/functions/fods/fake_test_file.fods
@@ -0,0 +1,1221 @@
+
+
+http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:scr
 ipt="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:form
 x="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
+ 
2016-05-23T19:52:21.032366237P0D1LibreOfficeDev/5.3.0.0.alpha1$Linux_X86_64
 
LibreOffice_project/883024d657fb45c7da459017d2f936aac5644bfb
+ 
+  
+   0
+   0
+   23253
+   2002
+   
+
+ view1
+ 
+  
+   0
+   15
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   85
+   60
+   true
+   false
+  
+  
+   4
+   17
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   85
+   60
+   true
+   false
+  
+ 
+ Sheet1
+ 591
+ 0
+ 85
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ false
+ false
+ false
+ 1270
+ 1270
+ 1
+ 1
+ true
+ false
+
+   
+  
+  
+   7
+   false
+   false
+   true
+   true
+   false
+   false
+   false
+   1270
+   1270
+   true
+   true
+   true
+   true
+   true
+   false
+   12632256
+   false
+   Lexmark-E352dn
+   
+
+ en
+ US
+ 
+ 
+ 
+
+
+ zh
+ CN
+ 
+ :!),.:;?]}¢、。〉》」』】〕〗〞︰︱︳﹐、﹒﹔﹕﹖﹗﹚﹜﹞!),.:;?|}︴︶︸︺︼︾﹀﹂﹄﹏、~ï¿
 ã€…‖•·ˇˉ―--′’”
+ ([{£¥‵〈《「『【〔〖([{£¥〝︵︷︹︻︽︿﹁﹃﹙﹛﹝({“‘
+
+   
+   true
+   true
+   3
+   1
+   true
+   1
+   true
+   rgH+/0xleG1hcmstRTM1MmRuQ1VQUzpMZXhtYXJrLUUzNTJkbgAWAAMAzwAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1FMzUyZG4Kb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhCkR1cGxleDpOb25lAElucHV0U2xvdDpUcmF5MQBQYWdlU2l6ZTpBNAAAEgBDT01QQVRfRFVQTEVYX01PREUPAER1cGxleE1vZGU6Ok9mZg==
+   false
+   0
+  
+ 
+ 
+  
+   http://openoffice.org/2004/office; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
+
+   
+  
+ 
+ 
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+ 
+ 
+  
+   
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   
+   -
+   

[Libreoffice-ux-advise] [Bug 104006] TRACK CHANGES: Needed an option provides "never don' t show tracking info" when open a file.

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104006

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC|libreoffice-ux-advise@lists |philip...@hotmail.com
   |.freedesktop.org|
 Resolution|--- |WONTFIX

--- Comment #15 from Yousuf Philips (jay)  ---
As the state of 'Show track changes' is saved in a document, there isnt a need
for such an option to be available for advanced users. So agree with others
that this is WONTFIX.

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


[Libreoffice-bugs] [Bug 104273] Footer truncated when saved in XLT format

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104273

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||miguelangelrv@libreoffice.o
   ||rg
 Resolution|--- |NOTABUG

--- Comment #2 from m.a.riosv  ---
Seem there is a specification limit on 250 characters.

https://support.office.com/en-us/article/Excel-specifications-and-limits-16c69c74-3d6a-4aaf-ba35-e6eb276e8eaa

search there for footer.

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


[Libreoffice-bugs] [Bug 104302] New: Invalid position of submenu

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104302

Bug ID: 104302
   Summary: Invalid position of submenu
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ahx2...@gmail.com

Description:
For small screen resolutions
submenu may be partially visible on screen.

Steps to Reproduce:
1. Open LibreOffice Calc.
2. Press keys "Alt+v", "t".
   Submenu "Toolbars" displayed.

Actual Results:  
Right part of submenu not visible on screen.
For example, only "Form Des" displayed
(instead of "Form Design";
text "ign" not visible on screen).

Expected Results:
Calculate position of submenu correctly.
Entire submenu must be visible on screen.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:37.0) Gecko/20100101
Firefox/37.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: sc/CppunitTest_sc_addin_functions_test.mk sc/CppunitTest_sc_array_functions_test.mk sc/CppunitTest_sc_datetime_functions_test.mk sc/CppunitTest_sc_financial_functions_t

2016-11-30 Thread Markus Mohrhard
 sc/CppunitTest_sc_addin_functions_test.mk  |  116 
 sc/CppunitTest_sc_array_functions_test.mk  |  116 
 sc/CppunitTest_sc_datetime_functions_test.mk   |  116 
 sc/CppunitTest_sc_financial_functions_test.mk  |  116 
 sc/CppunitTest_sc_information_functions_test.mk|  116 
 sc/CppunitTest_sc_logical_functions_test.mk|  116 
 sc/CppunitTest_sc_mathematical_functions_test.mk   |  116 
 sc/CppunitTest_sc_spreadsheet_functions_test.mk|  116 
 sc/CppunitTest_sc_statistical_functions_test.mk|  116 
 sc/CppunitTest_sc_text_functions_test.mk   |  116 
 sc/Module_sc.mk|   10 
 sc/qa/unit/data/functions/addin/fods/rot13.fods| 1251 ++
 sc/qa/unit/data/functions/array/fods/transpose.fods| 6956 
 sc/qa/unit/data/functions/date_time/fods/year.fods | 1008 ++
 sc/qa/unit/data/functions/financial/fods/pv.fods   | 2581 +
 sc/qa/unit/data/functions/fods/and.fods| 2043 
 sc/qa/unit/data/functions/fods/column.fods | 7377 -
 sc/qa/unit/data/functions/fods/counta.fods | 3486 
 sc/qa/unit/data/functions/fods/if.fods | 2467 -
 sc/qa/unit/data/functions/fods/not.fods| 2277 -
 sc/qa/unit/data/functions/fods/or.fods | 2318 -
 sc/qa/unit/data/functions/fods/pv.fods | 2581 -
 sc/qa/unit/data/functions/fods/right.fods  | 1491 ---
 sc/qa/unit/data/functions/fods/rot13.fods  | 1251 --
 sc/qa/unit/data/functions/fods/sign.fods   | 2460 -
 sc/qa/unit/data/functions/fods/transpose.fods  | 6956 
 sc/qa/unit/data/functions/fods/type.fods   | 2021 
 sc/qa/unit/data/functions/fods/xor.fods| 2320 -
 sc/qa/unit/data/functions/fods/year.fods   | 1008 --
 sc/qa/unit/data/functions/information/fods/type.fods   | 2021 
 sc/qa/unit/data/functions/logical/fods/and.fods| 2043 
 sc/qa/unit/data/functions/logical/fods/if.fods | 2467 +
 sc/qa/unit/data/functions/logical/fods/not.fods| 2277 +
 sc/qa/unit/data/functions/logical/fods/or.fods | 2318 +
 sc/qa/unit/data/functions/logical/fods/xor.fods| 2320 +
 sc/qa/unit/data/functions/mathematical/fods/sign.fods  | 2460 +
 sc/qa/unit/data/functions/spreadsheet/fods/column.fods | 7377 +
 sc/qa/unit/data/functions/statistical/fods/counta.fods | 3486 
 sc/qa/unit/data/functions/text/fods/right.fods | 1491 +++
 sc/qa/unit/functions_addin.cxx |   33 
 sc/qa/unit/functions_array.cxx |   33 
 sc/qa/unit/functions_datetime.cxx  |   33 
 sc/qa/unit/functions_financial.cxx |   33 
 sc/qa/unit/functions_information.cxx   |   33 
 sc/qa/unit/functions_logical.cxx   |   33 
 sc/qa/unit/functions_mathematical.cxx  |   33 
 sc/qa/unit/functions_spreadsheet.cxx   |   33 
 sc/qa/unit/functions_statistical.cxx   |   33 
 sc/qa/unit/functions_text.cxx  |   33 
 49 files changed, 41556 insertions(+), 40056 deletions(-)

New commits:
commit 1b15f2f280d6fb9ee1e51c3424769a912c8d0689
Author: Markus Mohrhard 
Date:   Wed Nov 30 22:13:51 2016 +0100

split the functions test in even more categories

Change-Id: I3ca640a24e95d1e6e0ad66be7bf09c45d63b52bb
Reviewed-on: https://gerrit.libreoffice.org/31447
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/CppunitTest_sc_addin_functions_test.mk 
b/sc/CppunitTest_sc_addin_functions_test.mk
new file mode 100644
index 000..245c94b
--- /dev/null
+++ b/sc/CppunitTest_sc_addin_functions_test.mk
@@ -0,0 +1,116 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+$(eval $(call gb_CppunitTest_CppunitTest,sc_addin_functions_test))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,sc_addin_functions_test, \
+sc/qa/unit/functions_addin \
+))
+
+$(eval $(call gb_CppunitTest_use_externals,sc_addin_functions_test, \
+   boost_headers \
+   mdds_headers \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,sc_addin_functions_test, \
+basegfx \
+comphelper \
+cppu \
+cppuhelper \
+drawinglayer \
+editeng \
+for \
+forui \
+i18nlangtag \
+msfilter \
+oox \
+sal \
+salhelper \
+sax \
+sc \
+scqahelper \
+sfx \
+

[Libreoffice-ux-advise] [Bug 95854] Insert comment shortcut doesn't let me edit existing comment

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95854

Yousuf Philips (jay)  changed:

   What|Removed |Added

   Keywords|needsUXEval |regression
 Status|NEW |ASSIGNED
 CC|libreoffice-ux-advise@lists |philip...@hotmail.com
   |.freedesktop.org|
   Assignee|libreoffice-b...@lists.free |philip...@hotmail.com
   |desktop.org |
Summary|Calc: Insert Comment|Insert comment shortcut
   |doesn't let me edit |doesn't let me edit
   |existing comment|existing comment

--- Comment #9 from Yousuf Philips (jay)  ---
The same shortcut should work for both inserting and editing comments, as it
used to in 4.4 and below, and as it does in writer, so users dont have to learn
a new shortcut.

https://gerrit.libreoffice.org/#/c/31449/

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


[Libreoffice-bugs] [Bug 95854] Insert comment shortcut doesn't let me edit existing comment

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95854

Yousuf Philips (jay)  changed:

   What|Removed |Added

   Keywords|needsUXEval |regression
 Status|NEW |ASSIGNED
 CC|libreoffice-ux-advise@lists |philip...@hotmail.com
   |.freedesktop.org|
   Assignee|libreoffice-b...@lists.free |philip...@hotmail.com
   |desktop.org |
Summary|Calc: Insert Comment|Insert comment shortcut
   |doesn't let me edit |doesn't let me edit
   |existing comment|existing comment

--- Comment #9 from Yousuf Philips (jay)  ---
The same shortcut should work for both inserting and editing comments, as it
used to in 4.4 and below, and as it does in writer, so users dont have to learn
a new shortcut.

https://gerrit.libreoffice.org/#/c/31449/

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


[Libreoffice-qa] [ANN] LibreOffice 5.2.4 RC1 test builds available

2016-11-30 Thread Christian Lohmaier
Hi *,

for the upcoming new version 5.2.4, the builds for RC1 are now
available on pre-releases.

5.2.4 rc1 is in release-build configuration, meaning it will update a
previous version of LibreOffice

5.2.4 will be the fourth bugfix release for the fresh 5.2 codeline

See

https://wiki.documentfoundation.org/ReleasePlan/5.2#5.2.4_release

for the complete schedule.

Grab the builds from here here:

 http://dev-builds.libreoffice.org/pre-releases/

If you've a bit of time, please give them a try & report any severe
bugs not yet in bugzilla here, so we can incorporate  them into the
release notes. Please note that it takes approximately 24 hours to
populate the mirrors, so that's about the time we have to collect
feedback.

The list of fixed bugs relative to 5.2.3 final (rc3) is here:

http://dev-builds.libreoffice.org/pre-releases/src/bugs-libreoffice-5-2-4-release-5.2.4.1.log

So playing with the areas touched there also greatly appreciated  -
and validation that those bugs are really fixed.

Thanks a lot for your help,
Christian
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: https://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 104301] New: Double-clicking on a tab of the undocked sidebar, closes the sidebar

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104301

Bug ID: 104301
   Summary: Double-clicking on a tab of the undocked sidebar,
closes the sidebar
   Product: LibreOffice
   Version: 5.4.0.0.alpha0+
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
If I accidentally click a second time on a tab (for example 'properties') of a
undocked sidebar, the sidebar while close.  


Steps to Reproduce:
1.Open Writer
2.Undock the deck
3.Click a second time on 'Properties'

Actual Results:  
Dock will close

Expected Results:
Dock stays open


Reproducible: Always

User Profile Reset: YES

Additional Info:
Version: 5.4.0.0.alpha0+
Build ID: 4130c8def811d1dcc87eacaa8ae48ba02738a790
CPU Threads: 4; OS Version: Windows 6.19; UI Render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2016-11-29_01:03:18
Locale: nl-NL (nl_NL); Calc: CL


User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:45.0) Gecko/20100101
Firefox/45.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 104300] New: Main menu does not have button "»"

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104300

Bug ID: 104300
   Summary: Main menu does not have button "»"
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ahx2...@gmail.com

Description:
If toolbar width
bigger than window width,
button "»" displayed
at the end of toolbar;
not visible toolbar's buttons
can be accessed
by press button "»".

The same expected for main menu.

Steps to Reproduce:
Use small screen resolution or
reduce width of window.

Actual Results:  
Last items of main menu
become inaccessible by mouse
(become not visible,
but still available via keyboard
(for example, "Atl+h")).

Expected Results:
Display button "»"
at the and of menu
(like in toolbars)
to get access to invisible items.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3)
AppleWebKit/600.5.17 (KHTML, like Gecko) Version/8.0.5 Safari/600.5.17

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


[Libreoffice-bugs] [Bug 103943] FILESAVE: DOCX: Dot colours in chart are not preserved

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103943

--- Comment #3 from Commit Notification 
 ---
Markus Mohrhard committed a patch related to this issue.
It has been pushed to "master":

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

better varyColors export for charts, related tdf#103943

It will be available in 5.4.0.

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

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

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


[Libreoffice-bugs] [Bug 103943] FILESAVE: DOCX: Dot colours in chart are not preserved

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103943

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.4.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: include/oox oox/source

2016-11-30 Thread Markus Mohrhard
 include/oox/export/chartexport.hxx |2 +
 oox/source/export/chartexport.cxx  |   74 +++--
 2 files changed, 57 insertions(+), 19 deletions(-)

New commits:
commit ff22a22286bb4c17c3affc89d31a6c10447481c5
Author: Markus Mohrhard 
Date:   Fri Nov 18 11:44:03 2016 +0100

better varyColors export for charts, related tdf#103943

Change-Id: I4280e708c854c687b6281c56d5bccdb514afd81e
Reviewed-on: https://gerrit.libreoffice.org/31252
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/include/oox/export/chartexport.hxx 
b/include/oox/export/chartexport.hxx
index 7f2cb59..8efc626 100644
--- a/include/oox/export/chartexport.hxx
+++ b/include/oox/export/chartexport.hxx
@@ -159,6 +159,8 @@ private:
 void exportAllSeries(const css::uno::Reference& 
xChartType, bool& rPrimaryAxes);
 void exportSeries(const css::uno::Reference< css::chart2::XChartType >& 
xChartType,
 css::uno::Sequence& rSeriesSeq, bool& rPrimaryAxes);
+
+void exportVaryColors(const css::uno::Reference& 
xChartType);
 void exportCandleStickSeries(
 const css::uno::Sequence<
 css::uno::Reference<
diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index ccfc244..8bfc596 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1541,10 +1541,7 @@ void ChartExport::exportBarChart( const Reference< 
chart2::XChartType >& xChartT
 
 exportGrouping( true );
 
-const char* varyColors = "0";
-pFS->singleElement( FSNS( XML_c, XML_varyColors ),
-XML_val, varyColors,
-FSEND );
+exportVaryColors(xChartType);
 
 bool bPrimaryAxes = true;
 exportAllSeries(xChartType, bPrimaryAxes);
@@ -1617,10 +1614,7 @@ void ChartExport::exportBubbleChart( const Reference< 
chart2::XChartType >& xCha
 pFS->startElement( FSNS( XML_c, XML_bubbleChart ),
 FSEND );
 
-const char* varyColors = "0";
-pFS->singleElement( FSNS( XML_c, XML_varyColors ),
-XML_val, varyColors,
-FSEND );
+exportVaryColors(xChartType);
 
 bool bPrimaryAxes = true;
 exportAllSeries(xChartType, bPrimaryAxes);
@@ -1640,6 +1634,8 @@ void ChartExport::exportDoughnutChart( const Reference< 
chart2::XChartType >& xC
 pFS->startElement( FSNS( XML_c, XML_doughnutChart ),
 FSEND );
 
+exportVaryColors(xChartType);
+
 bool bPrimaryAxes = true;
 exportAllSeries(xChartType, bPrimaryAxes);
 // firstSliceAng
@@ -1712,9 +1708,9 @@ void ChartExport::exportLineChart( const Reference< 
chart2::XChartType >& xChart
 pFS->startElement( FSNS( XML_c, nTypeId ),
 FSEND );
 
+exportVaryColors(xChartType);
+
 exportGrouping( );
-pFS->singleElement(FSNS(XML_c, XML_varyColors),
-XML_val, "0", FSEND);
 // TODO: show marker symbol in series?
 bool bPrimaryAxes = true;
 exportSeries(xChartType, *itr, bPrimaryAxes);
@@ -1755,11 +1751,8 @@ void ChartExport::exportPieChart( const Reference< 
chart2::XChartType >& xChartT
 nTypeId = XML_pie3DChart;
 pFS->startElement( FSNS( XML_c, nTypeId ),
 FSEND );
-// TODO: varyColors
-const char* varyColors = "1";
-pFS->singleElement( FSNS( XML_c, XML_varyColors ),
-XML_val, varyColors,
-FSEND );
+
+exportVaryColors(xChartType);
 
 bool bPrimaryAxes = true;
 exportAllSeries(xChartType, bPrimaryAxes);
@@ -1789,6 +1782,8 @@ void ChartExport::exportRadarChart( const Reference< 
chart2::XChartType >& xChar
 pFS->singleElement( FSNS( XML_c, XML_radarStyle ),
 XML_val, radarStyle,
 FSEND );
+
+exportVaryColors(xChartType);
 bool bPrimaryAxes = true;
 exportAllSeries(xChartType, bPrimaryAxes);
 exportAxesId(bPrimaryAxes);
@@ -1825,10 +1820,7 @@ void ChartExport::exportScatterChart( const Reference< 
chart2::XChartType >& xCh
 XML_val, scatterStyle,
 FSEND );
 
-pFS->singleElement( FSNS( XML_c, XML_varyColors ),
-XML_val, "0",
-FSEND );
-
+exportVaryColors(xChartType);
 // FIXME: should export xVal and yVal
 bool bPrimaryAxes = true;
 exportSeries(xChartType, *itr, bPrimaryAxes);
@@ -1942,6 +1934,7 @@ void ChartExport::exportSurfaceChart( const Reference< 
chart2::XChartType >& xCh
 nTypeId = XML_surface3DChart;
 pFS->startElement( FSNS( XML_c, nTypeId ),
 FSEND );
+exportVaryColors(xChartType);
 bool bPrimaryAxes = true;
 exportAllSeries(xChartType, bPrimaryAxes);
 exportAxesId(bPrimaryAxes);
@@ -1960,6 +1953,48 @@ void ChartExport::exportAllSeries(const 
Reference& xChartTyp
 exportSeries(xChartType, aSeriesSeq, rPrimaryAxes);
 }
 
+namespace 

[Libreoffice-commits] core.git: sc/CppunitTest_sc_database_functions_test.mk sc/CppunitTest_sc_functions_test.mk sc/CppunitTest_sc_functions_test_old.mk sc/Library_scqahelper.mk sc/Module_sc.mk sc/qa

2016-11-30 Thread Markus Mohrhard
 sc/CppunitTest_sc_database_functions_test.mk  |  116 +
 sc/CppunitTest_sc_functions_test.mk   |  116 -
 sc/CppunitTest_sc_functions_test_old.mk   |  116 +
 sc/Library_scqahelper.mk  |1 
 sc/Module_sc.mk   |3 
 sc/qa/unit/data/functions/database/fods/dmax.fods | 1602 ++
 sc/qa/unit/data/functions/database/fods/dmin.fods | 1602 ++
 sc/qa/unit/data/functions/fods/dmax.fods  | 1602 --
 sc/qa/unit/data/functions/fods/dmin.fods  | 1602 --
 sc/qa/unit/functions_database.cxx |   33 
 sc/qa/unit/functions_test.cxx |   49 
 sc/qa/unit/functions_test.hxx |   36 
 sc/qa/unit/functions_test_old.cxx |   33 
 13 files changed, 3544 insertions(+), 3367 deletions(-)

New commits:
commit f45af7c8093dae17bada71e33a2c32023a2c1986
Author: Markus Mohrhard 
Date:   Wed Nov 30 21:01:31 2016 +0100

start to split the functions test by category

Change-Id: Ib06eaee7cf5eeb3dbe95ad42afc2a17caa0359c2
Reviewed-on: https://gerrit.libreoffice.org/31440
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/CppunitTest_sc_database_functions_test.mk 
b/sc/CppunitTest_sc_database_functions_test.mk
new file mode 100644
index 000..4596080
--- /dev/null
+++ b/sc/CppunitTest_sc_database_functions_test.mk
@@ -0,0 +1,116 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+$(eval $(call gb_CppunitTest_CppunitTest,sc_database_functions_test))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,sc_database_functions_test, 
\
+sc/qa/unit/functions_database \
+))
+
+$(eval $(call gb_CppunitTest_use_externals,sc_database_functions_test, \
+   boost_headers \
+   mdds_headers \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,sc_database_functions_test, \
+basegfx \
+comphelper \
+cppu \
+cppuhelper \
+drawinglayer \
+editeng \
+for \
+forui \
+i18nlangtag \
+msfilter \
+oox \
+sal \
+salhelper \
+sax \
+sc \
+scqahelper \
+sfx \
+sot \
+svl \
+svt \
+svx \
+svxcore \
+   test \
+tk \
+tl \
+ucbhelper \
+   unotest \
+utl \
+vcl \
+xo \
+   $(gb_UWINAPI) \
+))
+
+$(eval $(call gb_CppunitTest_set_include,sc_database_functions_test,\
+-I$(SRCDIR)/sc/source/ui/inc \
+-I$(SRCDIR)/sc/inc \
+$$(INCLUDE) \
+))
+
+$(eval $(call gb_CppunitTest_use_api,sc_database_functions_test,\
+offapi \
+udkapi \
+))
+
+$(eval $(call gb_CppunitTest_use_ure,sc_database_functions_test))
+
+$(eval $(call gb_CppunitTest_use_vcl,sc_database_functions_test))
+
+$(eval $(call gb_CppunitTest_use_components,sc_database_functions_test,\
+basic/util/sb \
+chart2/source/chartcore \
+chart2/source/controller/chartcontroller \
+comphelper/util/comphelp \
+configmgr/source/configmgr \
+connectivity/source/manager/sdbc2 \
+dbaccess/util/dba \
+embeddedobj/util/embobj \
+eventattacher/source/evtatt \
+filter/source/config/cache/filterconfig1 \
+   filter/source/odfflatxml/odfflatxml \
+   filter/source/xmlfilteradaptor/xmlfa \
+forms/util/frm \
+framework/util/fwk \
+i18npool/util/i18npool \
+   i18npool/source/search/i18nsearch \
+linguistic/source/lng \
+oox/util/oox \
+package/source/xstor/xstor \
+package/util/package2 \
+sax/source/expatwrap/expwrap \
+scaddins/source/analysis/analysis \
+scaddins/source/datefunc/date \
+sc/util/sc \
+sc/util/scfilt \
+sfx2/util/sfx \
+sot/util/sot \
+svl/util/svl \
+svtools/util/svt \
+svx/util/svx \
+svx/util/svxcore \
+toolkit/util/tk \
+ucb/source/core/ucb1 \
+ucb/source/ucp/file/ucpfile1 \
+ucb/source/ucp/tdoc/ucptdoc1 \
+unotools/util/utl \
+unoxml/source/rdf/unordf \
+unoxml/source/service/unoxml \
+uui/util/uui \
+xmloff/util/xo \
+   xmlscript/util/xmlscript \
+))
+
+$(eval $(call gb_CppunitTest_use_configuration,sc_database_functions_test))
+
+# vim: set noet sw=4 ts=4:
diff --git a/sc/CppunitTest_sc_functions_test.mk 
b/sc/CppunitTest_sc_functions_test_old.mk
similarity index 79%
rename from sc/CppunitTest_sc_functions_test.mk
rename to sc/CppunitTest_sc_functions_test_old.mk
index 9a4a77d..2981bf8 100644
--- a/sc/CppunitTest_sc_functions_test.mk
+++ b/sc/CppunitTest_sc_functions_test_old.mk
@@ -7,18 +7,18 @@
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 #
 

[Libreoffice-bugs] [Bug 104298] UX: Opening floating Navigator with F5 is somewhat inconsistent

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104298

Telesto  changed:

   What|Removed |Added

   Severity|normal  |trivial

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


[Libreoffice-bugs] [Bug 104299] New: UX: Snapping corner to attach/detach the sidebar

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104299

Bug ID: 104299
   Summary: UX: Snapping corner to attach/detach the sidebar
   Product: LibreOffice
   Version: 5.4.0.0.alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
I always try the re-dock the sidebar by moving it to the corner waiting for a
'snap'. It doesn't. 

Steps to Reproduce:
-

Actual Results:  
No snapping corner(s)

Expected Results:
Snapping corner(s)


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:45.0) Gecko/20100101
Firefox/45.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 104298] UX: Opening floating Navigator with F5 is somewhat inconsistent

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104298

Telesto  changed:

   What|Removed |Added

Summary|UX: Opening floating|UX: Opening floating
   |Navigator with F5 in|Navigator with F5 is
   |somewhat inconsistent   |somewhat inconsistent

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


[Libreoffice-bugs] [Bug 104298] New: UX: Opening floating Navigator with F5 in somewhat inconsistent

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104298

Bug ID: 104298
   Summary: UX: Opening floating Navigator with F5 in somewhat
inconsistent
   Product: LibreOffice
   Version: 5.3.0.0.beta1
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
I personally find it a bit odd to open the Floating navigator window with View
--> Navigator. It's inconsistent. It always opens a deck except for the
Navigator. Did someone think this through?

Writer:
View -> Styles and formatting --> Deck
View -> Gallery --> Deck
View -> Navigator --> Floating Window

Impress
View -> Slide Layout --> Deck
View -> Slide Transition --> Deck
View -> Animation --> Deck
View -> Animation --> Deck
View -> Styles and Formatting --> Deck
View -> Gallery --> Deck
View -> Navigator --> Floating Window

Steps to Reproduce:
-

Actual Results:  
-

Expected Results:
Maybe the floating window should be accessible through the navigator deck?


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:45.0) Gecko/20100101
Firefox/45.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 104297] New: Cell stay empty after press "Ctrl+d"

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104297

Bug ID: 104297
   Summary: Cell stay empty after press "Ctrl+d"
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ahx2...@gmail.com

Description:
After pressing keys "Ctrl+d"
formula bar's text area and
cell content not updated.


Steps to Reproduce:
1. Open LibreOffice Calc.
2. Type any text in cell A1,
   for example, text "a1".
3. Press key "DownArrow".
   Now current cell is A2.
4. Press keys "Ctrl+d".

Actual Results:  
   Now text "a1" displayed in cell A2,
   but formula bar's text area is empty (bug).
5. Press "F2" to edit text.
   Now editing content of cell A2,
   but cell A2 is empty (bug).
   Press key "Escape".

Expected Results:
6. Press keys "DownArrow" and "UpArrow"
   (or press "Alt+Tab" and "Alt+Tab")
   (or other).
   Now current cell is A2,
   text "a1" displayed in formula bar's text area (as expected).
7. Press key "F2".
   Now editing content of cell A2, and
   cell contains text "a1" (as expected).


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/42.0.2311.90 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 102054] Allow access and modifying of comment with keyboard

2016-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102054

--- Comment #6 from Yousuf Philips (jay)  ---
Patch that Gulsah previously submitted -
https://gerrit.libreoffice.org/#/c/30332/

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

2016-11-30 Thread Mark Page
 vcl/source/gdi/pdfwriter_impl.cxx |   13 +
 vcl/source/gdi/pdfwriter_impl.hxx |4 ++--
 vcl/source/gdi/pngread.cxx|   26 +++---
 3 files changed, 18 insertions(+), 25 deletions(-)

New commits:
commit 64e6e7c6e7b881bf240de82ef020b290036e7e0e
Author: Mark Page 
Date:   Wed Nov 30 14:10:30 2016 +

Use smart pointers for gdi pdf functions

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

diff --git a/vcl/source/gdi/pdfwriter_impl.cxx 
b/vcl/source/gdi/pdfwriter_impl.cxx
index 919a514..db27d50 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -39,6 +39,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -1722,8 +1723,6 @@ void PDFWriterImpl::PDFPage::appendWaveLine( sal_Int32 
nWidth, sal_Int32 nY, sal
 m_aContext(rContext),
 m_aFile(m_aContext.URL),
 m_bOpen(false),
-m_pCodec( nullptr ),
-m_pMemStream(nullptr),
 m_aDocDigest( rtl_digest_createMD5() ),
 m_aCipher( nullptr ),
 m_aDigest( nullptr ),
@@ -2139,8 +2138,8 @@ void PDFWriterImpl::beginCompression()
 {
 if (!g_bDebugDisableCompression)
 {
-m_pCodec = new ZCodec( 0x4000, 0x4000 );
-m_pMemStream = new SvMemoryStream();
+m_pCodec = o3tl::make_unique( 0x4000, 0x4000 );
+m_pMemStream = o3tl::make_unique();
 m_pCodec->BeginCompression();
 }
 }
@@ -2150,13 +2149,11 @@ void PDFWriterImpl::endCompression()
 if (!g_bDebugDisableCompression && m_pCodec)
 {
 m_pCodec->EndCompression();
-delete m_pCodec;
-m_pCodec = nullptr;
+m_pCodec.reset();
 sal_uInt64 nLen = m_pMemStream->Tell();
 m_pMemStream->Seek( 0 );
 writeBuffer( m_pMemStream->GetData(), nLen );
-delete m_pMemStream;
-m_pMemStream = nullptr;
+m_pMemStream.reset();
 }
 }
 
diff --git a/vcl/source/gdi/pdfwriter_impl.hxx 
b/vcl/source/gdi/pdfwriter_impl.hxx
index 9abe5b5..5a30cf2 100644
--- a/vcl/source/gdi/pdfwriter_impl.hxx
+++ b/vcl/source/gdi/pdfwriter_impl.hxx
@@ -713,8 +713,8 @@ private:
 std::list< GraphicsState >  m_aGraphicsStack;
 GraphicsState   m_aCurrentPDFState;
 
-ZCodec* m_pCodec;
-SvMemoryStream* m_pMemStream;
+std::unique_ptr m_pCodec;
+std::unique_ptr m_pMemStream;
 
 std::vector< PDFAddStream > m_aAdditionalStreams;
 std::set< PDFWriter::ErrorCode >m_aErrors;
diff --git a/vcl/source/gdi/pngread.cxx b/vcl/source/gdi/pngread.cxx
index c26a841..f7ea29e 100644
--- a/vcl/source/gdi/pngread.cxx
+++ b/vcl/source/gdi/pngread.cxx
@@ -28,6 +28,7 @@
 #include 
 #include 
 #include 
+#include 
 
 namespace vcl
 {
@@ -74,11 +75,12 @@ private:
 std::vector::iterator maChunkIter;
 std::vector::iterator maDataIter;
 
-Bitmap* mpBmp;
-BitmapWriteAccess*  mpAcc;
-Bitmap* mpMaskBmp;
-AlphaMask*  mpAlphaMask;
-BitmapWriteAccess*  mpMaskAcc;
+std::unique_ptrmpBmp;
+BitmapWriteAccess* mpAcc;
+std::unique_ptrmpMaskBmp;
+std::unique_ptr mpAlphaMask;
+BitmapWriteAccess* mpMaskAcc;
+
 ZCodec  mpZCodec;
 sal_uInt8*  mpInflateInBuf; // as big as the size of a scanline + 
alphachannel + 1
 sal_uInt8*  mpScanPrior;// pointer to the latest scanline
@@ -165,10 +167,7 @@ public:
 
 PNGReaderImpl::PNGReaderImpl( SvStream& rPNGStream )
 :   mrPNGStream( rPNGStream ),
-mpBmp   ( nullptr ),
 mpAcc   ( nullptr ),
-mpMaskBmp   ( nullptr ),
-mpAlphaMask ( nullptr ),
 mpMaskAcc   ( nullptr ),
 mpInflateInBuf  ( nullptr ),
 mpScanPrior ( nullptr ),
@@ -246,9 +245,6 @@ PNGReaderImpl::~PNGReaderImpl()
 if( mpColorTable != mpDefaultColorTable )
 delete[] mpColorTable;
 
-delete mpBmp;
-delete mpAlphaMask;
-delete mpMaskBmp;
 delete[] mpTransTab;
 delete[] mpInflateInBuf;
 delete[] mpScanPrior;
@@ -665,14 +661,14 @@ bool PNGReaderImpl::ImplReadHeader( const Size& 
rPreviewSizeHint )
 if ( !mpInflateInBuf || !mpScanPrior )
 return false;
 
-mpBmp = new Bitmap( maTargetSize, mnTargetDepth );
+mpBmp = o3tl::make_unique( maTargetSize, mnTargetDepth );
 mpAcc = mpBmp->AcquireWriteAccess();
 if( !mpAcc )
 return false;
 
 if ( mbAlphaChannel )
 {
-mpAlphaMask = new AlphaMask( maTargetSize );
+mpAlphaMask = o3tl::make_unique( maTargetSize );
 mpAlphaMask->Erase( 128 );
 mpMaskAcc = mpAlphaMask->AcquireWriteAccess();
 if( !mpMaskAcc )
@@ 

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

2016-11-30 Thread Mark Page
 vcl/source/filter/igif/gifread.cxx |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 0de5101df0a8db41ad067b2575d16fd9b5a9a751
Author: Mark Page 
Date:   Wed Nov 30 10:22:47 2016 +

When overreading gif sub blocks, do not read skipped bytes

We do not require to read in gif extension data when it is ignored
This is used to skip the Adobe XMP gif extension

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

diff --git a/vcl/source/filter/igif/gifread.cxx 
b/vcl/source/filter/igif/gifread.cxx
index 7588970..1bfae2f 100644
--- a/vcl/source/filter/igif/gifread.cxx
+++ b/vcl/source/filter/igif/gifread.cxx
@@ -307,7 +307,6 @@ bool GIFReader::ReadExtension()
 sal_uInt8 cSize(0);
 // Block length
 rIStm.ReadUChar( cSize );
-
 switch( cFunction )
 {
 // 'Graphic Control Extension'
@@ -412,13 +411,14 @@ bool GIFReader::ReadExtension()
 const sal_uInt64 nMaxPossible = rIStm.remainingSize();
 if (nCount > nMaxPossible)
 nCount = nMaxPossible;
-std::unique_ptr pBuffer(new sal_uInt8[nCount]);
+
+if (nCount)
+rIStm.SeekRel( nCount - 1 );// Skip subblock data
 
 bRet = false;
-std::size_t nRead = rIStm.ReadBytes(pBuffer.get(), nCount);
-if (NO_PENDING(rIStm) && cSize < nRead)
+std::size_t nRead = rIStm.ReadBytes(, 1);
+if (NO_PENDING(rIStm) && nRead == 1)
 {
-cSize = pBuffer[cSize];
 bRet = true;
 }
 else
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-11-30 Thread Mark Page
 vcl/source/filter/igif/gifread.cxx |   20 +---
 1 file changed, 9 insertions(+), 11 deletions(-)

New commits:
commit 5de4492eeedc1e23f5f6ac4a775e943c240dced2
Author: Mark Page 
Date:   Wed Nov 30 09:27:13 2016 +

Use smart pointers for allocated objects in the gif loader

Change-Id: Ib9d3bc05fbccc882df8913d3ffcb36be6a9f06dd
Reviewed-on: https://gerrit.libreoffice.org/31401
Reviewed-by: Michael Stahl 
Tested-by: Michael Stahl 

diff --git a/vcl/source/filter/igif/gifread.cxx 
b/vcl/source/filter/igif/gifread.cxx
index f767f3b..7588970 100644
--- a/vcl/source/filter/igif/gifread.cxx
+++ b/vcl/source/filter/igif/gifread.cxx
@@ -20,6 +20,7 @@
 #include "decode.hxx"
 #include "gifread.hxx"
 #include 
+#include 
 
 #define NO_PENDING( rStm ) ( ( rStm ).GetError() != ERRCODE_IO_PENDING )
 
@@ -55,8 +56,8 @@ class GIFReader : public GraphicReader
 BitmapPalette   aGPalette;
 BitmapPalette   aLPalette;
 SvStream&   rIStm;
-sal_uInt8*  pSrcBuf;
-GIFLZWDecompressor* pDecomp;
+std::vector aSrcBuf;
+std::unique_ptr pDecomp;
 BitmapWriteAccess*  pAcc8;
 BitmapWriteAccess*  pAcc1;
 longnYAcc;
@@ -112,7 +113,6 @@ GIFReader::GIFReader( SvStream& rStm )
 : aGPalette ( 256 )
 , aLPalette ( 256 )
 , rIStm ( rStm )
-, pDecomp ( nullptr )
 , pAcc8 ( nullptr )
 , pAcc1 ( nullptr )
 , nYAcc ( 0 )
@@ -143,7 +143,7 @@ GIFReader::GIFReader( SvStream& rStm )
 , cNonTransIndex1 ( 0 )
 {
 maUpperName = "SVIGIF";
-pSrcBuf = new sal_uInt8[ 256 ];
+aSrcBuf.resize(256);// Memory buffer for ReadNextBlock
 ClearImageExtensions();
 }
 
@@ -156,8 +156,6 @@ GIFReader::~GIFReader()
 
 if( pAcc8 )
 Bitmap::ReleaseAccess( pAcc8 );
-
-delete[] pSrcBuf;
 }
 
 void GIFReader::ClearImageExtensions()
@@ -493,7 +491,7 @@ sal_uLong GIFReader::ReadNextBlock()
 nRet = 2UL;
 else
 {
-rIStm.ReadBytes( pSrcBuf, cBlockSize );
+rIStm.ReadBytes( aSrcBuf.data(), cBlockSize );
 
 if( NO_PENDING( rIStm ) )
 {
@@ -502,7 +500,7 @@ sal_uLong GIFReader::ReadNextBlock()
 else
 {
 bool   bEOI;
-sal_uInt8* pTarget = pDecomp->DecompressBlock( pSrcBuf, 
cBlockSize, nRead, bEOI );
+sal_uInt8* pTarget = pDecomp->DecompressBlock( 
aSrcBuf.data(), cBlockSize, nRead, bEOI );
 
 nRet = ( bEOI ? 3 : 1 );
 
@@ -771,7 +769,7 @@ bool GIFReader::ProcessGIF()
 else if( NO_PENDING( rIStm ) )
 {
 bRead = true;
-pDecomp = new GIFLZWDecompressor( cDataSize );
+pDecomp = o3tl::make_unique( cDataSize );
 eActAction = NEXT_BLOCK_READING;
 bOverreadBlock = false;
 }
@@ -802,7 +800,7 @@ bool GIFReader::ProcessGIF()
 {
 if( nRet == 2UL )
 {
-delete pDecomp;
+pDecomp.reset();
 CreateNewBitmaps();
 eActAction = MARKER_READING;
 ClearImageExtensions();
@@ -814,7 +812,7 @@ bool GIFReader::ProcessGIF()
 }
 else
 {
-delete pDecomp;
+pDecomp.reset();
 CreateNewBitmaps();
 eActAction = ABORT_READING;
 ClearImageExtensions();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: external/Module_external.mk Repository.mk solenv/gbuild

2016-11-30 Thread Matúš Kukan
 Repository.mk  |2 +-
 external/Module_external.mk|7 ---
 solenv/gbuild/Helper.mk|1 +
 solenv/gbuild/Module.mk|2 ++
 solenv/gbuild/extensions/pre_BuildTools.mk |3 +++
 5 files changed, 7 insertions(+), 8 deletions(-)

New commits:
commit 52d409f0d657f314a53f945c9ffb5b8025bea034
Author: Matúš Kukan 
Date:   Wed Nov 30 14:36:51 2016 +0100

gbuild: Prevent wrong use of gb_Helper_optional_for_host

It's empty, unless gb_Side=build.
This fixes commit 1193443b15b0e38cbfb41573b31acf9a8d90ce2c

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

diff --git a/Repository.mk b/Repository.mk
index 6ed227c..33bf6d0 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -992,7 +992,7 @@ $(eval $(call gb_Helper_register_resources,\
eur \
for \
forui \
-   $(call gb_Helper_optional_for_host,DESKTOP,fps_office) \
+   $(call gb_Helper_optional,DESKTOP,fps_office) \
frm \
fwe \
gal \
diff --git a/external/Module_external.mk b/external/Module_external.mk
index 3b54b52..1dbf97b 100644
--- a/external/Module_external.mk
+++ b/external/Module_external.mk
@@ -101,13 +101,6 @@ $(eval $(call gb_Module_add_moduledirs,external,\
$(call gb_Helper_optional,XSLTML,xsltml) \
$(call gb_Helper_optional,ZLIB,zlib) \
$(call gb_Helper_optional,ZMF,libzmf) \
-   $(call gb_Helper_optional_for_host,DESKTOP, \
-   $(if $(WITH_GALLERY_BUILD), \
-   $(call gb_Helper_optional,HARFBUZZ,harfbuzz) \
-   $(call gb_Helper_optional,LCMS2,lcms2) \
-   $(call gb_Helper_optional,NSS,nss) \
-   ) \
-   ) \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/solenv/gbuild/Helper.mk b/solenv/gbuild/Helper.mk
index 4e914d1..1464411 100644
--- a/solenv/gbuild/Helper.mk
+++ b/solenv/gbuild/Helper.mk
@@ -299,6 +299,7 @@ endef
 endif
 
 define gb_Helper_optional_for_host
+$(if $(filter build,$(gb_Side)),,$(call 
gb_Output_error,gb_Helper_optional_for_host: Use only when gb_Side=build))
 $(if $(filter $(1),$(BUILD_TYPE_FOR_HOST)),$(2))
 endef
 
diff --git a/solenv/gbuild/Module.mk b/solenv/gbuild/Module.mk
index eb558a8..6af2b5c 100644
--- a/solenv/gbuild/Module.mk
+++ b/solenv/gbuild/Module.mk
@@ -144,10 +144,12 @@ $(call gb_Module_get_target,%) :
 
 all : build $(if $(CROSS_COMPILING),,unitcheck $(if 
$(gb_PARTIAL_BUILD),,slowcheck))
 
+ifeq ($(gb_Side),build)
 build-tools : $(gb_BUILD_TOOLS)
$(call gb_Output_announce,loaded tools: $(gb_BUILD_TOOLS),$(true),ALL,6)
$(call gb_Output_announce_title,build-tools done.)
$(call gb_Output_announce_bell)
+endif
 
 build :
$(call gb_Output_announce,top level modules: $(foreach 
module,$(filter-out deliverlog $(WORKDIR)/bootstrap,$^),$(notdir 
$(module))),$(true),ALL,6)
diff --git a/solenv/gbuild/extensions/pre_BuildTools.mk 
b/solenv/gbuild/extensions/pre_BuildTools.mk
index f387df6..5daf671 100644
--- a/solenv/gbuild/extensions/pre_BuildTools.mk
+++ b/solenv/gbuild/extensions/pre_BuildTools.mk
@@ -8,6 +8,7 @@
 #
 
 # Tools we need to build for cross-compiling
+ifeq ($(gb_Side),build)
 gb_BUILD_TOOLS = \
$(foreach executable, \
bestreversemap \
@@ -44,4 +45,6 @@ gb_BUILD_TOOLS = \
,$(call gb_ExternalExecutable_get_dependencies,$(executable))) \
$(INSTROOT)/$(LIBO_URE_ETC_FOLDER)/$(call gb_Helper_get_rcfile,uno) \
 
+endif
+
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Allow extensions to provide color palettes

2016-11-30 Thread toki
On 29/11/16 16:07, Stephan Bergmann wrote:

> backport that commit to libreoffice-5-3 in the coming days.  

a) Is this code .soc only, or does it also include the other things that
live in /user/config ( .soh, .soh, .sod, .sog, .soh, .sob)?

If the latter aren't included, how much more difficult would it be to
include them?

b) Will running Makefile on that repository source create an installable
OXT file that works as expected: IE: drops my-pallete.soc in /user/config?

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


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

2016-11-30 Thread Jochen Nitschke
 include/svl/poolcach.hxx  |   18 --
 svl/source/items/poolcach.cxx |9 +++--
 2 files changed, 11 insertions(+), 16 deletions(-)

New commits:
commit 61f61e7723380d3eff0eee21effe0d4dc3f7dad3
Author: Jochen Nitschke 
Date:   Wed Nov 30 16:22:11 2016 +0100

don't hold vector as pointer here ...

and make impl types private

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

diff --git a/include/svl/poolcach.hxx b/include/svl/poolcach.hxx
index 6c55fae..cfb148d 100644
--- a/include/svl/poolcach.hxx
+++ b/include/svl/poolcach.hxx
@@ -27,19 +27,17 @@ class SfxItemSet;
 class SfxPoolItem;
 class SfxSetItem;
 
-struct SfxItemModifyImpl
-{
-const SfxSetItem  *pOrigItem;
-SfxSetItem*pPoolItem;
-};
-
-typedef std::vector SfxItemModifyArr_Impl;
-
-
 class SVL_DLLPUBLIC SfxItemPoolCache
 {
+struct SfxItemModifyImpl
+{
+const SfxSetItem  *pOrigItem;
+SfxSetItem*pPoolItem;
+};
+typedef std::vector SfxItemModifyArr_Impl;
+
 SfxItemPool *pPool;
-SfxItemModifyArr_Impl   *pCache;
+SfxItemModifyArr_Impl   m_aCache;
 const SfxItemSet*pSetToPut;
 const SfxPoolItem   *pItemToPut;
 
diff --git a/svl/source/items/poolcach.cxx b/svl/source/items/poolcach.cxx
index 947aee32..c43d1d5 100644
--- a/svl/source/items/poolcach.cxx
+++ b/svl/source/items/poolcach.cxx
@@ -27,7 +27,6 @@
 SfxItemPoolCache::SfxItemPoolCache( SfxItemPool *pItemPool,
 const SfxPoolItem *pPutItem ):
 pPool(pItemPool),
-pCache(new SfxItemModifyArr_Impl),
 pSetToPut( nullptr ),
 pItemToPut( >Put(*pPutItem) )
 {
@@ -38,7 +37,6 @@ SfxItemPoolCache::SfxItemPoolCache( SfxItemPool *pItemPool,
 SfxItemPoolCache::SfxItemPoolCache( SfxItemPool *pItemPool,
 const SfxItemSet *pPutSet ):
 pPool(pItemPool),
-pCache(new SfxItemModifyArr_Impl),
 pSetToPut( pPutSet ),
 pItemToPut( nullptr )
 {
@@ -48,11 +46,10 @@ SfxItemPoolCache::SfxItemPoolCache( SfxItemPool *pItemPool,
 
 SfxItemPoolCache::~SfxItemPoolCache()
 {
-for (SfxItemModifyImpl & rImpl : *pCache) {
+for (SfxItemModifyImpl & rImpl : m_aCache) {
 pPool->Remove( *rImpl.pPoolItem );
 pPool->Remove( *rImpl.pOrigItem );
 }
-delete pCache; pCache = nullptr;
 
 if ( pItemToPut )
 pPool->Remove( *pItemToPut );
@@ -66,7 +63,7 @@ const SfxSetItem& SfxItemPoolCache::ApplyTo( const SfxSetItem 
 )
 "original not in pool" );
 
 // Find whether this Transformations ever occurred
-for (SfxItemModifyImpl & rMapEntry : *pCache)
+for (SfxItemModifyImpl & rMapEntry : m_aCache)
 {
 if ( rMapEntry.pOrigItem ==  )
 {
@@ -102,7 +99,7 @@ const SfxSetItem& SfxItemPoolCache::ApplyTo( const 
SfxSetItem  )
 SfxItemModifyImpl aModify;
 aModify.pOrigItem = 
 aModify.pPoolItem = const_cast(pNewPoolItem);
-pCache->push_back( aModify );
+m_aCache.push_back( aModify );
 
 DBG_ASSERT( !pItemToPut ||
 >GetItemSet().Get( pItemToPut->Which() ) == 
pItemToPut,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   4   >