[Libreoffice-bugs] [Bug 99812] If string in cells start with non-Thai and follows with Thai word with upper /lower vowel, that thai word will be displayed incorrectly. This affects with most built-in

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99812

raal  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 CC||t...@iki.fi

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

bf46c56d1ea254c094510b7dd92d8d3d14b7a475 is the first bad commit
commit bf46c56d1ea254c094510b7dd92d8d3d14b7a475
Author: Norbert Thiebaud 
Date:   Fri Jan 22 03:32:58 2016 -0800

source sha:4622689fad7ddff72cd08da9611ccfacdb0aa7bd
author  Tor Lillqvist    2016-01-07 13:05:58 (GMT)
committer   Tor Lillqvist    2016-01-21 10:04:04
(GMT)
commit  4622689fad7ddff72cd08da9611ccfacdb0aa7bd (patch)
tree69799d69d624d09e4809f05f13b04466f7f3be2a
parent  88b458d55dc1f56e13bbf34aa7c6758e13707fa1 (diff)
tdf#96420: Re-introduce SimpleWinLayout

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


[Libreoffice-bugs] [Bug 100038] special at sign(@) treatment is frustrating for new users and impossible to google

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100038

--- Comment #4 from Aron Budea  ---
Thanks Frederick. I appreciate you're looking at the issue you're facing from a
general user perspective. The reality is that a lot of people come here looking
for immediate help with their issues, so providing a workaround is also very
important (if there's one), and I'm glad Miguel could give you one suitable on
the longer term (I didn't know about that setting, by the way). The more
diverse the contributors are, the better the result will be in the end.

The feature's been there since OOo times btw, I think disabling it now would
cause confusion, but it certainly has bugs that need fixing.

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


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

2016-05-25 Thread Miklos Vajna
 sw/source/uibase/inc/wrtsh.hxx   |4 ++--
 sw/source/uibase/uno/unotxvw.cxx |   12 
 sw/source/uibase/wrtsh/move.cxx  |8 
 3 files changed, 10 insertions(+), 14 deletions(-)

New commits:
commit cbe78f817da8db78d226b3ad2b1a10d0c2dcf188
Author: Miklos Vajna 
Date:   Wed May 25 14:23:55 2016 +0200

tdf#100051 Partially revert "loplugin:constantparam in sw"

This partially reverts commit 9585c8b8c8d8724cc1bad4a2060c828c15599929.
Instead of removing the nCount parameters, make use of them in
SwXTextViewCursor::go{Left,Right,Down,Up}.

For the following testcase: a document with 1000 lines, and calling
goDown(1000, true) the spent time goes from 4 secs to 1.8 secs with this
for me.

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

diff --git a/sw/source/uibase/inc/wrtsh.hxx b/sw/source/uibase/inc/wrtsh.hxx
index 5a36e7e..0f8ccda 100644
--- a/sw/source/uibase/inc/wrtsh.hxx
+++ b/sw/source/uibase/inc/wrtsh.hxx
@@ -191,8 +191,8 @@ typedef bool (SwWrtShell:: *FNSimpleMove)();
 sal_uInt16 nCount, bool bBasicCall, bool bVisual = 
false );
 bool Right  ( sal_uInt16 nMode, bool bSelect,
 sal_uInt16 nCount, bool bBasicCall, bool bVisual = 
false );
-bool Up ( bool bSelect, bool bBasicCall = false );
-bool Down   ( bool bSelect, bool bBasicCall = false );
+bool Up ( bool bSelect, sal_uInt16 nCount = 1, bool bBasicCall = 
false );
+bool Down   ( bool bSelect, sal_uInt16 nCount = 1, bool bBasicCall = 
false );
 void NxtWrd ( bool bSelect = false ) { SimpleMove( 
::NxtWrd_, bSelect ); }
 bool PrvWrd ( bool bSelect = false ) { return SimpleMove( 
::PrvWrd_, bSelect ); }
 
diff --git a/sw/source/uibase/uno/unotxvw.cxx b/sw/source/uibase/uno/unotxvw.cxx
index 2eb2f50..ecbb9df 100644
--- a/sw/source/uibase/uno/unotxvw.cxx
+++ b/sw/source/uibase/uno/unotxvw.cxx
@@ -1000,8 +1000,7 @@ sal_Bool SwXTextViewCursor::goLeft(sal_Int16 nCount, 
sal_Bool bExpand)
 if (!IsTextSelection())
 throw  uno::RuntimeException("no text selection", static_cast < 
cppu::OWeakObject * > ( this ) );
 
-for( sal_uInt16 i = 0; i < nCount; i++ )
-bRet = m_pView->GetWrtShell().Left( CRSR_SKIP_CHARS, bExpand, 1, 
true );
+bRet = m_pView->GetWrtShell().Left( CRSR_SKIP_CHARS, bExpand, nCount, 
true );
 }
 else
 throw uno::RuntimeException();
@@ -1018,8 +1017,7 @@ sal_Bool SwXTextViewCursor::goRight(sal_Int16 nCount, 
sal_Bool bExpand)
 if (!IsTextSelection())
 throw  uno::RuntimeException("no text selection", static_cast < 
cppu::OWeakObject * > ( this ) );
 
-for( sal_uInt16 i = 0; i < nCount; i++ )
-bRet = m_pView->GetWrtShell().Right( CRSR_SKIP_CHARS, bExpand, 1, 
true );
+bRet = m_pView->GetWrtShell().Right( CRSR_SKIP_CHARS, bExpand, nCount, 
true );
 }
 else
 throw uno::RuntimeException();
@@ -1616,8 +1614,7 @@ sal_Bool SwXTextViewCursor::goDown(sal_Int16 nCount, 
sal_Bool bExpand)
 if (!IsTextSelection())
 throw  uno::RuntimeException("no text selection", static_cast < 
cppu::OWeakObject * > ( this ) );
 
-for( sal_uInt16 i = 0; i < nCount; i++ )
-bRet = m_pView->GetWrtShell().Down( bExpand, true );
+bRet = m_pView->GetWrtShell().Down( bExpand, nCount, true );
 }
 else
 throw uno::RuntimeException();
@@ -1634,8 +1631,7 @@ sal_Bool SwXTextViewCursor::goUp(sal_Int16 nCount, 
sal_Bool bExpand)
 if (!IsTextSelection())
 throw  uno::RuntimeException("no text selection", static_cast < 
cppu::OWeakObject * > ( this ) );
 
-for( sal_uInt16 i = 0; i < nCount; i++ )
-bRet = m_pView->GetWrtShell().Up( bExpand, true );
+bRet = m_pView->GetWrtShell().Up( bExpand, nCount, true );
 }
 else
 throw uno::RuntimeException();
diff --git a/sw/source/uibase/wrtsh/move.cxx b/sw/source/uibase/wrtsh/move.cxx
index 81b9c7a..7125044 100644
--- a/sw/source/uibase/wrtsh/move.cxx
+++ b/sw/source/uibase/wrtsh/move.cxx
@@ -127,7 +127,7 @@ bool SwWrtShell::Right( sal_uInt16 nMode, bool bSelect,
 }
 }
 
-bool SwWrtShell::Up( bool bSelect, bool bBasicCall )
+bool SwWrtShell::Up( bool bSelect, sal_uInt16 nCount, bool bBasicCall )
 {
 if ( !bSelect && !bBasicCall && IsCursorReadonly()  && 
!GetViewOptions()->IsSelectionInReadonly())
 {
@@ -138,10 +138,10 @@ bool SwWrtShell::Up( bool bSelect, bool bBasicCall )
 }
 
 ShellMoveCursor aTmp( this, bSelect );
-return SwCursorShell::Up();
+return SwCursorShell::Up(nCount);
 }
 
-bool SwWrtShell::Down( bool bSelect, bool bBasicCall )
+bool SwWrtShell::Down( bool bSelect, sal_uInt16 nCount, bool 

[Libreoffice-bugs] [Bug 100043] import filter MS Works

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100043

--- Comment #8 from Bernard Robins  ---
Created attachment 125288
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125288=edit
Copy of Works 6 Database that does not copy correctly

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


[Libreoffice-bugs] [Bug 100059] New: Feature suggestion, not a bug report

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100059

Bug ID: 100059
   Summary: Feature suggestion, not a bug report
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dftenn...@hotmail.com

overall, love the program. My only complaint is that I use the word processor
to write book chapters and I do a lot of editing where I am reading / scrolling
through previously written pages with my mouse wheel. When auto-save triggers,
the document view returns to the spot where the cursor is, which is the last
location I edited something, and I loose my place where I am currently viewing
the document.
   Other word programs I have used in the past did not have this issue and it
does 'bug' me.
  Just a suggestion, auto save without changing document position / view.

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


[Libreoffice-bugs] [Bug 100041] Change name of the language from "Oriya" to "Odia"

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100041

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #1 from Adolfo Jayme  ---
Huh? This was already carried out back in 2013.
https://cgit.freedesktop.org/libreoffice/core/commit/?id=108eee306ea0beef1e8cc5e673a72db0928dd6b8

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

2016-05-25 Thread Julien Nabet
 writerfilter/source/dmapper/FontTable.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 31eda69d6b65f224209a100f3ed0801a5c305e1b
Author: Julien Nabet 
Date:   Wed May 25 22:41:52 2016 +0200

We indeed can't do anything with LN_CT_Font_notTrueType here

Avoid this 
warn:writerfilter:18041:1:writerfilter/source/dmapper/FontTable.cxx:144:
   FontTable::lcl_sprm: unhandled token: 93155
when testing https://bugs.documentfoundation.org/attachment.cgi?id=125266

Change-Id: I7bc7cea8398b4430a2e67130f5869057ec0cd256
Reviewed-on: https://gerrit.libreoffice.org/25469
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 

diff --git a/writerfilter/source/dmapper/FontTable.cxx 
b/writerfilter/source/dmapper/FontTable.cxx
index fe714c4..7609bfd 100644
--- a/writerfilter/source/dmapper/FontTable.cxx
+++ b/writerfilter/source/dmapper/FontTable.cxx
@@ -140,6 +140,8 @@ void FontTable::lcl_sprm(Sprm& rSprm)
 break;
 case NS_ooxml::LN_CT_Font_sig:
 break;
+case NS_ooxml::LN_CT_Font_notTrueType:
+break;
 default:
 SAL_WARN("writerfilter", "FontTable::lcl_sprm: unhandled token: " 
<< nSprmId);
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89616] UI: Find Toolbar retains previous search but arrows inactive

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89616

--- Comment #3 from David H. Gutteridge  ---
Confirming this is still relevant with 5.1.3.2 on Mac OS X 10.11.5. (It's a
mildly annoying issue I keep hitting.)

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.0' - svx/source

2016-05-25 Thread Ashod Nakashian
 svx/source/svdraw/svdmrkv.cxx |   26 ++
 1 file changed, 26 insertions(+)

New commits:
commit 28795d0faabd1e1be124fa90bef06d7f47a63311
Author: Ashod Nakashian 
Date:   Wed May 25 23:28:40 2016 -0400

bccu#1843 - Calc copy/paste chart tile invalidation problem

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

diff --git a/svx/source/svdraw/svdmrkv.cxx b/svx/source/svdraw/svdmrkv.cxx
index d872aef..7ad705a 100644
--- a/svx/source/svdraw/svdmrkv.cxx
+++ b/svx/source/svdraw/svdmrkv.cxx
@@ -52,6 +52,7 @@
 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star;
 
@@ -207,6 +208,31 @@ void SdrMarkView::ModelHasChanged()
 if (pV!=NULL && !pV->IsDragObj() && !pV->IsInsObjPoint()) {
 AdjustMarkHdl();
 }
+
+if (comphelper::LibreOfficeKit::isActive())
+{
+//TODO: Is MarkedObjRect valid at this point?
+Rectangle aSelection(GetMarkedObjRect());
+OString sSelection;
+if (aSelection.IsEmpty())
+sSelection = "EMPTY";
+else
+{
+// In case the map mode is in 100th MM, then need to convert the 
coordinates over to twips for LOK.
+if (pMarkedPV)
+{
+if (OutputDevice* pOutputDevice = 
pMarkedPV->GetView().GetFirstOutputDevice())
+{
+if (pOutputDevice->GetMapMode().GetMapUnit() == 
MAP_100TH_MM)
+aSelection = OutputDevice::LogicToLogic(aSelection, 
MAP_100TH_MM, MAP_TWIP);
+}
+}
+
+sSelection = aSelection.toString();
+}
+
+GetModel()->libreOfficeKitCallback(LOK_CALLBACK_INVALIDATE_TILES, 
sSelection.getStr());
+}
 }
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.0' - sc/inc sc/source

2016-05-25 Thread Ashod Nakashian
 sc/inc/fillinfo.hxx  |6 +++---
 sc/source/core/data/fillinfo.cxx |4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 04a18136b186753cd303057155141957c9a90500
Author: Ashod Nakashian 
Date:   Wed May 25 23:28:04 2016 -0400

widen table-info capacity and count to SCSIZE

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

diff --git a/sc/inc/fillinfo.hxx b/sc/inc/fillinfo.hxx
index 419f1c9..3b42dff 100644
--- a/sc/inc/fillinfo.hxx
+++ b/sc/inc/fillinfo.hxx
@@ -195,11 +195,11 @@ struct ScTableInfo
 {
 svx::frame::Array   maArray;
 RowInfo*mpRowInfo;
-sal_uInt16  mnArrCount;
-sal_uInt16  mnArrCapacity;
+SCSIZE  mnArrCount;
+SCSIZE  mnArrCapacity;
 boolmbPageMode;
 
-explicitScTableInfo(const sal_uInt16 capacity = 1024);
+explicitScTableInfo(const SCSIZE capacity = 1024);
 ~ScTableInfo();
 ScTableInfo(const ScTableInfo&) = delete;
 const ScTableInfo& operator=(const ScTableInfo&) = delete;
diff --git a/sc/source/core/data/fillinfo.cxx b/sc/source/core/data/fillinfo.cxx
index 8a543df..e779b6a 100644
--- a/sc/source/core/data/fillinfo.cxx
+++ b/sc/source/core/data/fillinfo.cxx
@@ -1123,7 +1123,7 @@ void ScDocument::FillInfo(
 rArray.MirrorSelfX( true, false );
 }
 
-ScTableInfo::ScTableInfo(const sal_uInt16 capacity)
+ScTableInfo::ScTableInfo(const SCSIZE capacity)
 : mpRowInfo(new RowInfo[capacity])
 , mnArrCount(0)
 , mnArrCapacity(capacity)
@@ -1134,7 +1134,7 @@ ScTableInfo::ScTableInfo(const sal_uInt16 capacity)
 
 ScTableInfo::~ScTableInfo()
 {
-for( sal_uInt16 nIdx = 0; nIdx < mnArrCapacity; ++nIdx )
+for( SCSIZE nIdx = 0; nIdx < mnArrCapacity; ++nIdx )
 delete [] mpRowInfo[ nIdx ].pCellInfo;
 delete [] mpRowInfo;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100039] while editing calc crashes, repeatedly.

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100039

--- Comment #2 from Will MacGhee  ---
I did what was suggested in Comment 1, and it seems to have worked.

-- 
You are receiving this mail because:
You 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-05-25 Thread Winfried Donkers
 sc/qa/unit/data/fods/Functions_Excel_2016.fods | 2756 +
 1 file changed, 2756 insertions(+)

New commits:
commit 908bcbc183a720143e7525ae3e825ff7719192ab
Author: Winfried Donkers 
Date:   Wed May 25 17:43:48 2016 +0200

tdf#97831 unit test document for new Excel2016 functions

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

diff --git a/sc/qa/unit/data/fods/Functions_Excel_2016.fods 
b/sc/qa/unit/data/fods/Functions_Excel_2016.fods
new file mode 100644
index 000..cd63ba8
--- /dev/null
+++ b/sc/qa/unit/data/fods/Functions_Excel_2016.fods
@@ -0,0 +1,2756 @@
+
+
+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-02T17:35:29nl-NL2016-05-25T17:40:44.39664164931PT2H25SLibreOfficeDev/5.2.0.0.alpha1$Linux_X86_64
 
LibreOffice_project/64ab90d1cb496610240d01dec65893cf2f36b964
+ 
+  
+   0
+   0
+   24375
+   23932
+   
+
+ view1
+ 
+  
+   4
+   24
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   100
+   60
+   true
+  
+  
+   3
+   35
+   0
+   2
+   0
+   1
+   2
+   0
+   0
+   0
+   4
+   0
+   100
+   60
+   true
+  
+  
+   0
+   0
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   31
+   0
+   0
+   100
+   60
+   true
+  
+ 
+ Sheet2
+ 894
+ 0
+ 100
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ true
+ false
+ false
+ 1000
+ 1000
+ 1
+ 1
+ true
+
+   
+  
+  
+   7
+   false
+   false
+   true
+   true
+   false
+   false
+   false
+   1000
+   1000
+   true
+   true
+   true
+   true
+   true
+   false
+   12632256
+   false
+   Generic 
Printer
+   
+
+ nl
+ NL
+ 
+ 
+ 
+
+   
+   true
+   true
+   3
+   1
+   true
+   1
+   true
+   jAH+/0dlbmVyaWMgUHJpbnRlcgAAU0dFTlBSVAAWAAMAsgAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9R2VuZXJpYyBQcmludGVyCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCm1hcmdpbmRhanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MApjb2xvcmRldmljZT0wClBQRENvbnRleERhdGEKUGFnZVNpemU6QTQARHVwbGV4Ok5vbmUAABIAQ09NUEFUX0RVUExFWF9NT0RFCgBEVVBMRVhfT0ZG
+   true
+   0
+  
+ 
+ 
+  
+   http://openoffice.org/2004/office; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
+
+   
+  
+ 
+ 
+  
+  
+  
+  
+  
+  
+  
+ 
+ 
+  
+   
+   
+  
+  
+   
+  
+  
+   €
+
+   
+  
+  
+   
+   €
+
+   
+   -
+   
+  
+  
+   
+   :
+   
+  
+  
+   
+   :
+   
+   :
+   
+  
+  
+   
+   :
+   
+  
+  
+   
+  
+  
+   WAAR
+  
+  
+   WAAR
+  
+  
+   ONWAAR
+   
+   
+  
+  
+   € 
+   
+
+  
+  
+   € 
+   
+   -
+   
+  
+  
+   € 
+ 

[Libreoffice-commits] core.git: starmath/inc starmath/source

2016-05-25 Thread Takeshi Abe
 starmath/inc/cursor.hxx|   26 +++---
 starmath/source/cursor.cxx |   52 +++--
 2 files changed, 27 insertions(+), 51 deletions(-)

New commits:
commit f5ea7c09c8a6924b72c9b756a8e435ff40dad6c6
Author: Takeshi Abe 
Date:   Wed May 25 20:00:35 2016 +0900

starmath: nodes in the clipboard are owened by SmClipboard

This also omits the bIsOnlyIfSelected parameter for former
CloneLineToList(), which was true at its sole call site.

Change-Id: Idb71323f68f13ecc90d430ec8e18e0eef766ae4b
Reviewed-on: https://gerrit.libreoffice.org/25444
Tested-by: Jenkins 
Reviewed-by: Takeshi Abe 

diff --git a/starmath/inc/cursor.hxx b/starmath/inc/cursor.hxx
index 3f5c3df..9554fc7 100644
--- a/starmath/inc/cursor.hxx
+++ b/starmath/inc/cursor.hxx
@@ -69,6 +69,8 @@ enum SmBracketType {
 /** A list of nodes */
 typedef std::list SmNodeList;
 
+typedef std::list SmClipboard;
+
 class SmDocShell;
 
 /** Formula cursor
@@ -84,7 +86,6 @@ public:
 , mpPosition(nullptr)
 , mpTree(tree)
 , mpDocShell(pShell)
-, mpClipboard(nullptr)
 , mnEditSections(0)
 , mbIsEnabledSetModifiedSmDocShell(false)
 {
@@ -94,7 +95,6 @@ public:
 
 ~SmCursor()
 {
-SetClipboard();
 }
 
 /** Get position */
@@ -231,7 +231,7 @@ private:
 /** Graph over caret position in the current tree */
 std::unique_ptr mpGraph;
 /** Clipboard holder */
-SmNodeList* mpClipboard;
+SmClipboard maClipboard;
 
 /** Returns a node that is selected, if any could be found */
 SmNode* FindSelectedNode(SmNode* pNode);
@@ -281,13 +281,12 @@ private:
 return pList;
 }
 
-/** Clone a visual line to a list
+/** Clone a visual line to a clipboard
  *
- * Doesn't clone SmErrorNode's these are ignored, as they are context 
dependent metadata.
+ * ... but the selected part only.
+ * Doesn't clone SmErrorNodes, which are ignored as they are context 
dependent metadata.
  */
-static SmNodeList* CloneLineToList(SmStructureNode* pLine,
-   bool bOnlyIfSelected = false,
-   SmNodeList* pList = new SmNodeList());
+static void CloneLineToClipboard(SmStructureNode* pLine, SmClipboard* 
pClipboard);
 
 /** Build pGraph over caret positions */
 void BuildGraph();
@@ -304,15 +303,8 @@ private:
 /** Set selected on nodes of the tree */
 void AnnotateSelection();
 
-/** Set the clipboard, and release current clipboard
- *
- * Call this method with NULL to reset the clipboard
- * @remarks: This method takes ownership of pList.
- */
-void SetClipboard(SmNodeList* pList = nullptr);
-
-/** Clone list of nodes (creates a deep clone) */
-static SmNodeList* CloneList(SmNodeList* pList);
+/** Clone list of nodes in a clipboard (creates a deep clone) */
+static SmNodeList* CloneList(SmClipboard );
 
 /** Find an iterator pointing to the node in pLineList following aCaretPos
  *
diff --git a/starmath/source/cursor.cxx b/starmath/source/cursor.cxx
index b70b8ed..36bc43d 100644
--- a/starmath/source/cursor.cxx
+++ b/starmath/source/cursor.cxx
@@ -1168,67 +1168,52 @@ void SmCursor::Copy(){
 assert(pLine);
 
 //Clone selected nodes
-SmNodeList* pList;
+SmClipboard aClipboard;
 if(IsLineCompositionNode(pLine))
-pList = CloneLineToList(static_cast(pLine), true);
+CloneLineToClipboard(static_cast(pLine), 
);
 else{
-pList = new SmNodeList();
 //Special care to only clone selected text
 if(pLine->GetType() == NTEXT) {
 SmTextNode *pText = static_cast(pLine);
-SmTextNode *pClone = new SmTextNode( pText->GetToken(), 
pText->GetFontDesc() );
+std::unique_ptr pClone(new SmTextNode( 
pText->GetToken(), pText->GetFontDesc() ));
 int start  = pText->GetSelectionStart(),
 length = pText->GetSelectionEnd() - pText->GetSelectionStart();
 pClone->ChangeText(pText->GetText().copy(start, length));
 pClone->SetScaleMode(pText->GetScaleMode());
-pList->push_front(pClone);
+aClipboard.push_front(std::move(pClone));
 } else {
 SmCloningVisitor aCloneFactory;
-pList->push_front(aCloneFactory.Clone(pLine));
+
aClipboard.push_front(std::unique_ptr(aCloneFactory.Clone(pLine)));
 }
 }
 
 //Set clipboard
-if (pList->size() > 0)
-SetClipboard(pList);
-else
-delete pList;
+if (aClipboard.size() > 0)
+maClipboard = std::move(aClipboard);
 }
 
 void SmCursor::Paste() {
 BeginEdit();
 Delete();
 
-if(mpClipboard && mpClipboard->size() > 0)
-

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

2016-05-25 Thread Jochen Nitschke
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a042951ad4db2b84021e1d43361511dec998ce82
Author: Jochen Nitschke 
Date:   Thu May 26 03:15:21 2016 +0200

fix configure typo

Change-Id: I8d98c2ad986cc2ee0516d7b2b607e5db75a6943d
Reviewed-on: https://gerrit.libreoffice.org/25487
Reviewed-by: Jochen Nitschke 
Tested-by: Jochen Nitschke 

diff --git a/configure.ac b/configure.ac
index b88f81b..b9565a9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2027,7 +2027,7 @@ AC_ARG_WITH(symbol-config,
 AS_HELP_STRING([--with-symbol-config],
 [Configuration for the crashreport symbol upload]),
 [],
-[$with_symbol_config=no])
+[with_symbol_config=no])
 
 AC_ARG_WITH(export-validation,
 AS_HELP_STRING([--with-export-validation],
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100038] special at sign(@) treatment is frustrating for new users and impossible to google

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100038

--- Comment #3 from Frederick Eaton  ---
Thank you Aron. I appreciate that you correctly understood my bug report, and I
also want to thank you for documenting the other buggy behavior related to
URLs.

I took Miguel's advice on disabling URL recognition (the person I asked on IRC
only knew how to remove formatting on a cell-by-cell basis - right click,
"Clear Direct Formatting"). But it sounds like this feature is broken enough
that it should be disabled by default until it can be fixed. That's my opinion
as an outsider.

I was not surprised by Miguel's reply, but I was pleasantly surprised by Aron's
- it's been a while since I submitted a bug like this to a project, and not had
to explain twice or three or four times that I'm not just using Bugzilla to ask
a "how do I do X" type question.

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

2016-05-25 Thread Henry Castro
 loolwsd/test/httpwstest.cpp |   49 
 1 file changed, 49 insertions(+)

New commits:
commit 39fe4e5580fa7fda76163ddd4d8a7a02889ec664
Author: Henry Castro 
Date:   Wed May 25 19:57:35 2016 -0400

loolwsd: test: add testFontList

diff --git a/loolwsd/test/httpwstest.cpp b/loolwsd/test/httpwstest.cpp
index 43bd94a..ea6 100644
--- a/loolwsd/test/httpwstest.cpp
+++ b/loolwsd/test/httpwstest.cpp
@@ -81,6 +81,7 @@ class HTTPWSTest : public CPPUNIT_NS::TestFixture
 CPPUNIT_TEST(testInsertAnnotationWriter);
 CPPUNIT_TEST(testEditAnnotationWriter);
 CPPUNIT_TEST(testInsertAnnotationCalc);
+CPPUNIT_TEST(testFontList);
 
 CPPUNIT_TEST_SUITE_END();
 
@@ -111,6 +112,7 @@ class HTTPWSTest : public CPPUNIT_NS::TestFixture
 void testInsertAnnotationWriter();
 void testEditAnnotationWriter();
 void testInsertAnnotationCalc();
+void testFontList();
 
 void loadDoc(const std::string& documentURL);
 
@@ -129,6 +131,9 @@ class HTTPWSTest : public CPPUNIT_NS::TestFixture
  int docWidth, int docHeight)> 
keyhandler,
   std::function 
checkhandler);
+
+std::string getFontList(const std::string& message);
+
 public:
 HTTPWSTest()
 : _uri(helpers::getTestServerURI())
@@ -1523,6 +1528,50 @@ void HTTPWSTest::testInsertAnnotationCalc()
 CPPUNIT_ASSERT_EQUAL(std::string("textselectioncontent: aaa bbb ccc"), 
res);
 }
 
+std::string HTTPWSTest::getFontList(const std::string& message)
+{
+Poco::JSON::Parser parser;
+std::cerr << " trace FontList " << message << std::endl;
+const auto result = parser.parse(message);
+const auto& command = result.extract();
+auto text = command->get("commandName").toString();
+CPPUNIT_ASSERT_EQUAL(std::string(".uno:CharFontName"), text);
+text = command->get("commandValues").toString();
+return text;
+}
+
+void HTTPWSTest::testFontList()
+{
+try
+{
+// Load a document
+std::string documentPath, documentURL;
+std::string text;
+std::vector response;
+
+getDocumentPathAndURL("setclientpart.odp", documentPath, documentURL);
+Poco::Net::HTTPRequest request(Poco::Net::HTTPRequest::HTTP_GET, 
documentURL);
+Poco::Net::WebSocket socket = *connectLOKit(_uri, request, _response);
+
+sendTextFrame(socket, "load url=" + documentURL);
+CPPUNIT_ASSERT_MESSAGE("cannot load the document " + documentURL, 
isDocumentLoaded(socket));
+
+sendTextFrame(socket, "commandvalues command=.uno:CharFontName");
+response = getResponseMessage(socket, "commandvalues:", "testFontList 
");
+CPPUNIT_ASSERT_MESSAGE("did not receive a commandvalues: message as 
expected", !response.empty());
+
+std::stringstream streamResponse;
+std::copy(response.begin() + std::string("commandvalues:").length() + 
1, response.end(), std::ostream_iterator(streamResponse));
+text = getFontList(streamResponse.str());
+CPPUNIT_ASSERT(!text.empty());
+std::cerr << "testFontNames : " << text << std::endl;
+}
+catch (const Poco::Exception& exc)
+{
+CPPUNIT_FAIL(exc.displayText());
+}
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(HTTPWSTest);
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.0' - desktop/qa vcl/source

2016-05-25 Thread Henry Castro
 desktop/qa/desktop_lib/test_desktop_lib.cxx |5 -
 vcl/source/outdev/font.cxx  |   10 ++
 2 files changed, 14 insertions(+), 1 deletion(-)

New commits:
commit 260f3ff257d7839119c8221397d18a516afd8799
Author: Henry Castro 
Date:   Tue May 24 17:24:16 2016 -0400

lok: reset the font list when there are no items

In the pre-init stage the devices were initialized with no
font list, but later the font list is updated. So those devices
were not updated.

Change-Id: I157d4c7079f9b1252916eb92b512aadb8e77329f

diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx 
b/desktop/qa/desktop_lib/test_desktop_lib.cxx
index 13382ac..98fa666 100644
--- a/desktop/qa/desktop_lib/test_desktop_lib.cxx
+++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx
@@ -274,7 +274,8 @@ void DesktopLOKTest::testGetStyles()
 
 void DesktopLOKTest::testGetFonts()
 {
-LibLODocument_Impl* pDocument = loadDoc("blank_text.odt");
+comphelper::LibreOfficeKit::setActive();
+LibLODocument_Impl* pDocument = loadDoc("blank_presentation.odp");
 boost::property_tree::ptree aTree;
 char* pJSON = pDocument->m_pDocumentClass->getCommandValues(pDocument, 
".uno:CharFontName");
 std::stringstream aStream(pJSON);
@@ -289,6 +290,8 @@ void DesktopLOKTest::testGetFonts()
 // check that we have font sizes available for each font
 CPPUNIT_ASSERT( rPair.second.size() > 0);
 }
+free(pJSON);
+comphelper::LibreOfficeKit::setActive(false);
 }
 
 void DesktopLOKTest::testCreateView()
diff --git a/vcl/source/outdev/font.cxx b/vcl/source/outdev/font.cxx
index bce8651..4eb02f9 100644
--- a/vcl/source/outdev/font.cxx
+++ b/vcl/source/outdev/font.cxx
@@ -92,9 +92,19 @@ int OutputDevice::GetDevFontCount() const
 if( !mpGetDevFontList )
 {
 if (!mpFontCollection)
+{
 return 0;
+}
 
 mpGetDevFontList = mpFontCollection->GetDevFontList();
+
+if (!mpGetDevFontList->Count())
+{
+delete mpGetDevFontList;
+mpGetDevFontList = nullptr;
+
+return 0;
+}
 }
 return mpGetDevFontList->Count();
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loleaflet/dist

2016-05-25 Thread Henry Castro
 loleaflet/dist/toolbar/toolbar.js |   16 +++-
 1 file changed, 15 insertions(+), 1 deletion(-)

New commits:
commit 4379d2fc3b247f2efbcc100e81464efee98b4d7a
Author: Henry Castro 
Date:   Wed May 25 19:32:58 2016 -0400

loleaflet: bccu#1798 Choice of styles in listbox limited to a few in 
presentation

diff --git a/loleaflet/dist/toolbar/toolbar.js 
b/loleaflet/dist/toolbar/toolbar.js
index 28176f4..baaf79a 100644
--- a/loleaflet/dist/toolbar/toolbar.js
+++ b/loleaflet/dist/toolbar/toolbar.js
@@ -692,7 +692,21 @@ map.on('updatetoolbarcommandvalues', function (e) {
styles = e.commandValues.CellStyles;
}
else if (map.getDocType() === 'presentation' || 
map.getDocType() === 'drawing') {
-   styles = e.commandValues.Default || 
e.commandValues.Standard;
+   Object.keys(e.commandValues).forEach(function(style) {
+   switch (style) {
+   case 'graphics':
+   case 'table':
+   case 'cell':
+   case 'Commands':
+   break;
+
+   default:
+   if ( styles.length === 0 ) {
+   styles = 
e.commandValues[style];
+   }
+   break;
+   }
+   });
}
 
if (topStyles.length > 0) {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-05-25 Thread Henry Castro
 desktop/qa/desktop_lib/test_desktop_lib.cxx |5 -
 vcl/source/outdev/font.cxx  |   10 ++
 2 files changed, 14 insertions(+), 1 deletion(-)

New commits:
commit b2f994469f3e2f1fe72e9f103b840aa949ace6dd
Author: Henry Castro 
Date:   Tue May 24 17:24:16 2016 -0400

lok: reset the font list when there are no items

In the pre-init stage the devices were initialized with no
font list, but later the font list is updated. So those devices
were not updated.

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

diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx 
b/desktop/qa/desktop_lib/test_desktop_lib.cxx
index efa055a..bdda55e 100644
--- a/desktop/qa/desktop_lib/test_desktop_lib.cxx
+++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx
@@ -270,7 +270,8 @@ void DesktopLOKTest::testGetStyles()
 
 void DesktopLOKTest::testGetFonts()
 {
-LibLODocument_Impl* pDocument = loadDoc("blank_text.odt");
+comphelper::LibreOfficeKit::setActive();
+LibLODocument_Impl* pDocument = loadDoc("blank_presentation.odp");
 boost::property_tree::ptree aTree;
 char* pJSON = pDocument->m_pDocumentClass->getCommandValues(pDocument, 
".uno:CharFontName");
 std::stringstream aStream(pJSON);
@@ -285,6 +286,8 @@ void DesktopLOKTest::testGetFonts()
 // check that we have font sizes available for each font
 CPPUNIT_ASSERT( rPair.second.size() > 0);
 }
+free(pJSON);
+comphelper::LibreOfficeKit::setActive(false);
 }
 
 void DesktopLOKTest::testCreateView()
diff --git a/vcl/source/outdev/font.cxx b/vcl/source/outdev/font.cxx
index c6c4f4f..01aa841 100644
--- a/vcl/source/outdev/font.cxx
+++ b/vcl/source/outdev/font.cxx
@@ -74,9 +74,19 @@ int OutputDevice::GetDevFontCount() const
 if( !mpDeviceFontList )
 {
 if (!mpFontCollection)
+{
 return 0;
+}
 
 mpDeviceFontList = mpFontCollection->GetDeviceFontList();
+
+if (!mpDeviceFontList->Count())
+{
+delete mpDeviceFontList;
+mpDeviceFontList = nullptr;
+
+return 0;
+}
 }
 return mpDeviceFontList->Count();
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-5.2.0.0.beta1'

2016-05-25 Thread Christian Lohmaier
Tag 'libreoffice-5.2.0.0.beta1' created by Christian Lohmaier 
 at 2016-05-25 22:24 +

Tag libreoffice-5.2.0.0.beta1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXRiYiAAoJEPQ0oe+v7q6jniEQAIGXWYZISltdfcZYJuhVRZXu
1uVxWuanqi97UrA6IPjj78YA7ypHZPMHS2qj9YKBvHEwSVAYSjeodCMKplRYSUq4
pF0PHIyX3mbgY6BghhqnDljWuUx2/kSQM3veS5nNjQmyTAqwaLu4kKM7AYDKx/xH
TZe0Y/GC8Dkg5kIx2QxCfyk6JBZVxP4IMhPQLNnQx0bLWDjDK+4fC5/M8QJKS1rh
i7CqPQMfqzpJm9RF9J625uM3d4Mh0yzuVelVxD6ZYNq55OzLlheEVZU5vq3OxrIk
lMdJWPL7RJLQikzKZMz6A/8zpYPM5SJSLeth/FFDhGvrH40GfdDssIW49TJWdSP8
w1YVPJz/hXVPDQvaHdHwdWqezl1cThNOT7l19lpeJ48Kwq5Te6yWOH8M/ZH0ySP8
ehEncrtooyurzywJ76IRiprPWjf3TM67wEw7bdkbGyqAkV3yhXqUbOQWHajXLdAB
dumf5nFq+PBoYpOR7ZIz/P0o4Z5cIsuj01d3G1NT4pkL/SVp7yn6cUo3R0wtRTJS
FjVJYcZBGxFMtoM8ZbgtuLylSXFMFdOjGOU3d/LjT9Kdx+zoMpplBhB3SOko+Fwh
oG6lE6Nw+5JGQ01SHZWaptS7QoXDXGQ2KNpetN5Q/sth8+PbFNTVPzPlJbYj7+Un
2JLrJUTf6f96CHFnPx+e
=xGL3
-END PGP SIGNATURE-

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


[Libreoffice-commits] translations.git: Changes to 'refs/tags/libreoffice-5-2-branch-point'

2016-05-25 Thread Christian Lohmaier
Tag 'libreoffice-5-2-branch-point' created by Christian Lohmaier 
 at 2016-05-25 22:15 +

Tag libreoffice-5-2-branch-point
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXRiQNAAoJEPQ0oe+v7q6jfGsQAMAq0wVjf+sPd9fgLZ0H25l6
J81GkN0QCYzqqXYKUfXqGlzGRMlC64ejqRfcJL99MTJorhzeK4IQwamPmrPtaNNT
mlxydOqG5dEe4fofRdsYKk/Somp01Jo4GL2WGBcThUixt4Gr2rO3DH/ofPpLeob3
v8MFMjMroKx18dvbY6DHw2BRx5bgHv0TA5G8d7skk4rEZmVxANqTRhYj1ic6j05r
0Y9ZPfq97wUukO2On8xA30tgp4kbrk9oh9P702oHU9fWp1tX9JKAv14mgfTiHROO
ptXrsSfiy6RwuhRT8Pxc4HaO655M23UlPE4/fVN1T1aqxZFqnq+IwyTAenRYLT9F
QqiVegMvet1nmnfgmoGVsuyPYXoa5mLrkQ0suIrFt4B42dqHGVh12RuBaP2zf3Dj
FY+fkUcGqQxW+hwwATtCLc0FhHmjuFVyZC2xp938wM3NYriOWkXKhsWjxI5obR02
u6+TUQsLTvkfcfsnO86gJukFjPDIE0dBVa/rnygENARVzyxUEmGMHVQQx9KTUIzw
nTapRvQ0lIMGG5BcgTtCs4zk4OLyYWG5tep8jjljwTVLH0FThD5GBQtG9312tUN8
hDnMvQTktjH8ygejI08Tyv+qfRMYzfmdvZU6GbE3aqW4/ry7AY3EtIRPdVxjJ4Il
CChUnKZvSTR70lVOYA9z
=57VO
-END PGP SIGNATURE-

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


[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-5-2-branch-point'

2016-05-25 Thread Christian Lohmaier
Tag 'libreoffice-5-2-branch-point' created by Christian Lohmaier 
 at 2016-05-25 22:15 +

Tag libreoffice-5-2-branch-point
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXRiQQAAoJEPQ0oe+v7q6jdLcQAJGjLQYt8uYcApldeQw2XSIQ
Vlhy4ky/XT5OOYPDI2Xmyt8hxmCPCgNk6X8Kl9u+EkZJmgVLq4VmhzrEATAt6CmD
ZnVLkIMyuR0fqAn9G82GHWjsbYpR/ZsjtkjzHiCNB45roCwlD/ghj3rCDKAZDE4d
Vk4fJIzskmzpf2QJxU8l3DeBkSp3QV/71HdYbkzsyvit31fsr4W2LlBE1BWk7zOW
hOlv7j5Z73Zthav0WODLsxZXf8ZrDnvQ2hkrZJMoOD3CyjsbB0wDUJHEaqIIc70Q
fymkKmr89R9RkhP+gFl/zMJLLS/xKpiMRVKhZpcMM4wyaqnbdvfsJKackrvT/Dpg
mRiR1DhM55CovGo2kcb1s8u6HYFxRBD5wYbs8zhZGohcsuN8eUUFLKQtU9rryzre
JBjCoJPHnysn0rGEdcjWN5Z3bWB3hyIRNHvcio3huhp5W361V9fVi8QC+PMDdfED
Ebuj6g+AWpYAPUmmLO8G1yus12/3QeZ/zAey6RzoEu3bs1QdGIKf9g5CC7KWaRmZ
oye8cTqE9BRU3Br2/hgXNQYxzqy1h/JsxAjtF5tO9jKFUxEGq4KcJ+GVyuGefAWo
4srr950P3hUpzLDQFkqCV8ez0yLsRGUt4HAc2qUvDswV4EgZqlbEX4PqHz69Nbsl
fyIcGzaVBBxG2b6qfBLa
=Fg4X
-END PGP SIGNATURE-

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


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-5-2-branch-point'

2016-05-25 Thread Christian Lohmaier
Tag 'libreoffice-5-2-branch-point' created by Christian Lohmaier 
 at 2016-05-25 22:15 +

Tag libreoffice-5-2-branch-point
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXRiQJAAoJEPQ0oe+v7q6jfjQP/Av8RgXV1UxI4Iy5U82S9mri
bNqgnFWkT85hyv8289YlBKOrmJEMiJyZt3jYSr6VKVYfn4LG86jcZ93IR21EfzMc
4S5DmSA6zzfXubFKDhEEQouYfH0lh2J0784PkREiRVZS1WizRKjyXZy4VBOjXSfq
jsR3NsQiW3X7cbkRMbcqSZCJ5Q6rb165mvBQbfH3ebOiyyzVGB2GzZgwiO7f/ekU
p7OmOFGECGcl/wvrm/COHswdld6oGZJrpRLGSIjzdGBwHWNPTZDEUNm1KmZ19IwR
+SZpYOoBE45YciFUugGIrtUYzTruy9/HxGChvhywRSojIRg91tCthlNiS9O9kwwX
LVCI7rWZltx2csONAo68PyuGT0HohEwtimvEp1BzNviAmqWgaguJvGyadW++/H+z
/yOspjxxtA/7H0nBK8hNhiaDLzJ5MAaVOzvHAmELgHYPzAY/BcmqxG+f4zsH5tfN
xm23m2HbhspQYnww/T5gVde15XmXLMVOp3CwwcvFkQDVioHZrNU2sFCGK8gDE9kV
RUwYmcFS49O3TZ4KZXRJSaNZ+gO07z/8zI4vA4WeE+igL3lB0sp+PmCFbkWmDeyw
tMLJH6tE22zyyygtRHWLShnnaRmXNgwvncSDkZkxF0K3AHqCU+b7JXBEp7Oq5kEy
wQVHDtfoagjbXunqkCH2
=eDV2
-END PGP SIGNATURE-

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


[Libreoffice-commits] translations.git: Changes to 'refs/tags/libreoffice-5.2.0.0.beta1'

2016-05-25 Thread Christian Lohmaier
Tag 'libreoffice-5.2.0.0.beta1' created by Christian Lohmaier 
 at 2016-05-25 22:24 +

Tag libreoffice-5.2.0.0.beta1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXRiYpAAoJEPQ0oe+v7q6jbAIP/jH/Ph7sVK3DBA5T6lBOFVB2
gi7eTPlu/mKgmL+ABh0DzmbtkRd8HyRfMJohRl0QveteDAtqcUmNmO5qfA+a2SnW
Mo/61axCG2nIlFPymsuV4UvvbgvzGQfec6jLD8iV5G+jFZ78IC4JP0p5NwRscUsp
xQaBNwOwAh+xIlQ+/m9pbCwg3PqYDyT/GubV5tStOAUSYyTIOq2prOC/bMczrPUp
N0/CwGJW8zf9aPebjPDgbL/HMB+v8HQ7Ei05123GmujEaaWy9JSthpcRtv+rdKpT
F5hUlJs3PxYBh4v0LFxBe1Dm6q5ZPMBKRAkxdm12M2yvwBeltonnZcUr4xhcu0ga
aKgEDS7oDMacVbcoF1WTicEfcI5Tj9HDo6DdJt3pMWixLuRWdWzdpB9ql69YKDG/
xvFOvxEtVjvdaawKFtG5nQgRqwSOLhnGizzNiM4IYHenyvrSBys1Zz1qnsO979Xz
paJFzJWDVFYhEkFVzx7TaLV/QA9tXWfaD0n00m7OgcBz1ek5948ZKyzETOqf9bg2
z8y2AabzicC9pjKubzJ7rPm8fnSN0XMUgO66ySzF3mN3X5YcztXGBjMGg1DCXfE9
N9n/ZpiQmc0ZFSPfmIZKHegNWuS4DnlhiY9M9TntxGI9yoFf5jPmeu5zBU+Jnq9j
wsNSqkT3t1CuT9OnI4/Y
=7k05
-END PGP SIGNATURE-

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


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-5-2-branch-point'

2016-05-25 Thread Christian Lohmaier
Tag 'libreoffice-5-2-branch-point' created by Christian Lohmaier 
 at 2016-05-25 22:15 +

Tag libreoffice-5-2-branch-point
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXRiQGAAoJEPQ0oe+v7q6j2FEP/jKptCPAj0Xy6aCm6TzV24/L
qO2fpwBTEUk/LiNnBvxdHF6eNmFQGp7GiWFveR+TIjhY8lot+w85ko95xGhEEwcS
tFoN4VAkyXmqvljOI4drxsluHShI6B5n9EhoapPz7oNonETWwjY4u/8GncQWY+m0
ntzklZ9fKM7LL8dQjHSCYhxWuQUEOp6/rhh3G5n+Oz1hddx4RpFsSJrBO0DVLRoM
3YqKAfZnPUUMD6Ho4mHE8hwYx2s505sY6ma6IgtglXRCuWay2Zs+T2ts+S1Yzk88
iHnxqKSxxvCOxY2mR89MqjzTMbqXn1ZBWmBw++yF2P/Gw2QSeye1WIjVtSrv8uZJ
m1tDvOGecxZUydEAAeg4haOLIV0EB981TkpN+gtVgo9iWdcLCORWlZsEayA9PIPt
Ix6vCTal1MEhvVBi1rLPA4SaKxzZUWnjasl+nqZmGEHE67CF5vg+CtPvInwiMJvT
SJx7KagGkoqcsykQ8J/riiht/u8CmEDt1B7TyxhoXQ4TpoqPE3VXsTvk5ssxntvY
Bhllr7nLBvnjAE6znQmLMyS9RHhUcQw0libQ2KJDI6Toftf7zyL5RWfc7wtpLcn6
jtFSXdJkQ3Xr8g1e2uL5RBbyJY3HJ+Vm3/6KAKtHGvsQ7couvRb7FWenDon9Kpgm
AUKc3ddoT/QXfs/E+nXm
=s90q
-END PGP SIGNATURE-

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


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-5.2.0.0.beta1'

2016-05-25 Thread Christian Lohmaier
Tag 'libreoffice-5.2.0.0.beta1' created by Christian Lohmaier 
 at 2016-05-25 22:24 +

Tag libreoffice-5.2.0.0.beta1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXRiYmAAoJEPQ0oe+v7q6js88P/3sJT6PMps+EHzr535QVwH54
YcOKlu1su7LlHSA9DoLpLASr0zEkTDXzxa+AsdLLfRSyEapcJ/2ovHcE2oZeXY8+
Hg9wEcbKmPdtLJQVcs+xIwHrL/oxLW/IfA/8PU8WWhe4Y3hkbAF2jYcm6HZ68i2+
KUClisyABuu4JSHg5MCM9SAJSpVkGIC9AxjkbdgEi0kcflN1JLn+9ZzNo0IlTaYP
skw0Iu824vgh3nTIYWWfD7MUoGBV0WipS8DjwjqeQ0F49EQFvVkZ069w0vuOi1jL
UxWKKqlcEvTga431TAz2snxDtU5ok0rDbfFv6yWJffrjClek62eIoxGcuZy0yY4B
RbXjD2CEbJbqUjsjqvCgqxc4jRcCkrLWK1r5Rw4ytCAnOEeZ49ioT+JJ5lKmQHhi
3/K6mrvGb2T7WD4gPaSXOmDrWbyAFex6Hkk1rWV0ZM8X7beN5MBiWtKBkKLEM/iI
sJWP9uqhK6HXDjk3kCnpccOJA+2HsqIGdo67IW1cFqxmYAMaSf/MabYDD3OiMTLh
PRu6SdvaDjBOjHC8i42YFcFfdONWGj/IplEfN41+PyHZm6gZKClPDAtaFptvjkYm
usOncHUj8aRXerW95HEKGKnamBddpEJr/0c36AFivXG4/sTFrsIVaWttEIeuIt8s
S4KrDD39rN8VQ8636QjO
=q/J2
-END PGP SIGNATURE-

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - configure.ac

2016-05-25 Thread Christian Lohmaier
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e7dab0b098515bafcfe4a392d442cd5280046fed
Author: Christian Lohmaier 
Date:   Thu May 26 00:25:55 2016 +0200

bump product version to 5.2.0.0.beta1+

Change-Id: Ib58a06b2e99a50d013eb4089d347c5cd0c8939e7

diff --git a/configure.ac b/configure.ac
index 44f6e87..761571a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[5.2.0.0.alpha1+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[5.2.0.0.beta1+],[],[],[http://documentfoundation.org/])
 
 AC_PREREQ([2.59])
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-5.2.0.0.beta1'

2016-05-25 Thread Christian Lohmaier
Tag 'libreoffice-5.2.0.0.beta1' created by Christian Lohmaier 
 at 2016-05-25 22:24 +

Tag libreoffice-5.2.0.0.beta1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXRiYwAAoJEPQ0oe+v7q6jUcMP/1K9z5qW/GV/HDObeu/lWj0u
mJYsweQZrFZ2nL7WpiaklQl54LAFMkpQk2U2mBBwIwAetu2eZ50KqZpM1QZ6pnHi
mrp+JkYYBQ0z/fRA5ObW2XpilDsTLXBH0eJndLwmz5n634uZjDsukv7Bh6IAxTr3
nVjRwd1PvGq8COsCJMqF3K326vW8W2SNL9lrtJefWbPV8or0HgYQydyI8RbPUqII
QnXZkTcHj8ciKqahpOuO97Rj+Zc+ab1dnAWYxsxxX7Oz8sLOfm9/ODyrsXtqt0Hn
9pHAjsuaOfFPrbBsC9W/54cJXPOXQ5TOoVBAqJhVLrkh3sOOl1KYvw8/TqUTGm3e
Z29syO6OqL6BGKZjqT1adBAtrVOsy9qqIWIlcMVmth+aftoWLu+YSGLIqIMd0zwY
tI0LVkiTRl+DxtsQxBPzUvW4GeMq7/qiLkkfvrgjfGq7giPD4SCtqj5FixgFpU8J
KYwmOm47Kij8ceuLZFk9uRdkPwENe8nQkBb2DdpgdgtRnz+4D6tSJrY8F5buafKB
Zi2tvpGxFC6vQHCcmWRD7s6M+Glpc4hHtUzHg+00akcUuOIN3HwOa7zFMLIPvOyK
jH/edTiXsjPA2fFOvkgMB1wRXhWGALFoyKFCyuN9JDWM/5aeLXWGOWoP++x3IekK
ycHm2BmUhVXTarGh5ty7
=ipbx
-END PGP SIGNATURE-

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


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

2016-05-25 Thread Christian Lohmaier
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 61b43a02cc2b19cc39e801d68714958398d4a401
Author: Christian Lohmaier 
Date:   Thu May 26 00:22:32 2016 +0200

bump product version to 5.3.0.0.alpha0+

Change-Id: I35fce4ddd6418bb9019c66ca2b5ee4dfd7a8bac5

diff --git a/configure.ac b/configure.ac
index 44f6e87..b88f81b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[5.2.0.0.alpha1+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[5.3.0.0.alpha0+],[],[],[http://documentfoundation.org/])
 
 AC_PREREQ([2.59])
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Changes to 'libreoffice-5-2'

2016-05-25 Thread Christian Lohmaier
New branch 'libreoffice-5-2' available with the following commits:
commit 92ed5973a0715822fb2aa1c3aaf1f6b53119eba0
Author: Christian Lohmaier 
Date:   Thu May 26 00:19:10 2016 +0200

Branch libreoffice-5-2

This is 'libreoffice-5-2' - the stable branch for the 5.2.x releases.
The commit rules are different according to the development phase:

A. 5.2.0 beta phase:

   A. any bug fixes are allowed without review
   B. late features need approval by 3 people with different affiliation

B. 5.2.0 rc phase and later:

   A. fixes need approval by one reviewer
   B. late features need approval by 3 more people with different 
affiliation

IMPORTANT: Every developer is responsible for pushing the fixes into all
  appropriate branches. Note that we do not plan any merge
  from this branch to master or vice versa.

Please, help use to make stable and usable release. If you want to build
something cool, unstable, and risky, use master.

Change-Id: I0d128c867fa28abb632e77bc5af0361d664fbf1e

___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Changes to 'libreoffice-5-2'

2016-05-25 Thread Christian Lohmaier
New branch 'libreoffice-5-2' available with the following commits:
commit 7ec3bae0ae0ae4274d3377b5995f13fb155ba6b0
Author: Christian Lohmaier 
Date:   Thu May 26 00:18:52 2016 +0200

Branch libreoffice-5-2

This is 'libreoffice-5-2' - the stable branch for the 5.2.x releases.
The commit rules are different according to the development phase:

A. 5.2.0 beta phase:

   A. any bug fixes are allowed without review
   B. late features need approval by 3 people with different affiliation

B. 5.2.0 rc phase and later:

   A. fixes need approval by one reviewer
   B. late features need approval by 3 more people with different 
affiliation

IMPORTANT: Every developer is responsible for pushing the fixes into all
  appropriate branches. Note that we do not plan any merge
  from this branch to master or vice versa.

Please, help use to make stable and usable release. If you want to build
something cool, unstable, and risky, use master.

Change-Id: I11e7d39087176860e7d17ca0abb1c16570dc5af9

___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Changes to 'libreoffice-5-2'

2016-05-25 Thread Christian Lohmaier
New branch 'libreoffice-5-2' available with the following commits:
commit 97922d2199577a138f7336c0a0bf045b93204b55
Author: Christian Lohmaier 
Date:   Thu May 26 00:18:52 2016 +0200

Branch libreoffice-5-2

This is 'libreoffice-5-2' - the stable branch for the 5.2.x releases.
The commit rules are different according to the development phase:

A. 5.2.0 beta phase:

   A. any bug fixes are allowed without review
   B. late features need approval by 3 people with different affiliation

B. 5.2.0 rc phase and later:

   A. fixes need approval by one reviewer
   B. late features need approval by 3 more people with different 
affiliation

IMPORTANT: Every developer is responsible for pushing the fixes into all
  appropriate branches. Note that we do not plan any merge
  from this branch to master or vice versa.

Please, help use to make stable and usable release. If you want to build
something cool, unstable, and risky, use master.

Change-Id: I994c2f423a16cf22ebaad1d2e8f9881eae8e7b22

___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] translations.git: Changes to 'libreoffice-5-2'

2016-05-25 Thread Christian Lohmaier
New branch 'libreoffice-5-2' available with the following commits:
commit 1b5f139ff89a6041aec6aefc66d3d275a21b78ec
Author: Christian Lohmaier 
Date:   Thu May 26 00:18:52 2016 +0200

Branch libreoffice-5-2

This is 'libreoffice-5-2' - the stable branch for the 5.2.x releases.
The commit rules are different according to the development phase:

A. 5.2.0 beta phase:

   A. any bug fixes are allowed without review
   B. late features need approval by 3 people with different affiliation

B. 5.2.0 rc phase and later:

   A. fixes need approval by one reviewer
   B. late features need approval by 3 more people with different 
affiliation

IMPORTANT: Every developer is responsible for pushing the fixes into all
  appropriate branches. Note that we do not plan any merge
  from this branch to master or vice versa.

Please, help use to make stable and usable release. If you want to build
something cool, unstable, and risky, use master.

Change-Id: I38cd3b82531db6df7e254efd459e744a922597e2

___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: C2220: warning treated as error (64 bit MSVC 2015)

2016-05-25 Thread slacka
With sberg's and Noel's patches, I can now build the 64-bit version again.
Nice work team!

To answer my own question, the C4334 warning is new in VS 2015 Update 2.




--
View this message in context: 
http://nabble.documentfoundation.org/C2220-warning-treated-as-error-64-bit-MSVC-2015-tp4184053p4184447.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 98446] Hide Whitespace option grayed-out intermittently

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98446

--- Comment #9 from Geoff  ---
The "fix" -- at least in Version: 5.1.3.2 -- appears to be to remove it
completely! I don't even get a greyed-out menu item in Linux

-- 
You are receiving this mail because:
You 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-1' - readlicense_oo/license

2016-05-25 Thread Christian Lohmaier
 readlicense_oo/license/CREDITS.fodt | 2994 ++--
 1 file changed, 1526 insertions(+), 1468 deletions(-)

New commits:
commit 6fb6d5a0da08d4e1934f197d25e0fe754d88cb10
Author: Christian Lohmaier 
Date:   Thu May 26 00:07:28 2016 +0200

update credits

Change-Id: Ia4d4e0687e79d546876042beebea4eafe66d3f37
(cherry picked from commit 5b168b3fa568e48e795234dc5fa454bf24c9805e)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index b11c7de..89fa8ef 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,10 +1,10 @@
 
 
 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: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:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is: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:officeooo="http://openoffice.org/2009/office; 
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:formx="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.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.2.2$Linux_X86_64
 
LibreOffice_project/d3bf12ecb743fc0d20e0be0c58ca359301eb705f2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.3.2$Linux_X86_64
 
LibreOffice_project/644e4637d1d8544fd9f56425bd6cec110e49301b2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   554
+   501
501
41197
21327
@@ -16,9 +16,9 @@
  3676
  3471
  501
- 554
+ 501
  41697
- 21879
+ 21826
  0
  0
  false
@@ -68,7 +68,7 @@
false
false
true
-   5167866
+   5217702
false
false
false
@@ -82,6 +82,7 @@
true
high-resolution
false
+   false

 
  hu
@@ -91,12 +92,14 @@
  
 

-   false
+   false
true
true
true

true
+   false
+   false
true
false
false
@@ -116,8 +119,6 @@


false
-   false
-   false
   
  
  
@@ -311,21 +312,21 @@
  
  
   
-   
+   
   
   
-   
+   
   
   

   
   
-   
+   
   
   

   
-  
+  

   
   
@@ -389,16 +390,16 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -406,7 +407,7 @@
   

   
-  
+  

   
   
@@ -1029,13 +1030,14 @@

   
  Credits
-1159 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-05-04 00:07:23.
+1164 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-05-26 00:00:36.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
  
  
- 
+ 
+ 
  
   
Ruediger 
TimmCommits: 82464Joined: 
2000-10-10
@@ -1055,10 +1057,10 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 19330Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 19443Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 12000Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 12124Joined: 
2000-10-04
   
   
Ivo 
HinkelmannCommits: 9480Joined: 
2002-09-09
@@ -1066,35 +1068,35 @@
  
  
 

[Libreoffice-commits] core.git: readlicense_oo/license

2016-05-25 Thread Christian Lohmaier
 readlicense_oo/license/CREDITS.fodt | 2994 ++--
 1 file changed, 1526 insertions(+), 1468 deletions(-)

New commits:
commit 5b168b3fa568e48e795234dc5fa454bf24c9805e
Author: Christian Lohmaier 
Date:   Thu May 26 00:07:28 2016 +0200

update credits

Change-Id: Ia4d4e0687e79d546876042beebea4eafe66d3f37

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index b11c7de..89fa8ef 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,10 +1,10 @@
 
 
 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: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:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is: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:officeooo="http://openoffice.org/2009/office; 
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:formx="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.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.2.2$Linux_X86_64
 
LibreOffice_project/d3bf12ecb743fc0d20e0be0c58ca359301eb705f2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.3.2$Linux_X86_64
 
LibreOffice_project/644e4637d1d8544fd9f56425bd6cec110e49301b2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   554
+   501
501
41197
21327
@@ -16,9 +16,9 @@
  3676
  3471
  501
- 554
+ 501
  41697
- 21879
+ 21826
  0
  0
  false
@@ -68,7 +68,7 @@
false
false
true
-   5167866
+   5217702
false
false
false
@@ -82,6 +82,7 @@
true
high-resolution
false
+   false

 
  hu
@@ -91,12 +92,14 @@
  
 

-   false
+   false
true
true
true

true
+   false
+   false
true
false
false
@@ -116,8 +119,6 @@


false
-   false
-   false
   
  
  
@@ -311,21 +312,21 @@
  
  
   
-   
+   
   
   
-   
+   
   
   

   
   
-   
+   
   
   

   
-  
+  

   
   
@@ -389,16 +390,16 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -406,7 +407,7 @@
   

   
-  
+  

   
   
@@ -1029,13 +1030,14 @@

   
  Credits
-1159 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-05-04 00:07:23.
+1164 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-05-26 00:00:36.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
  
  
- 
+ 
+ 
  
   
Ruediger 
TimmCommits: 82464Joined: 
2000-10-10
@@ -1055,10 +1057,10 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 19330Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 19443Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 12000Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 12124Joined: 
2000-10-04
   
   
Ivo 
HinkelmannCommits: 9480Joined: 
2002-09-09
@@ -1066,35 +1068,35 @@
  
  
   
-   Tor 
LillqvistCommits: 7366Joined: 
2010-03-23
+   Tor 

[Libreoffice-bugs] [Bug 99326] Ability to disable GTK+ auto-accelerator

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99326

--- Comment #22 from Luke  ---
If we insist on following the system theme, can we give the users the option to
change the system theme settings? If we did this in the installer or main
application, I think it would be a fair compromise. 

I don't care if it's system level or application level, but we should the give
user the option to continue to use the old behavior.

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


[Libreoffice-bugs] [Bug 78580] VIEWING: Linked images are not displayed when files are on read-only media ( e.g. DVD)

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78580

--- Comment #48 from Aron Budea  ---
(In reply to Ulrich Windl from comment #47)
> What I did is this: I renamed "LibreOffice" in
> C:\Users\myself\AppData\Roaming to "LibreOffice_", effectively wiping the
> defaults. Then I started LibreOffice and opened the sample document: The
> image displayed!
> 
> Then I changed the option above, and tried to open the sample document
> again: The image did not load!

So, does this mean a clear profile solved the issue for you? Can you also check
what happens if you change the option after you copy back your original user
data? (was it checked, and does unchecking it also make the images appear?)

> Now the question is: If you open a document that has linked images, why are
> the images trusted less than the document (if both reside in the same
> location)?
> Or the other way: Are embedded images more secure than linked ones?

It's somewhat more secure. If the linked content is in an unknown place, they
can be more easily be replaced by attackers, while if it's in your document,
they have to get hold of the document, tamper with it, and replace the original
file (digitally signing the document can protect against that). I'm not sure
how relevant it is for images in particular, it's more of a general basic
security feature.

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

2016-05-25 Thread Christian Lohmaier
 extras/source/autocorr/lang/bg/DocumentList.xml |2 +-
 extras/source/autocorr/lang/ca/DocumentList.xml |3 ++-
 extras/source/autocorr/lang/fr/DocumentList.xml |2 +-
 extras/source/autocorr/lang/is/DocumentList.xml |3 ++-
 extras/source/autocorr/lang/it/DocumentList.xml |2 +-
 extras/source/autocorr/lang/ja/DocumentList.xml |2 +-
 extras/source/autocorr/lang/lt/DocumentList.xml |   16 +---
 extras/source/autocorr/lang/pl/DocumentList.xml |3 ++-
 extras/source/autocorr/lang/pt/DocumentList.xml |2 +-
 extras/source/autocorr/lang/ro/DocumentList.xml |5 +++--
 extras/source/autocorr/lang/sk/DocumentList.xml |5 +++--
 extras/source/autocorr/lang/sv/DocumentList.xml |5 +++--
 extras/source/autocorr/lang/tr/DocumentList.xml |2 +-
 13 files changed, 34 insertions(+), 18 deletions(-)

New commits:
commit 75f37680e1b4ba7f729bee45438a0dfcc1ce18c8
Author: Christian Lohmaier 
Date:   Thu May 26 00:00:36 2016 +0200

update emoji autocorrect files from po-files

Change-Id: I61d30e9b44089e97c7732d651a43b7beb901

diff --git a/extras/source/autocorr/lang/bg/DocumentList.xml 
b/extras/source/autocorr/lang/bg/DocumentList.xml
index 6ae6d3a..eea1376 100644
--- a/extras/source/autocorr/lang/bg/DocumentList.xml
+++ b/extras/source/autocorr/lang/bg/DocumentList.xml
@@ -16,7 +16,6 @@
   
   
   
-  
   
   
   
@@ -104,6 +103,7 @@
   
   
   
+  
   
   
   
diff --git a/extras/source/autocorr/lang/ca/DocumentList.xml 
b/extras/source/autocorr/lang/ca/DocumentList.xml
index 1221a9a..abf8af4 100644
--- a/extras/source/autocorr/lang/ca/DocumentList.xml
+++ b/extras/source/autocorr/lang/ca/DocumentList.xml
@@ -357,6 +357,7 @@
   
   
   
+  
   
   
   
@@ -611,7 +612,7 @@
   
   
   
-  
+  
   
   
   
diff --git a/extras/source/autocorr/lang/fr/DocumentList.xml 
b/extras/source/autocorr/lang/fr/DocumentList.xml
index d64b559..9045d56 100644
--- a/extras/source/autocorr/lang/fr/DocumentList.xml
+++ b/extras/source/autocorr/lang/fr/DocumentList.xml
@@ -455,7 +455,6 @@
   
   
   
-  
   
   
   
@@ -828,6 +827,7 @@
   
   
   
+  
   
   
   
diff --git a/extras/source/autocorr/lang/is/DocumentList.xml 
b/extras/source/autocorr/lang/is/DocumentList.xml
index ee3c340..4240566 100644
--- a/extras/source/autocorr/lang/is/DocumentList.xml
+++ b/extras/source/autocorr/lang/is/DocumentList.xml
@@ -1,6 +1,5 @@
 
 http://openoffice.org/2001/block-list;>
-  
   
   
   
@@ -186,6 +185,7 @@
   
   
   
+  
   
   
   
@@ -198,6 +198,7 @@
   
   
   
+  
   
   
   
diff --git a/extras/source/autocorr/lang/it/DocumentList.xml 
b/extras/source/autocorr/lang/it/DocumentList.xml
index 725efff..58124dd 100644
--- a/extras/source/autocorr/lang/it/DocumentList.xml
+++ b/extras/source/autocorr/lang/it/DocumentList.xml
@@ -87,7 +87,6 @@
   
   
   
-  
   
   
   
@@ -457,6 +456,7 @@
   
   
   
+  
   
   
   
diff --git a/extras/source/autocorr/lang/ja/DocumentList.xml 
b/extras/source/autocorr/lang/ja/DocumentList.xml
index fa6a852..41ddf1c 100644
--- a/extras/source/autocorr/lang/ja/DocumentList.xml
+++ b/extras/source/autocorr/lang/ja/DocumentList.xml
@@ -814,7 +814,6 @@
   
   
   
-  
   
   
   
@@ -1120,6 +1119,7 @@
   
   
   
+  
   
   
   
diff --git a/extras/source/autocorr/lang/lt/DocumentList.xml 
b/extras/source/autocorr/lang/lt/DocumentList.xml
index af9912b..dbdafc8 100644
--- a/extras/source/autocorr/lang/lt/DocumentList.xml
+++ b/extras/source/autocorr/lang/lt/DocumentList.xml
@@ -80,7 +80,7 @@
   
   
   
-  
+  
   
   
   
@@ -174,6 +174,7 @@
   
   
   
+  
   
   
   
@@ -201,8 +202,9 @@
   
   
   
+  
   
-  
+  
   
   
   
@@ -307,6 +309,7 @@
   
   
   
+  
   
   
   
@@ -371,6 +374,8 @@
   
   
   
+  
+  
   
   
   
@@ -394,6 +399,7 @@
   
   
   
+  
   
   
   
@@ -411,6 +417,7 @@
   
   
   
+  
   
   
   
@@ -418,7 +425,7 @@
   
   
   
-  
+  
   
   
   
@@ -436,6 +443,7 @@
   
   
   
+  
   
   
   
@@ -469,6 +477,7 @@
   
   
   
+  
   
   
   
@@ -527,6 +536,7 @@
   
   
   
+  
   
   
   
diff --git a/extras/source/autocorr/lang/pl/DocumentList.xml 
b/extras/source/autocorr/lang/pl/DocumentList.xml
index eb0edfb..085a55d 100644
--- a/extras/source/autocorr/lang/pl/DocumentList.xml
+++ b/extras/source/autocorr/lang/pl/DocumentList.xml
@@ -488,6 +488,7 @@
   
   
   
+  
   
   
   
@@ -635,7 +636,7 @@
   
   
   
-  
+  
   
   
   
diff --git a/extras/source/autocorr/lang/pt/DocumentList.xml 
b/extras/source/autocorr/lang/pt/DocumentList.xml
index 2e56d1b..c7de099 100644
--- a/extras/source/autocorr/lang/pt/DocumentList.xml
+++ b/extras/source/autocorr/lang/pt/DocumentList.xml
@@ -356,7 +356,6 @@
 
 
 
-  
   
   
   
@@ -754,6 +753,7 @@
   
   
   
+  
   
   
   
diff --git a/extras/source/autocorr/lang/ro/DocumentList.xml 
b/extras/source/autocorr/lang/ro/DocumentList.xml
index dd99e60..2920610 100644
--- a/extras/source/autocorr/lang/ro/DocumentList.xml
+++ 

[Libreoffice-commits] translations.git: source/da source/es source/lv source/nn source/pl source/sv

2016-05-25 Thread Christian Lohmaier
 source/da/cui/uiconfig/ui.po   |   14 
 source/da/helpcontent2/source/text/scalc/01.po |6 
 source/da/helpcontent2/source/text/shared/optionen.po  |5 
 source/da/helpcontent2/source/text/swriter/guide.po|8 
 source/da/sc/source/ui/src.po  |   19 
 source/da/sc/uiconfig/scalc/ui.po  |   10 
 source/da/sd/uiconfig/simpress/ui.po   |   25 
 source/da/sfx2/source/doc.po   |   31 
 source/da/sfx2/source/view.po  |   12 
 source/da/sfx2/uiconfig/ui.po  |   54 
 source/da/svtools/uiconfig/ui.po   |   15 
 source/da/svx/uiconfig/ui.po   |   16 
 source/da/sw/source/core/unocore.po|   10 
 source/da/sw/source/ui/utlui.po|9 
 source/da/uui/uiconfig/ui.po   |   12 
 source/da/xmlsecurity/source/dialogs.po|   10 
 source/da/xmlsecurity/uiconfig/ui.po   |   25 
 source/es/dbaccess/source/ui/app.po|8 
 source/es/fpicker/uiconfig/ui.po   |   10 
 source/es/framework/source/classes.po  |9 
 source/es/helpcontent2/source/text/sbasic/shared/02.po |6 
 source/es/helpcontent2/source/text/scalc/guide.po  |6 
 source/es/helpcontent2/source/text/shared/00.po|6 
 source/es/helpcontent2/source/text/shared/01.po|9 
 source/es/helpcontent2/source/text/shared/02.po|6 
 source/es/helpcontent2/source/text/shared/04.po|6 
 source/es/helpcontent2/source/text/shared/explorer/database.po |   12 
 source/es/helpcontent2/source/text/shared/guide.po |   20 
 source/es/helpcontent2/source/text/shared/optionen.po  |   10 
 source/es/helpcontent2/source/text/simpress.po |   12 
 source/es/officecfg/registry/data/org/openoffice/Office.po |6 
 source/es/officecfg/registry/data/org/openoffice/Office/UI.po  |   15 
 source/es/reportdesign/source/core/resource.po |6 
 source/es/sc/source/ui/src.po  |   47 
 source/es/sd/source/ui/view.po |   12 
 source/es/sd/uiconfig/sdraw/ui.po  |9 
 source/es/sd/uiconfig/simpress/ui.po   |   21 
 source/es/sfx2/source/doc.po   |7 
 source/es/sfx2/source/view.po  |7 
 source/es/sfx2/uiconfig/ui.po  |   19 
 source/es/svtools/uiconfig/ui.po   |   18 
 source/es/svx/uiconfig/ui.po   |   29 
 source/es/sw/uiconfig/swriter/ui.po|   35 
 source/es/sysui/desktop/share.po   |7 
 source/es/uui/uiconfig/ui.po   |   12 
 source/es/xmlsecurity/uiconfig/ui.po   |9 
 source/lv/cui/uiconfig/ui.po   |9 
 source/lv/sc/source/ui/src.po  |8 
 source/lv/sfx2/source/view.po  |8 
 source/lv/sfx2/uiconfig/ui.po  |   10 
 source/lv/svx/uiconfig/ui.po   |   24 
 source/lv/sw/source/core/unocore.po|8 
 source/lv/sw/source/ui/utlui.po|7 
 source/lv/sw/uiconfig/swriter/ui.po|7 
 source/nn/officecfg/registry/data/org/openoffice/Office/UI.po  |8 
 source/pl/chart2/uiconfig/ui.po|   11 
 source/pl/cui/uiconfig/ui.po   |   22 
 source/pl/dbaccess/source/ui/misc.po   |   10 
 source/pl/extras/source/autocorr/emoji.po  |   10 
 source/pl/filter/source/config/fragments/filters.po|9 
 source/pl/filter/uiconfig/ui.po|   11 
 source/pl/formula/source/core/resource.po  |4 
 source/pl/helpcontent2/source/text/sbasic/shared.po|8 
 source/pl/helpcontent2/source/text/scalc.po|   27 
 source/pl/helpcontent2/source/text/scalc/00.po |   13 
 source/pl/helpcontent2/source/text/scalc/01.po |  684 
--
 source/pl/helpcontent2/source/text/scalc/guide.po  |   20 
 source/pl/helpcontent2/source/text/schart/01.po|   16 
 source/pl/helpcontent2/source/text/sdraw.po|   10 
 

[Libreoffice-commits] core.git: translations

2016-05-25 Thread Christian Lohmaier
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 899177cc1ab8abfbb8d59f7173ef7058832df003
Author: Christian Lohmaier 
Date:   Wed May 25 23:53:35 2016 +0200

Updated core
Project: translations  155bdb645119af4f39f846c9b4e72157df126da1

update translations mainly for pl (merged from 51)

Change-Id: I0f6688dddab0f9a1992d44df2fd91041d981e474

diff --git a/translations b/translations
index b71e619..155bdb6 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit b71e619f4c8288d185bbeb7522cb953c9a540934
+Subproject commit 155bdb645119af4f39f846c9b4e72157df126da1
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 35694] "Page number" automatic field stops counting before last page if offset >0

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35694

Jason C. McDonald  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |indelibleblue...@gmail.com
   |desktop.org |

--- Comment #34 from Jason C. McDonald  ---
After isolating the problem in the code, I'm going to attempt to fix this. I'll
place it up for grabs again in the off-chance that I fail.

-- 
You are receiving this mail because:
You 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: 5 commits - canvas/source editeng/inc filter/source framework/inc sw/inc sw/source vcl/source

2016-05-25 Thread Michael Stahl
 canvas/source/directx/dx_canvasbitmap.cxx|   28 +---
 editeng/inc/pch/precompiled_editeng.hxx  |1 
 filter/source/svg/js2hxx.py  |4 +++
 filter/source/svg/svgexport.cxx  |   10 +++-
 framework/inc/pch/precompiled_fwk.hxx|1 
 sw/inc/pch/precompiled_sw.hxx|1 
 sw/source/core/tox/ToxWhitespaceStripper.cxx |8 +++---
 sw/source/filter/ww8/WW8Sttbf.cxx|   11 +
 sw/source/filter/ww8/WW8Sttbf.hxx|4 +--
 vcl/source/gdi/pdfwriter_impl.hxx|   31 +--
 10 files changed, 37 insertions(+), 62 deletions(-)

New commits:
commit 1029b6cb067eb8cb8c2c00663f4403f9e13fde05
Author: Michael Stahl 
Date:   Wed May 25 23:19:05 2016 +0200

sw: replace boost::shared_array with std::shared_ptr

Change-Id: I99eec60db7f6d586b3b424661e03a7891422ab2e

diff --git a/editeng/inc/pch/precompiled_editeng.hxx 
b/editeng/inc/pch/precompiled_editeng.hxx
index bd2786b..1d1ab23 100644
--- a/editeng/inc/pch/precompiled_editeng.hxx
+++ b/editeng/inc/pch/precompiled_editeng.hxx
@@ -50,7 +50,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/framework/inc/pch/precompiled_fwk.hxx 
b/framework/inc/pch/precompiled_fwk.hxx
index 11b6477..c27cb3d 100644
--- a/framework/inc/pch/precompiled_fwk.hxx
+++ b/framework/inc/pch/precompiled_fwk.hxx
@@ -54,7 +54,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/sw/source/filter/ww8/WW8Sttbf.cxx 
b/sw/source/filter/ww8/WW8Sttbf.cxx
index 8d985cc..d5b24b2 100644
--- a/sw/source/filter/ww8/WW8Sttbf.cxx
+++ b/sw/source/filter/ww8/WW8Sttbf.cxx
@@ -24,6 +24,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 namespace ww8
@@ -35,14 +36,14 @@ namespace ww8
 {
 sal_Size nRemainingSize = rSt.remainingSize();
 nSize = std::min(nRemainingSize, nSize);
-mp_data.reset(new sal_uInt8[nSize]);
-mn_size = rSt.Read(mp_data.get(), nSize);
+m_pData = o3tl::make_shared_array(nSize);
+mn_size = rSt.Read(m_pData.get(), nSize);
 }
 OSL_ENSURE(mn_size == nSize, "short read in WW8Struct::WW8Struct");
 }
 
 WW8Struct::WW8Struct(WW8Struct * pStruct, sal_uInt32 nPos, sal_uInt32 
nSize)
-: mp_data(pStruct->mp_data), mn_offset(pStruct->mn_offset + nPos)
+: m_pData(pStruct->m_pData), mn_offset(pStruct->mn_offset + nPos)
 , mn_size(nSize)
 {
 }
@@ -57,7 +58,7 @@ namespace ww8
 
 if (nOffset < mn_size)
 {
-nResult = mp_data[mn_offset + nOffset];
+nResult = m_pData.get()[mn_offset + nOffset];
 }
 
 return nResult;
@@ -79,7 +80,7 @@ namespace ww8
 nCount = nAvailable;
 #if defined OSL_LITENDIAN
 aResult = OUString(reinterpret_cast(
-mp_data.get() + nStartOff), nCount);
+m_pData.get() + nStartOff), nCount);
 #else
 OUStringBuffer aBuf;
 for (sal_uInt32 i = 0; i < nCount; ++i)
diff --git a/sw/source/filter/ww8/WW8Sttbf.hxx 
b/sw/source/filter/ww8/WW8Sttbf.hxx
index 744e4d9..e6f4cf2 100644
--- a/sw/source/filter/ww8/WW8Sttbf.hxx
+++ b/sw/source/filter/ww8/WW8Sttbf.hxx
@@ -22,7 +22,7 @@
 
 #include 
 #include 
-#include 
+
 #include 
 #include 
 #include 
@@ -34,7 +34,7 @@ namespace ww8
 
 class WW8Struct : public ::sw::ExternalData
 {
-boost::shared_array mp_data;
+std::shared_ptr m_pData;
 sal_uInt32 mn_offset;
 sal_uInt32 mn_size;
 
commit 66e798dda73b66471940ee99298ba4069345630a
Author: Michael Stahl 
Date:   Wed May 25 22:45:58 2016 +0200

vcl: replace prematurely optimized GlyphEmit with a std::vector

Change-Id: Ie0cdc224c1b224ea549c011f1d07beb38261516f

diff --git a/vcl/source/gdi/pdfwriter_impl.hxx 
b/vcl/source/gdi/pdfwriter_impl.hxx
index 4cc5e0bf..c8ebcac 100644
--- a/vcl/source/gdi/pdfwriter_impl.hxx
+++ b/vcl/source/gdi/pdfwriter_impl.hxx
@@ -24,7 +24,6 @@
 #include 
 #include 
 
-#include 
 #include 
 #include 
 #include 
@@ -272,17 +271,12 @@ public:
 class GlyphEmit
 {
 // performance: actually this should probably a vector;
-sal_Ucs m_aBufferedUnicodes[3];
-sal_Int32   m_nUnicodes;
-sal_Int32   m_nMaxUnicodes;
-boost::shared_arraym_pUnicodes;
+std::vectorm_Unicodes;
 sal_uInt8   m_nSubsetGlyphID;
 
 public:
-GlyphEmit() : m_nUnicodes(0), m_nSubsetGlyphID(0)
+GlyphEmit() : m_nSubsetGlyphID(0)
 {
-memset( m_aBufferedUnicodes, 0, sizeof( m_aBufferedUnicodes ) );
-m_nMaxUnicodes = SAL_N_ELEMENTS(m_aBufferedUnicodes);
 }
 ~GlyphEmit()
 {
@@ -293,27 +287,14 @@ 

[Libreoffice-bugs] [Bug 82824] FILEOPEN:anchor position of MS .docx charts lost on import

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82824

Luke  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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-1-0' - 2 commits - loleaflet/dist loleaflet/po

2016-05-25 Thread Andras Timar
 loleaflet/dist/l10n/help-localizations.json   |   15 
 loleaflet/dist/l10n/localizations.json|   14 
 loleaflet/dist/l10n/styles-localizations.json |   14 
 loleaflet/dist/l10n/uno-localizations.json|   14 
 loleaflet/po/help-ca.po   | 1470 +
 loleaflet/po/help-cy.po   | 1465 +
 loleaflet/po/help-de.po   | 1471 +
 loleaflet/po/help-el.po   | 1480 ++
 loleaflet/po/help-es.po   | 1457 +
 loleaflet/po/help-fr.po   | 1473 +
 loleaflet/po/help-hu.po   |  628 +--
 loleaflet/po/help-is.po   | 1464 +
 loleaflet/po/help-nb.po   | 1470 +
 loleaflet/po/help-nn.po   | 1469 +
 loleaflet/po/help-pt_BR.po| 1467 +
 loleaflet/po/help-sv.po   | 1464 +
 loleaflet/po/ui-ca.po |  614 ++
 loleaflet/po/ui-cy.po |  623 ++
 loleaflet/po/ui-de.po |  613 ++
 loleaflet/po/ui-el.po |  626 ++
 loleaflet/po/ui-es.po |  612 ++
 loleaflet/po/ui-fr.po |  592 +++---
 loleaflet/po/ui-hu.po |  583 +++---
 loleaflet/po/ui-is.po |  627 +++
 loleaflet/po/ui-nb.po |  624 ++
 loleaflet/po/ui-nn.po |  624 ++
 loleaflet/po/ui-pt_BR.po  |  612 ++
 loleaflet/po/ui-sv.po |  613 ++
 28 files changed, 23544 insertions(+), 654 deletions(-)

New commits:
commit 7f0cd6fdf71b81ff258bad361b46116baf116ddc
Author: Andras Timar 
Date:   Wed May 25 23:23:02 2016 +0200

loleaflet: added translations (ca,cy,de,el,es,fr,hu,is,nb,nn,pt-br,sv)

(cherry picked from commit 7f55c00df04e4315ca9de726ae4c558ccef4fee4)

diff --git a/loleaflet/dist/l10n/help-localizations.json 
b/loleaflet/dist/l10n/help-localizations.json
index bf49f90..1e3b0a3 100644
--- a/loleaflet/dist/l10n/help-localizations.json
+++ b/loleaflet/dist/l10n/help-localizations.json
@@ -1,4 +1,17 @@
 {
+"ca": "/loleaflet/dist/l10n/help-ca.json",
+"cy": "/loleaflet/dist/l10n/help-cy.json",
+"de": "/loleaflet/dist/l10n/help-de.json",
+"el": "/loleaflet/dist/l10n/help-el.json",
 "en": false,
-"hu": "/loleaflet/dist/l10n/help-hu.json"
+"es": "/loleaflet/dist/l10n/help-es.json",
+"fr": "/loleaflet/dist/l10n/help-fr.json",
+"fr": "/loleaflet/dist/l10n/help-fr.json",
+"hu": "/loleaflet/dist/l10n/help-hu.json",
+"is": "/loleaflet/dist/l10n/help-is.json",
+"nb": "/loleaflet/dist/l10n/help-nb.json",
+"nn": "/loleaflet/dist/l10n/help-nn.json",
+"pt-br": "/loleaflet/dist/l10n/help-pt_BR.json",
+"sl": "/loleaflet/dist/l10n/help-sl.json",
+"sv": "/loleaflet/dist/l10n/help-sv.json"
 }
diff --git a/loleaflet/dist/l10n/localizations.json 
b/loleaflet/dist/l10n/localizations.json
index 80740f4..4d71b2b 100644
--- a/loleaflet/dist/l10n/localizations.json
+++ b/loleaflet/dist/l10n/localizations.json
@@ -1,5 +1,17 @@
 {
+"ca": "/loleaflet/dist/l10n/ui-ca.json",
+"cy": "/loleaflet/dist/l10n/ui-cy.json",
+"de": "/loleaflet/dist/l10n/ui-de.json",
+"el": "/loleaflet/dist/l10n/ui-el.json",
 "en": false,
+"es": "/loleaflet/dist/l10n/ui-es.json",
 "fr": "/loleaflet/dist/l10n/ui-fr.json",
-"hu": "/loleaflet/dist/l10n/ui-hu.json"
+"fr": "/loleaflet/dist/l10n/ui-fr.json",
+"hu": "/loleaflet/dist/l10n/ui-hu.json",
+"is": "/loleaflet/dist/l10n/ui-is.json",
+"nb": "/loleaflet/dist/l10n/ui-nb.json",
+"nn": "/loleaflet/dist/l10n/ui-nn.json",
+"pt-br": "/loleaflet/dist/l10n/ui-pt_BR.json",
+"sl": "/loleaflet/dist/l10n/ui-sl.json",
+"sv": "/loleaflet/dist/l10n/ui-sv.json"
 }
diff --git a/loleaflet/po/help-ca.po b/loleaflet/po/help-ca.po
new file mode 100644
index 000..a2cff40
--- /dev/null
+++ b/loleaflet/po/help-ca.po
@@ -0,0 +1,1470 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-05-25 20:19+\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: ca\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.14.0-rc1\n"
+"X-Pootle-Path: /ca/libo_online/loleaflet-help-ca.po\n"
+"X-Pootle-Revision: 435376\n"
+
+#: 

[Libreoffice-commits] online.git: 2 commits - loleaflet/dist loleaflet/po

2016-05-25 Thread Andras Timar
 loleaflet/dist/l10n/help-localizations.json   |   15 
 loleaflet/dist/l10n/localizations.json|   14 
 loleaflet/dist/l10n/styles-localizations.json |   14 
 loleaflet/dist/l10n/uno-localizations.json|   14 
 loleaflet/po/help-ca.po   | 1470 +
 loleaflet/po/help-cy.po   | 1465 +
 loleaflet/po/help-de.po   | 1471 +
 loleaflet/po/help-el.po   | 1480 ++
 loleaflet/po/help-es.po   | 1457 +
 loleaflet/po/help-fr.po   | 1473 +
 loleaflet/po/help-hu.po   |  628 +--
 loleaflet/po/help-is.po   | 1464 +
 loleaflet/po/help-nb.po   | 1470 +
 loleaflet/po/help-nn.po   | 1469 +
 loleaflet/po/help-pt_BR.po| 1467 +
 loleaflet/po/help-sv.po   | 1464 +
 loleaflet/po/ui-ca.po |  614 ++
 loleaflet/po/ui-cy.po |  623 ++
 loleaflet/po/ui-de.po |  613 ++
 loleaflet/po/ui-el.po |  626 ++
 loleaflet/po/ui-es.po |  612 ++
 loleaflet/po/ui-fr.po |  592 +++---
 loleaflet/po/ui-hu.po |  583 +++---
 loleaflet/po/ui-is.po |  627 +++
 loleaflet/po/ui-nb.po |  624 ++
 loleaflet/po/ui-nn.po |  624 ++
 loleaflet/po/ui-pt_BR.po  |  612 ++
 loleaflet/po/ui-sv.po |  613 ++
 28 files changed, 23544 insertions(+), 654 deletions(-)

New commits:
commit 7f55c00df04e4315ca9de726ae4c558ccef4fee4
Author: Andras Timar 
Date:   Wed May 25 23:23:02 2016 +0200

loleaflet: added translations (ca,cy,de,el,es,fr,hu,is,nb,nn,pt-br,sv)

diff --git a/loleaflet/dist/l10n/help-localizations.json 
b/loleaflet/dist/l10n/help-localizations.json
index bf49f90..1e3b0a3 100644
--- a/loleaflet/dist/l10n/help-localizations.json
+++ b/loleaflet/dist/l10n/help-localizations.json
@@ -1,4 +1,17 @@
 {
+"ca": "/loleaflet/dist/l10n/help-ca.json",
+"cy": "/loleaflet/dist/l10n/help-cy.json",
+"de": "/loleaflet/dist/l10n/help-de.json",
+"el": "/loleaflet/dist/l10n/help-el.json",
 "en": false,
-"hu": "/loleaflet/dist/l10n/help-hu.json"
+"es": "/loleaflet/dist/l10n/help-es.json",
+"fr": "/loleaflet/dist/l10n/help-fr.json",
+"fr": "/loleaflet/dist/l10n/help-fr.json",
+"hu": "/loleaflet/dist/l10n/help-hu.json",
+"is": "/loleaflet/dist/l10n/help-is.json",
+"nb": "/loleaflet/dist/l10n/help-nb.json",
+"nn": "/loleaflet/dist/l10n/help-nn.json",
+"pt-br": "/loleaflet/dist/l10n/help-pt_BR.json",
+"sl": "/loleaflet/dist/l10n/help-sl.json",
+"sv": "/loleaflet/dist/l10n/help-sv.json"
 }
diff --git a/loleaflet/dist/l10n/localizations.json 
b/loleaflet/dist/l10n/localizations.json
index 80740f4..4d71b2b 100644
--- a/loleaflet/dist/l10n/localizations.json
+++ b/loleaflet/dist/l10n/localizations.json
@@ -1,5 +1,17 @@
 {
+"ca": "/loleaflet/dist/l10n/ui-ca.json",
+"cy": "/loleaflet/dist/l10n/ui-cy.json",
+"de": "/loleaflet/dist/l10n/ui-de.json",
+"el": "/loleaflet/dist/l10n/ui-el.json",
 "en": false,
+"es": "/loleaflet/dist/l10n/ui-es.json",
 "fr": "/loleaflet/dist/l10n/ui-fr.json",
-"hu": "/loleaflet/dist/l10n/ui-hu.json"
+"fr": "/loleaflet/dist/l10n/ui-fr.json",
+"hu": "/loleaflet/dist/l10n/ui-hu.json",
+"is": "/loleaflet/dist/l10n/ui-is.json",
+"nb": "/loleaflet/dist/l10n/ui-nb.json",
+"nn": "/loleaflet/dist/l10n/ui-nn.json",
+"pt-br": "/loleaflet/dist/l10n/ui-pt_BR.json",
+"sl": "/loleaflet/dist/l10n/ui-sl.json",
+"sv": "/loleaflet/dist/l10n/ui-sv.json"
 }
diff --git a/loleaflet/po/help-ca.po b/loleaflet/po/help-ca.po
new file mode 100644
index 000..a2cff40
--- /dev/null
+++ b/loleaflet/po/help-ca.po
@@ -0,0 +1,1470 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-05-25 20:19+\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: ca\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.14.0-rc1\n"
+"X-Pootle-Path: /ca/libo_online/loleaflet-help-ca.po\n"
+"X-Pootle-Revision: 435376\n"
+
+#: dist%2Floleaflet-help.html+html.head.title%3A5
+msgid "LOLeaflet Help"
+msgstr "Ajuda del LOLeaflet"
+
+#: 

[Libreoffice-bugs] [Bug 81518] FILEOPEN: Table margins and border not imported correctly

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81518

Luke  changed:

   What|Removed |Added

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

--- Comment #6 from Luke  ---
The 3D bar chart is positioned incorrectly because of Bug 82824.

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


[Libreoffice-bugs] [Bug 81518] FILEOPEN: Table margins and border not imported correctly

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81518

Luke  changed:

   What|Removed |Added

   Keywords|bibisectRequest, regression |

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


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

2016-05-25 Thread Eike Rathke
 sc/source/ui/docshell/externalrefmgr.cxx |   16 ++--
 1 file changed, 2 insertions(+), 14 deletions(-)

New commits:
commit 386b284241a16d96eaf792e2385c41f57ce3d870
Author: Eike Rathke 
Date:   Wed May 25 23:16:48 2016 +0200

remove now moot comment, tdf#86282 follow-up

Change-Id: I7e720de93a5f47ca6a81addbb75c113dc2fe53f0

diff --git a/sc/source/ui/docshell/externalrefmgr.cxx 
b/sc/source/ui/docshell/externalrefmgr.cxx
index 3db616cc..f703b67 100644
--- a/sc/source/ui/docshell/externalrefmgr.cxx
+++ b/sc/source/ui/docshell/externalrefmgr.cxx
@@ -987,17 +987,6 @@ void ScExternalRefCache::initializeDoc(sal_uInt16 nFileId, 
const vectormaSingleTableNameAlias = rBaseName;
 else if (ScGlobal::GetpTransliteration()->isEqual( 
pDoc->maTableNames[0].maRealName, rBaseName))
 pDoc->maSingleTableNameAlias = aSheetName;
-
-/* TODO: future versions could swap the table name with the base name,
- * so the base name gets stored instead of Sheet1, which can be
- * localized and then will not match in another localized UI once the
- * link was updated/refreshed. This never worked before
- * a4f09f8c2ef3ae82b86d1b4f0c6c90d1a61614fa accidentally "fixed" it for
- * fdo#73552 only for CSV files but broke older existing documents.
- * Either that, or always store 'Sheet1' or something?
- * However, do that only for imported files that do not store sheet
- * names, e.g. CSV, HTML, ..., but not for spreadsheet documents. */
-
 }
 
 pDoc->mbInitFromSource = true;
@@ -1011,10 +1000,9 @@ ScExternalRefCache::TableNameIndexMap::const_iterator 
ScExternalRefCache::DocIte
 if (itrTabName != maTableNameIndex.end())
 return itrTabName;
 
-// For some time for external references to .csv files the base name was
+// Since some time for external references to CSV files the base name is
 // used as sheet name instead of Sheet1, check if we can resolve that.
-// Also helps users that got accustomed to give the base name instead of
-// Sheet1.
+// Also helps users that got accustomed to one or the other way.
 if (maSingleTableNameAlias.isEmpty() || maTableNameIndex.size() != 1)
 return itrTabName;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-05-25 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/fods/dvarp.fods | 1663 ++
 1 file changed, 1663 insertions(+)

New commits:
commit c9fcddceeb132f238a22448e8ab2d3a896174d4f
Author: Zdeněk Crhonek 
Date:   Wed May 25 19:30:16 2016 +0200

add DVARP test case

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

diff --git a/sc/qa/unit/data/functions/fods/dvarp.fods 
b/sc/qa/unit/data/functions/fods/dvarp.fods
new file mode 100644
index 000..1c5cf14
--- /dev/null
+++ b/sc/qa/unit/data/functions/fods/dvarp.fods
@@ -0,0 +1,1663 @@
+
+
+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-25T19:29:29.074996401P0D1LibreOfficeDev/5.2.0.0.alpha1$Linux_X86_64
 
LibreOffice_project/fa9416906e615f5f19ad8524176d2ed693662769
+ 
+  
+   0
+   0
+   31628
+   27643
+   
+
+ view1
+ 
+  
+   2
+   8
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   100
+   60
+   true
+  
+  
+   3
+   21
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   100
+   60
+   true
+  
+ 
+ Sheet1
+ 1241
+ 0
+ 100
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ false
+ false
+ false
+ 1270
+ 1270
+ 1
+ 1
+ true
+
+   
+  
+  
+   7
+   false
+   false
+   true
+   true
+   false
+   false
+   false
+   1270
+   1270
+   true
+   true
+   true
+   true
+   true
+   false
+   12632256
+   false
+   Lexmark-E352dn
+   
+
+ en
+ US
+ 
+ 
+ 
+
+   
+   true
+   true
+   3
+   1
+   true
+   1
+   true
+   jQH+/0xleG1hcmstRTM1MmRuQ1VQUzpMZXhtYXJrLUUzNTJkbgAWAAMAswAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1FMzUyZG4Kb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhClBhZ2VTaXplOkE0AAASAENPTVBBVF9EVVBMRVhfTU9ERQoARFVQTEVYX09GRg==
+   false
+   0
+  
+ 
+ 
+  
+   http://openoffice.org/2004/office; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
+
+   
+  
+ 
+ 
+  
+  
+  
+  
+  
+  
+  
+ 
+ 
+  
+   
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   
+   -
+   
+
+   Kč
+   
+  
+  
+   £
+   
+  
+  
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  
+  
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  
+  
+   
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  
+  
+   
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  
+  
+   
+   -
+   £
+   
+   
+  
+  
+   
+
+  
+  
+   (
+   
+   )
+   
+  
+  
+   
+
+  
+  
+   (
+   
+   )
+   
+  
+  
+   £
+
+   
+  
+  
+   -
+   £
+
+   
+   
+  
+  
+   £
+
+   
+  
+  
+   -
+   £
+
+   
+   
+  
+  

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

2016-05-25 Thread Eike Rathke
 sc/source/ui/docshell/docsh.cxx |   22 +-
 1 file changed, 13 insertions(+), 9 deletions(-)

New commits:
commit d9e7a54809c88c4ac166630c11038188c8f50a6f
Author: Eike Rathke 
Date:   Wed May 25 22:41:19 2016 +0200

tdf#86282 switch to base name sheet name again for external references CSV

... now that we can handle both, a base name and Sheet1 name.

For the following reasons:

* Since 4.3 we write and expect the base name as sheet name for CSV.
  While 43030487c45f49bccdfad987c60d9483b938ebac switched that back to
  Sheet1 or its equivalent to be able to load older documents, a mixed
  environment of earlier and later versions gets confused by this.

* The name Sheet1 can be localized and even customized by the user and
  thus fails to update/refresh in a different localized or customized
  environment. This also was already the case for all versions prior to
  4.3 but apparently wasn't recognized or brought in connection with
  some possible failures when updating externally referenced CSV files.

* Deriving the sheet name to be stored from the base name prevents all
  problems related to localized or customized environments, and keeps
  interoperability with all versions from 4.3 on.

Change-Id: I8d71b3ad6370747115ea419a21094b649326642c

diff --git a/sc/source/ui/docshell/docsh.cxx b/sc/source/ui/docshell/docsh.cxx
index 6559d9f..163024e 100644
--- a/sc/source/ui/docshell/docsh.cxx
+++ b/sc/source/ui/docshell/docsh.cxx
@@ -1199,15 +1199,19 @@ bool ScDocShell::ConvertFrom( SfxMedium& rMedium )
 aDocument.StartAllListeners();
 sc::SetFormulaDirtyContext aCxt;
 aDocument.SetAllFormulasDirty(aCxt);
-if (GetCreateMode() != SfxObjectCreateMode::INTERNAL)
-{
-// ScDocShell was not created with
-// SfxModelFlags::EXTERNAL_LINK for which we do not
-// want Sheet1 renamed in order to get predictable
-// sheet names for external references.
-INetURLObject 
aURLObjForDefaultNameSheetName(rMedium.GetName());
-
aDocument.RenameTab(0,aURLObjForDefaultNameSheetName.GetBase());
-}
+
+// The same resulting name has to be handled in
+// ScExternalRefCache::initializeDoc() and related, hence
+// pass 'true' for RenameTab()'s bExternalDocument for a
+// composed name so ValidTabName() will not be checked,
+// which could veto the rename in case it contained
+// characters that Excel does not handle. If we wanted to
+// change that then it needed to be handled in all
+// corresponding places of the external references
+// manager/cache. Likely then we'd also need a method to
+// compose a name excluding such characters.
+aDocument.RenameTab( 0, INetURLObject( 
rMedium.GetName()).GetBase(), true, true);
+
 bOverflowRow = aImpEx.IsOverflowRow();
 bOverflowCol = aImpEx.IsOverflowCol();
 bOverflowCell = aImpEx.IsOverflowCell();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 99928] VIEWING Zooming during Print Preview on Writer should be centred on present view point

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99928

raal  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected
 CC||noel.po...@gmail.com

--- Comment #3 from raal  ---
 git bisect log
# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
# good: [65fd30f5cb4cdd37995a33420ed8273c0a29bf00]
source-hash-d6cde02dbce8c28c6af836e2dc1120f8a6ef9932
git bisect start 'latest' 'oldest'
# bad: [e02439a3d6297a1f5334fa558ddec5ef4212c574]
source-hash-6b8393474974d2af7a2cb3c47b3d5c081b550bdb
git bisect bad e02439a3d6297a1f5334fa558ddec5ef4212c574
# bad: [8f4aeaad2f65d656328a451154142bb82efa4327]
source-hash-1885266f274575327cdeee9852945a3e91f32f15
git bisect bad 8f4aeaad2f65d656328a451154142bb82efa4327
# good: [369369915d3582924b3d01c9b01167268ed38f3b]
source-hash-45295f3cdceb4c289553791071b5d7f4962d2ec4
git bisect good 369369915d3582924b3d01c9b01167268ed38f3b
# bad: [6fce03a944bf50e90cd31e2d559fe8705ccc993e]
source-hash-47e4a33a6405eb1b5186027f55bd9cb99b0c1fe7
git bisect bad 6fce03a944bf50e90cd31e2d559fe8705ccc993e
# bad: [8a39227e344637eb7154a10ac825d211e64d584c]
source-hash-f5080ebb7022c9f5d7d7fdca4fe9d19f9bb8cabf
git bisect bad 8a39227e344637eb7154a10ac825d211e64d584c
# bad: [e8bc60acad752e284db73fc4d8ad383ac055361c]
source-hash-7e6e16ba6de2d3ef2b130d1ad5ffeabfdb37918e
git bisect bad e8bc60acad752e284db73fc4d8ad383ac055361c
# bad: [19b8950109d519c0dba847f94d5d166044c1db15]
source-hash-ff9cca69744b54ca84d98476a9a969d1aa0ff2d3
git bisect bad 19b8950109d519c0dba847f94d5d166044c1db15
# good: [f23b0ac1f569b0e043ebc0d0fe08ec76ea23d656]
source-hash-552ba413bc95b1a14638558d9436141825100c52
git bisect good f23b0ac1f569b0e043ebc0d0fe08ec76ea23d656
# bad: [f3986117cf91f1976749922e435915354389c4f1]
source-hash-eab7e131ecebe4cdefcdcb1ad176bbdce83cb467
git bisect bad f3986117cf91f1976749922e435915354389c4f1
# good: [cef0750df9186e2523a1a2d1ddb4c1ddbb85c19d]
source-hash-18c661f715a0b6850d30b374e5556dc14a377d2b
git bisect good cef0750df9186e2523a1a2d1ddb4c1ddbb85c19d
# first bad commit: [f3986117cf91f1976749922e435915354389c4f1]
source-hash-eab7e131ecebe4cdefcdcb1ad176bbdce83cb467

http://cgit.freedesktop.org/libreoffice/core/log/?qt=range=18c661f715a0b6850d30b374e5556dc14a377d2b..eab7e131ecebe4cdefcdcb1ad176bbdce83cb467

Commits with "preview" in name. Noel, can this commits be relevant? Thanks
2012-04-03  Hori/Vert scrollbars in calc preview should be shown only when
necessaryNoel Power  commit 
f194d18dfeceff104f9c5e500ea4dd94fa1b5b06 
2012-04-03  Revert "Hori scroll fix in Writer and Calc Print Preview" & add
new patch   Noel Power commit  
d7b06ba7ec2c988e80c8ef14e2d9bfc2c29e2d24

-- 
You are receiving this mail because:
You 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-05-25 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/fods/dvar.fods | 1686 +++
 1 file changed, 1686 insertions(+)

New commits:
commit 0b37b431329cfe32ad6a824ff9e99dd5d015456a
Author: Zdeněk Crhonek 
Date:   Wed May 25 18:30:40 2016 +0200

add DVAR test case

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

diff --git a/sc/qa/unit/data/functions/fods/dvar.fods 
b/sc/qa/unit/data/functions/fods/dvar.fods
new file mode 100644
index 000..045e267
--- /dev/null
+++ b/sc/qa/unit/data/functions/fods/dvar.fods
@@ -0,0 +1,1686 @@
+
+
+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-25T18:29:18.162371849P0D1LibreOfficeDev/5.2.0.0.alpha1$Linux_X86_64
 
LibreOffice_project/369ca1d72bc877c6ccce991c92ae1a246956ca57
+ 
+  
+   0
+   0
+   31628
+   27643
+   
+
+ view1
+ 
+  
+   2
+   11
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   100
+   60
+   true
+  
+  
+   1
+   2
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   100
+   60
+   true
+  
+ 
+ Sheet1
+ 1241
+ 0
+ 100
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ false
+ false
+ false
+ 1270
+ 1270
+ 1
+ 1
+ true
+
+   
+  
+  
+   7
+   false
+   false
+   true
+   true
+   false
+   false
+   false
+   1270
+   1270
+   true
+   true
+   true
+   true
+   true
+   false
+   12632256
+   false
+   Lexmark-E352dn
+   
+
+ en
+ US
+ 
+ 
+ 
+
+   
+   true
+   true
+   3
+   1
+   true
+   1
+   true
+   jQH+/0xleG1hcmstRTM1MmRuQ1VQUzpMZXhtYXJrLUUzNTJkbgAWAAMAswAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1FMzUyZG4Kb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhClBhZ2VTaXplOkE0AAASAENPTVBBVF9EVVBMRVhfTU9ERQoARFVQTEVYX09GRg==
+   false
+   0
+  
+ 
+ 
+  
+   http://openoffice.org/2004/office; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
+
+   
+  
+ 
+ 
+  
+  
+  
+  
+  
+  
+  
+  
+ 
+ 
+  
+   
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   
+   -
+   
+
+   Kč
+   
+  
+  
+   £
+   
+  
+  
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  
+  
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  
+  
+   
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  
+  
+   
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  
+  
+   
+   -
+   £
+   
+   
+  
+  
+   
+
+  
+  
+   (
+   
+   )
+   
+  
+  
+   
+
+  
+  
+   (
+   
+   )
+   
+  
+  
+   £
+
+   
+  
+  
+   -
+   £
+
+   
+   
+  
+  
+   £
+
+   
+  
+  
+   -
+   £
+
+   
+   
+  
+  

[Libreoffice-commits] core.git: include/vcl svtools/inc svtools/source vcl/inc vcl/quartz vcl/source vcl/unx vcl/win

2016-05-25 Thread Michael Stahl
 include/vcl/fontcapabilities.hxx   |7 -
 svtools/inc/pch/precompiled_svt.hxx|1 
 svtools/source/misc/sampletext.cxx |  114 -
 vcl/inc/pch/precompiled_vcl.hxx|1 
 vcl/inc/sft.hxx|4 
 vcl/quartz/salgdi.cxx  |8 -
 vcl/source/fontsubset/sft.cxx  |   27 -
 vcl/unx/generic/glyphs/freetype_glyphcache.cxx |4 
 vcl/win/gdi/salfont.cxx|6 -
 9 files changed, 107 insertions(+), 65 deletions(-)

New commits:
commit 377f97cc92fda4c6281dc418d20b9de8479c6996
Author: Michael Stahl 
Date:   Wed May 25 16:36:57 2016 +0200

vcl: replace boost::dynamic_bitset with boost::optional

The getTTCoverage either leaves the bitset empty or inits it with 128 bits,
so it's not particularly dynamic.

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

diff --git a/include/vcl/fontcapabilities.hxx b/include/vcl/fontcapabilities.hxx
index 5734260..c4b58c0 100644
--- a/include/vcl/fontcapabilities.hxx
+++ b/include/vcl/fontcapabilities.hxx
@@ -10,8 +10,9 @@
 #ifndef INCLUDED_VCL_FONTCAPABILITIES_HXX
 #define INCLUDED_VCL_FONTCAPABILITIES_HXX
 
-#include 
+#include 
 #include 
+#include 
 
 #include 
 
@@ -195,8 +196,8 @@ namespace vcl
 
 struct FontCapabilities
 {
-boost::dynamic_bitset maUnicodeRange;
-boost::dynamic_bitset maCodePageRange;
+boost::optional 
oUnicodeRange;
+boost::optional 
oCodePageRange;
 std::vector< sal_uInt32 > maGSUBScriptTags;
 };
 }
diff --git a/svtools/inc/pch/precompiled_svt.hxx 
b/svtools/inc/pch/precompiled_svt.hxx
index 275fab4..f4d7819 100644
--- a/svtools/inc/pch/precompiled_svt.hxx
+++ b/svtools/inc/pch/precompiled_svt.hxx
@@ -48,7 +48,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/svtools/source/misc/sampletext.cxx 
b/svtools/source/misc/sampletext.cxx
index 5b964cb..59bee40 100644
--- a/svtools/source/misc/sampletext.cxx
+++ b/svtools/source/misc/sampletext.cxx
@@ -741,8 +741,14 @@ OUString makeRepresentativeTextForLanguage(LanguageType 
eLang)
 namespace
 {
 #if OSL_DEBUG_LEVEL > 0
-void lcl_dump_unicode_coverage(const boost::dynamic_bitset 
)
+void lcl_dump_unicode_coverage(const 
boost::optional )
 {
+if (!roIn)
+{
+SAL_INFO("svtools", "");
+return;
+}
+auto & rIn(*roIn);
 if (rIn.none())
 {
 SAL_INFO("svtools", "");
@@ -1006,8 +1012,14 @@ namespace
 SAL_INFO("svtools", "RESERVED5");
 }
 
-void lcl_dump_codepage_coverage(const boost::dynamic_bitset 
)
+void lcl_dump_codepage_coverage(const 
boost::optional )
 {
+if (!roIn)
+{
+SAL_INFO("svtools", "");
+return;
+}
+auto & rIn(*roIn);
 if (rIn.none())
 {
 SAL_INFO("svtools", "");
@@ -1078,9 +1090,9 @@ namespace
 }
 #endif
 
-boost::dynamic_bitset getMaskByScriptType(sal_Int16 
nScriptType)
+std::bitset 
getMaskByScriptType(sal_Int16 nScriptType)
 {
-boost::dynamic_bitset 
aMask(vcl::UnicodeCoverage::MAX_UC_ENUM);
+std::bitset aMask;
 aMask.set();
 
 for (size_t i = 0; i < vcl::UnicodeCoverage::MAX_UC_ENUM; ++i)
@@ -1095,37 +1107,37 @@ namespace
 }
 
 //false for all bits considered "Latin" by LibreOffice
-boost::dynamic_bitset getLatinMask()
+std::bitset getLatinMask()
 {
-static boost::dynamic_bitset 
aMask(getMaskByScriptType(css::i18n::ScriptType::LATIN));
-return aMask;
+static std::bitset 
s_Mask(getMaskByScriptType(css::i18n::ScriptType::LATIN));
+return s_Mask;
 }
 
 //false for all bits considered "Asian" by LibreOffice
-boost::dynamic_bitset getCJKMask()
+std::bitset getCJKMask()
 {
-static boost::dynamic_bitset 
aMask(getMaskByScriptType(css::i18n::ScriptType::ASIAN));
-return aMask;
+static std::bitset 
s_Mask(getMaskByScriptType(css::i18n::ScriptType::ASIAN));
+return s_Mask;
 }
 
 //false for all bits considered "Complex" by LibreOffice
-boost::dynamic_bitset getCTLMask()
+std::bitset getCTLMask()
 {
-static boost::dynamic_bitset 
aMask(getMaskByScriptType(css::i18n::ScriptType::COMPLEX));
-return aMask;
+static std::bitset 
s_Mask(getMaskByScriptType(css::i18n::ScriptType::COMPLEX));
+return s_Mask;
 }
 
 //false for all bits considered "WEAK" by LibreOffice
-boost::dynamic_bitset getWeakMask()
+std::bitset getWeakMask()
 {
-static boost::dynamic_bitset 

[Libreoffice-bugs] [Bug 99994] Crash on insert SVG file svgio::svgreader::SvgCharacterNode:: createSimpleTextPrimitive

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=4

raal  changed:

   What|Removed |Added

   Keywords||bibisected, bisected
 CC||armin.le.gr...@me.com,
   ||r...@post.cz

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

1014698a0bea59d60f4e092c7dbd35a2e1473371 is the first bad commit
commit 1014698a0bea59d60f4e092c7dbd35a2e1473371
Author: Matthew Francis 
Date:   Sun Mar 15 03:52:44 2015 +0800

source-hash-e17a730c0076b10678c860ae3285bc8a98282415

commit e17a730c0076b10678c860ae3285bc8a98282415
Author: Armin Le Grand 
AuthorDate: Thu Oct 9 15:03:55 2014 +
Commit: Caolán McNamara 
CommitDate: Thu Oct 9 17:30:13 2014 +0100

Resolves: #i125329# Take care of Css selector '*'

(cherry picked from commit f73813d9e0f13e3bdf735f8626dbf540701a1900)

Conflicts:
svgio/source/svgreader/svgnode.cxx

Change-Id: Ifc5df8bed47d69709ef590eced19635b6b9580d0

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


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

2016-05-25 Thread Caolán McNamara
 sw/qa/core/data/odt/pass/tdf97879.odt |binary
 xmloff/source/text/txtimp.cxx |8 +++-
 2 files changed, 7 insertions(+), 1 deletion(-)

New commits:
commit e954697a9d39e40473fb9f59a791ccb7129e763c
Author: Caolán McNamara 
Date:   Wed May 25 20:47:10 2016 +0100

Resolves: tdf#97879 loop in style hierarchy on odt loop

Change-Id: I0098c434b89b6a57e8b888a4d4f643e4d0865d29

diff --git a/sw/qa/core/data/odt/pass/tdf97879.odt 
b/sw/qa/core/data/odt/pass/tdf97879.odt
new file mode 100644
index 000..b345267
Binary files /dev/null and b/sw/qa/core/data/odt/pass/tdf97879.odt differ
diff --git a/xmloff/source/text/txtimp.cxx b/xmloff/source/text/txtimp.cxx
index 3da0e8b..08dafaf 100644
--- a/xmloff/source/text/txtimp.cxx
+++ b/xmloff/source/text/txtimp.cxx
@@ -1380,7 +1380,13 @@ static bool lcl_HasListStyle( const OUString& sStyleName,
 else
 {
 // search list style at parent
-xStyle.set( xPropState, UNO_QUERY );
+Reference xParentStyle(xPropState, UNO_QUERY);
+if (xStyle == xParentStyle)
+{
+// error case
+return true;
+}
+xStyle = xParentStyle;
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100043] import filter MS Works

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100043

--- Comment #7 from V Stuart Foote  ---
*** Bug 100044 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 100044] Formatting

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100044

V Stuart Foote  changed:

   What|Removed |Added

 Resolution|INVALID |DUPLICATE

--- Comment #4 from V Stuart Foote  ---


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

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


[Libreoffice-bugs] [Bug 100043] import filter MS Works

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100043

V Stuart Foote  changed:

   What|Removed |Added

Summary|FORMATTING  |import filter MS Works

--- Comment #6 from V Stuart Foote  ---
(In reply to Bernard Robins from comment #0)
Here is the related Works database import issue from bug 10044...

>Importing a Microsoft Works 6 database into LO spreadsheet, 
>some of the text from MW6 is not being fully imported, this 
>seems to happen if the field being imported contains more 
>than around 200 characters. After import the "word wrap" is
>not working correctly, displaying some boxes correctly and 
>others with a small red arrow pointing to the right (I can't 
>find any reference to what this means).

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


[Libreoffice-bugs] [Bug 100044] Formatting

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100044

V Stuart Foote  changed:

   What|Removed |Added

  Component|Calc|filters and storage

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


[Libreoffice-bugs] [Bug 97879] CRASH: Writer hangs with 100% cpu when FILEOPEN particular odt with particular styles.xml

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97879

Caolán McNamara  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 100043] FORMATTING

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100043

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
  Component|Calc|filters and storage

--- Comment #5 from V Stuart Foote  ---
We'd need a sample of the original Works 6 database.

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


[Libreoffice-bugs] [Bug 100044] Formatting

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100044

V Stuart Foote  changed:

   What|Removed |Added

 Resolution|NOTABUG |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 100044] Formatting

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100044

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |NOTABUG

--- Comment #3 from V Stuart Foote  ---
duping back to bug 10043 which has test file attachment...

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


[Libreoffice-bugs] [Bug 98949] Filesystem locks not released

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98949

--- Comment #3 from Christophe Lyon  ---
s/change/chance  :-)

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


[Libreoffice-bugs] [Bug 98949] Filesystem locks not released

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98949

--- Comment #2 from Christophe Lyon  ---
Any change someone is going to look at this problem?

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


[Libreoffice-bugs] [Bug 35694] "Page number" automatic field stops counting before last page if offset >0

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35694

--- Comment #33 from Jason C. McDonald  ---
I can confirm this bug on LibreOffice 5.1.3.2. This may be "intended behavior",
although a slight change to the feature would make it much more usable. As it
stands, I think we can consider it a "misfeature".

CURRENT BEHAVIOR: After applying offset, any page that would have an offset
number > actual number of pages has an empty field.

EXPECTED BEHAVIOR: When most people apply an offset, they expect for the
counting to begin at the specified number and continue *ad infinitum*. Thus, on
a three-page document, with a page number autofield in the footer with an
offset of 20 would number the pages "20, 21, 22".

USE CASE: As an author, I frequently need to isolate a portion of a document
for others to review, but want to maintain the page numbers so I know where in
the larger document the change should be made. 

This is trivial on Microsoft Word, but decided non-trivial on LibreOffice.
Fixing this mis-feature would make the process considerably more obvious and
easier to use.

FIX: Don't stop incrementing on offset page numbers for anything.

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


[Libreoffice-bugs] [Bug 99300] Dragon Naturally Speaking and Ctrl+Alt

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99300

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 83153] Implement UAA framework to support speech recognition and dictation support

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83153

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 83153] Implement UAA framework to support speech recognition and dictation support

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83153

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 69039] ACCESSIBILITY: Support Windows Speech Recognition

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69039

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 99933] add a function to save the current document with an increasing number in the document name.

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99933

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #1 from Buovjaga  ---
See this solution for a timestamped copy:
https://forum.openoffice.org/en/forum/viewtopic.php?f=21=23531
I guess you could customize it to your liking.

If you like it, we could close this report, right? Macros exist so there
wouldn't be an infinite amount of feature requests..

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


[Libreoffice-bugs] [Bug 83153] Implement UAA framework to support speech recognition and dictation support

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83153

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 100056] Dragon NaturallySpeaking compatibility

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100056

V Stuart Foote  changed:

   What|Removed |Added

  Component|Extensions  |LibreOffice
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=83
   ||153

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


[Libreoffice-bugs] [Bug 99300] Dragon Naturally Speaking and Ctrl+Alt

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99300

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTOURBUG

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


[Libreoffice-bugs] [Bug 93117] LibreOffice freezes when trying to access/open/read/ write documents on NFS mounts

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93117

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
Version|5.0.6.2 release |4.3.3.2 release
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=94
   ||152
 Ever confirmed|0   |1
   Severity|normal  |major

--- Comment #2 from Buovjaga  ---
NEW per comment 1

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


[Libreoffice-bugs] [Bug 94152] Reading / writing files to NFS volumes

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94152

Buovjaga  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 100056] Dragon NaturallySpeaking compatibility

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100056

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |NOTOURBUG

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


[Libreoffice-bugs] [Bug 100058] New: LibreOffice crashes when deleting multiple cells

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100058

Bug ID: 100058
   Summary: LibreOffice crashes when deleting multiple cells
   Product: LibreOffice
   Version: 5.1.3.2 rc
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sandrabor...@gmail.com

Created attachment 125287
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125287=edit
Example of deleting multiple cells

This is a new bug report like asked from "Bug 96342"

I have LibreOffice version 5.1.3.2 for Mac, OSX El capital 10.11.4 (macbook air
mid 2013)

I dont know if this is the earliest version affected, just noticed this after
downloading 5.1.3.2

Every time I select multiple cells and press delete to clear them all, libre
office crashes. Also happens when I select multiple cells and try to move them
all.
It depends on how many cells I choose, too many will make it crash (both to
move and to delete)

Attachment example: 
selecting all cells (C9 to J14) and press delete = program crashes
selecting all cells (C9 to J14) and try to move cells = program crashes
deleting only cells H9 to H12 = program does not crash
(I have not checked how many cells max I can move without crashing)

-- 
You are receiving this mail because:
You 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] translations.git: source/sl

2016-05-25 Thread Christian Lohmaier
 source/sl/helpcontent2/source/text/sbasic/shared.po| 2195 
--
 source/sl/helpcontent2/source/text/scalc/01.po | 1528 --
 source/sl/helpcontent2/source/text/shared/01.po|   32 
 source/sl/helpcontent2/source/text/shared/02.po|3 
 source/sl/helpcontent2/source/text/shared/explorer/database.po |  264 -
 source/sl/helpcontent2/source/text/shared/guide.po |   37 
 source/sl/helpcontent2/source/text/simpress/01.po  |   36 
 source/sl/helpcontent2/source/text/smath/01.po |   31 
 source/sl/helpcontent2/source/text/swriter.po  |8 
 source/sl/helpcontent2/source/text/swriter/01.po   |   64 
 source/sl/helpcontent2/source/text/swriter/guide.po|2 
 11 files changed, 4200 deletions(-)

New commits:
commit b71e619f4c8288d185bbeb7522cb953c9a540934
Author: Christian Lohmaier 
Date:   Wed May 25 20:33:49 2016 +0200

auto de-fuzz strings with change in context only for sl

Change-Id: I1ea4481c8b9df1d53b5ff20257f021ef652f5cff

diff --git a/source/sl/helpcontent2/source/text/sbasic/shared.po 
b/source/sl/helpcontent2/source/text/sbasic/shared.po
index 2403428..775ea76 100644
--- a/source/sl/helpcontent2/source/text/sbasic/shared.po
+++ b/source/sl/helpcontent2/source/text/sbasic/shared.po
@@ -1799,7 +1799,6 @@ msgid "names of 
variables  vari
 msgstr "imena 
spremenljivkspremenljivke; 
uporabavrste 
spremenljivkdeklaracija 
spremenljivkvrednosti; 
spremenljivkekonstantepolja;deklaracijadefinicija;konstante"
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "hd_id3149346\n"
@@ -1808,7 +1807,6 @@ msgid "U
 msgstr "Uporaba spremenljivk"
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "par_id3154346\n"
@@ -1817,7 +1815,6 @@ msgid "The following describes the basic use of variables 
in $[officename] Basic
 msgstr "Sledi opis osnov uporabe spremenljivk v $[officename] Basicu."
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "hd_id3153361\n"
@@ -1826,7 +1823,6 @@ msgid "Naming Conventions for Variable Identifiers"
 msgstr "Pravila poimenovanja za identifikatorje spremenljivk"
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "par_id3148797\n"
@@ -1835,7 +1831,6 @@ msgid "A variable name can consist of a maximum of 255 
characters. The first cha
 msgstr "Ime spremenljivke ima lahko največ 255 znakov. Prvi znak imena 
mora biti črka. V imenu spremenljivke lahko uporabite tudi 
številke, ločila in ostali posebni znaki pa razen podčrtaja (\"_\") niso 
dovoljeni. $[officename] Basic pri imenih spremenljivk ne razlikuje med 
velikimi in malimi črkami. Imena spremenljivk lahko vsebujejo presledke, 
vendar morajo biti v tem primeru ograjena v zavite oklepaje."
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "par_id3156422\n"
@@ -1844,7 +1839,6 @@ msgid "Examples for variable identifiers:"
 msgstr "Primeri imen spremenljivk:"
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "par_id3156441\n"
@@ -1853,7 +1847,6 @@ msgid "Correct"
 msgstr "Pravilno"
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "par_id3149664\n"
@@ -1862,7 +1855,6 @@ msgid "Correct"
 msgstr "Pravilno"
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "par_id3146119\n"
@@ -1871,7 +1863,6 @@ msgid "Correct"
 msgstr "Pravilno"
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "par_id3153876\n"
@@ -1880,7 +1871,6 @@ msgid "Not valid, variable with space must be enclosed in 
square brackets"
 msgstr "Neveljavno. Ime spremenljivke s presledkom mora biti ograjeno z 
oglatimi oklepaji:"
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "par_id3154510\n"
@@ -1889,7 +1879,6 @@ msgid "Correct"
 msgstr "Pravilno"
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "par_id3150330\n"
@@ -1898,7 +1887,6 @@ msgid "Not valid, special characters are not allowed"
 msgstr "Neveljavno, posebni znaki niso dovoljeni."
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "par_id3154254\n"
@@ -1907,7 +1895,6 @@ msgid "Not valid, variable may not begin with a number"
 msgstr "Neveljavno, ime spremenljivke se ne sme začeti s številko."
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "par_id3149256\n"
@@ -1916,7 +1903,6 @@ msgid "Not valid, punctuation marks are not allowed"
 msgstr "Neveljavno, ločila niso dovoljena."
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "hd_id3146317\n"
@@ -1925,7 +1911,6 @@ msgid "Declaring Variables"
 msgstr "Deklariranje spremenljivk"
 
 #: 01020100.xhp
-#, fuzzy
 msgctxt ""
 "01020100.xhp\n"
 "par_id3150299\n"
@@ -1934,7 +1919,6 @@ msgid "In $[officename] Basic you don't need to declare 
variables explicitly. A
 msgstr "V $[officename] Basicu vam spremenljivk ni treba posebej deklarirati. 
Deklaracijo lahko izvedete z ukazom Dim. Naenkrat lahko 
deklarirate več spremenljivk tako, da jih navedete in 

[Libreoffice-commits] core.git: translations

2016-05-25 Thread Christian Lohmaier
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e664254c3efcc611d018f4e813c30f38cc116b06
Author: Christian Lohmaier 
Date:   Wed May 25 20:33:49 2016 +0200

Updated core
Project: translations  b71e619f4c8288d185bbeb7522cb953c9a540934

auto de-fuzz strings with change in context only for sl

Change-Id: I1ea4481c8b9df1d53b5ff20257f021ef652f5cff

diff --git a/translations b/translations
index 87fc3ca..b71e619 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 87fc3ca7cba6ea6be066cc79bed965aaa596f426
+Subproject commit b71e619f4c8288d185bbeb7522cb953c9a540934
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 99864] trying to change column width in table affects only single row - no way to handle more than one row at a time.

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99864

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #5 from Buovjaga  ---
NOTABUG per comment 4

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


[Libreoffice-bugs] [Bug 96342] LibreOffice crashed if I try to delete specific cell content every time

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96342

Buovjaga  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW
 Whiteboard|confirmed:5.1.3.2:osx   |

--- Comment #16 from Buovjaga  ---
Deleting cells from D182 to I4 in attachment 121148 crashes on Linux.

Deleting cells from C9 to J14 in attachment 125263 does NOT crash on Linux.

We have two different problems here, guys.

sandraborg: you should create a new report for your problem and tell about it
here and I will come and confirm it.

Arch Linux 64-bit, KDE Plasma 5
Version: 5.2.0.0.alpha1+
Build ID: 6c785f65ea5cc961c0a079455973f3086731b2c9
CPU Threads: 8; OS Version: Linux 4.5; UI Render: default; 
Locale: fi-FI (fi_FI.UTF-8)
Built on May 20th 2016

64-bit, KDE Plasma 5
Build ID: 5.1.3.2 Arch Linux build-1
CPU Threads: 8; OS Version: Linux 4.5; UI Render: default; 
Locale: fi-FI (fi_FI.UTF-8)

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

2016-05-25 Thread Christian Lohmaier
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit dff45f736bb40c869dbacbc50957b34c2ad133e8
Author: Christian Lohmaier 
Date:   Wed May 25 19:40:31 2016 +0200

Updated core
Project: translations  87fc3ca7cba6ea6be066cc79bed965aaa596f426

update translations for 5.2.0 beta1

and force-fix errors using pocheck

Change-Id: I9dac678a4e705f255463e6ba3b127f423e82fd65

diff --git a/translations b/translations
index cfc31b7..87fc3ca 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit cfc31b7c53b06bab97be6b2cd9503423120ea1fe
+Subproject commit 87fc3ca7cba6ea6be066cc79bed965aaa596f426
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100057] New: FILEOPEN: large XML sheet files causes crash in Calc

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100057

Bug ID: 100057
   Summary: FILEOPEN: large XML sheet files causes crash in Calc
   Product: LibreOffice
   Version: 4.4.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rmm2...@gmail.com

Created attachment 125286
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125286=edit
File to reproduce the problem.

Problem description: When I try to open the xml file too large error occurs
"General input/output Error". 
I created a spreadsheet with 1700 lines by 40 columns in LibreOffice calc and
saved it as XML, when I try to open again this XML file with the LibreOffice
calc, occurs the error.
I tried to increase the memory but it doesn't work.

Steps to reproduce: Open the attached XML file with LibreOffice Calc.

Expected behavior: Open XML large file sheet and quickly.

Platform: Windows 7 Pro. Applies to LibreOffice version 4.4.5.2, 5.0.6.2 and
5.1.3.2.

Thanks in advance for your help and troubleshooting.

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


[Libreoffice-bugs] [Bug 100056] New: Dragon NaturallySpeaking compatibility

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100056

Bug ID: 100056
   Summary: Dragon NaturallySpeaking compatibility
   Product: LibreOffice
   Version: 5.1.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Extensions
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: wewald...@gmail.com

Libre is not compatible with Dragon NaturallySpeaking

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


[Libreoffice-bugs] [Bug 44266] Objects taken from the gallery do not align to the grid ( objects should have an anchor point)

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44266

--- Comment #18 from sergio.calleg...@gmail.com ---
Thanks for recognizing the value of the wish!

Can you please provide a quick illustration of how you intend the use of the
stored "protect position" flag as an alternative to the "one glue point as an
anchor point" suggestion?

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

2016-05-25 Thread Eike Rathke
 sc/inc/externalrefmgr.hxx|   27 +++-
 sc/source/filter/xml/xmltabi.cxx |3 
 sc/source/ui/docshell/externalrefmgr.cxx |  191 ++-
 3 files changed, 191 insertions(+), 30 deletions(-)

New commits:
commit ec693d9b9df631605028271f62daa7dfbe8e273d
Author: Eike Rathke 
Date:   Wed May 25 19:58:07 2016 +0200

tdf#86282 handle both, base name and Sheet1, as external reference sheet 
name

While 43030487c45f49bccdfad987c60d9483b938ebac fixed things for older
'name.csv'#Sheet1.A1 references, loading documents that meanwhile stored
'name.csv'#name.A1 lead to #REF! when the external links were updated.

Now recognize both, the base file name and Sheet1 name and set up one as
the alias of the other, so both variants can be handled.

Change-Id: Ie9314e11be19c3316a06e10583777e2d5f5ec1b8

diff --git a/sc/inc/externalrefmgr.hxx b/sc/inc/externalrefmgr.hxx
index ff00b47..b9d1394 100644
--- a/sc/inc/externalrefmgr.hxx
+++ b/sc/inc/externalrefmgr.hxx
@@ -249,7 +249,7 @@ public:
   const TokenArrayRef& pArray);
 
 bool isDocInitialized(sal_uInt16 nFileId);
-void initializeDoc(sal_uInt16 nFileId, const ::std::vector& 
rTabNames);
+void initializeDoc(sal_uInt16 nFileId, const ::std::vector& 
rTabNames, const OUString& rBaseName);
 OUString getTableName(sal_uInt16 nFileId, size_t nCacheId) const;
 void getAllTableNames(sal_uInt16 nFileId, ::std::vector& 
rTabNames) const;
 SCsTAB getTabSpan( sal_uInt16 nFileId, const OUString& rStartTabName, 
const OUString& rEndTabName ) const;
@@ -277,6 +277,8 @@ public:
  */
 void getAllCachedDataSpans( sal_uInt16 nFileId, sc::ColumnSpanSet& rSet ) 
const;
 
+bool getSrcDocTable( const ScDocument& rSrcDoc, const OUString& rTabName, 
SCTAB& rTab, sal_uInt16 nFileId ) const;
+
 private:
 struct ReferencedStatus
 {
@@ -302,7 +304,8 @@ private:
 public:
 
 ScExternalRefCache::TableTypeRef getCacheTable(sal_uInt16 nFileId, size_t 
nTabIndex) const;
-ScExternalRefCache::TableTypeRef getCacheTable(sal_uInt16 nFileId, const 
OUString& rTabName, bool bCreateNew, size_t* pnIndex);
+ScExternalRefCache::TableTypeRef getCacheTable(sal_uInt16 nFileId, const 
OUString& rTabName, bool bCreateNew,
+size_t* pnIndex, const OUString* pExtUrl);
 
 /**
  * Clear all caches including the cache tables.
@@ -346,9 +349,18 @@ private:
 /** Upper- to real-case mapping for range names. */
 NamePairMap maRealRangeNameMap;
 
+/** Either the base name that was stored as sheet name for CSV files if
+sheet name is Sheet1, or Sheet1 name if sheet name is base name.
+ */
+OUStringmaSingleTableNameAlias;
+
 bool mbInitFromSource;
 
 DocItem() : mbInitFromSource(false) {}
+
+TableNameIndexMap::const_iterator findTableNameIndex( const OUString& 
rTabName ) const;
+bool getTableDataIndex( const OUString& rTabName, size_t& rIndex ) 
const;
+bool getSingleTableNameAlternative( OUString& rTabName ) const;
 };
 typedef std::unordered_map  DocDataType;
 DocItem* getDocItem(sal_uInt16 nFileId) const;
@@ -460,7 +472,8 @@ public:
  * table orders are critical.
  *
  * Excel filter calls this method to populate the cache table from the
- * XCT/CRN records.
+ * XCT/CRN records. ODF import calls it for cached tables for external
+ * references.
  *
  * @param nFileId file ID
  * @param rTabName table name
@@ -469,10 +482,14 @@ public:
  *   specified table's cache doesn't exist.
  * @param pnIndex if non-NULL pointer is passed, it stores the internal
  *index of a cache table instance.
+ * @param pExtUrl if non-NULL and bCreateNew==true, the base name will be
+ *propagated as an alias for the first table (and removed
+ *later if further tables are created).
  *
  * @return shared_ptr to the cache table instance
  */
-ScExternalRefCache::TableTypeRef getCacheTable(sal_uInt16 nFileId, const 
OUString& rTabName, bool bCreateNew, size_t* pnIndex = nullptr);
+ScExternalRefCache::TableTypeRef getCacheTable(sal_uInt16 nFileId, const 
OUString& rTabName, bool bCreateNew,
+size_t* pnIndex = nullptr, const OUString* pExtUrl = nullptr);
 
 /** Returns a vector containing all (real) table names and cache tables of
 the specified file.
@@ -714,6 +731,8 @@ private:
 
 void fillCellFormat(sal_uLong nFmtIndex, ScExternalRefCache::CellFormat* 
pFmt) const;
 
+bool getSrcDocTable( const ScDocument& rSrcDoc, const OUString& rTabName, 
SCTAB& rTab, sal_uInt16 nFileId ) const;
+
 ScExternalRefCache::TokenRef getSingleRefTokenFromSrcDoc(
 sal_uInt16 nFileId, ScDocument* pSrcDoc, const ScAddress& rPos,
 

[Libreoffice-bugs] [Bug 39268] UI: Drawing tools should not switch back to Selection tool

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39268

Regina Henschel  changed:

   What|Removed |Added

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

--- Comment #22 from Regina Henschel  ---
This change is controversial, see comment 19. I too do not like such behavior.

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


[Libreoffice-ux-advise] [Bug 39268] UI: Drawing tools should not switch back to Selection tool

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39268

Regina Henschel  changed:

   What|Removed |Added

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

--- Comment #22 from Regina Henschel  ---
This change is controversial, see comment 19. I too do not like such behavior.

-- 
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 53866] Revamp dialog for 3D effects

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53866

--- Comment #4 from Regina Henschel  ---
3D needs a tree-view dialog, which covers the transformations (e.g. position,
rotation) of the different objects and the navigation inside the 3D-object too.
Keep in mind, that a 3D object is not only one object, but a scene, which can
contain a lot of other objects and sub-scenes.

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


[Libreoffice-bugs] [Bug 100036] Phantom rows appear only when exporting to PDF ( not when printing or editing)

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100036

Jim Avera  changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|DUPLICATE   |---

--- Comment #3 from Jim Avera  ---
AFAIK this has nothing to do with selections.  Reopening.

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


[Libreoffice-bugs] [Bug 92913] Shipped helloworld.js macro crashes LO

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92913

Caolán McNamara  changed:

   What|Removed |Added

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

--- Comment #7 from Caolán McNamara  ---
"OK LO5.1 but not with 4.4.7" so close this as fixed in current release

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


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

2016-05-25 Thread Rishabh Kumar
 svx/source/sidebar/line/LinePropertyPanel.cxx |2 ++
 svx/source/sidebar/line/LinePropertyPanelBase.cxx |7 +++
 2 files changed, 5 insertions(+), 4 deletions(-)

New commits:
commit f131e6ef72bcb778bef11a49bef099d9c4d9
Author: Rishabh Kumar 
Date:   Wed May 25 17:19:56 2016 +0530

Disable line arrow heads when a shape is selected

Change-Id: Ib2a6056f9739dad5c3b7567ded6c2ba3aca63247
Reviewed-on: https://gerrit.libreoffice.org/25447
Tested-by: Jenkins 
Reviewed-by: Katarina Behrens 

diff --git a/svx/source/sidebar/line/LinePropertyPanel.cxx 
b/svx/source/sidebar/line/LinePropertyPanel.cxx
index 9659357..9670e74 100644
--- a/svx/source/sidebar/line/LinePropertyPanel.cxx
+++ b/svx/source/sidebar/line/LinePropertyPanel.cxx
@@ -199,6 +199,8 @@ void LinePropertyPanel::HandleContextChange(
 {
 case CombinedEnumContext(Application_Calc, Context_DrawLine):
 case CombinedEnumContext(Application_DrawImpress, Context_DrawLine):
+case CombinedEnumContext(Application_WriterVariants, Context_Draw):
+// TODO : Implement DrawLine context in Writer
 bShowArrows = true;
 break;
 }
diff --git a/svx/source/sidebar/line/LinePropertyPanelBase.cxx 
b/svx/source/sidebar/line/LinePropertyPanelBase.cxx
index 5bc9fb9..906a412 100644
--- a/svx/source/sidebar/line/LinePropertyPanelBase.cxx
+++ b/svx/source/sidebar/line/LinePropertyPanelBase.cxx
@@ -901,8 +901,8 @@ void LinePropertyPanelBase::ActivateControls()
 
 mpGridLineProps->Enable( bLineStyle );
 mpBoxArrowProps->Enable( bLineStyle );
-mpLBStart->Enable( bLineStyle );
-mpLBEnd->Enable( bLineStyle );
+mpLBStart->Enable( bLineStyle && mbArrowSupported );
+mpLBEnd->Enable( bLineStyle && mbArrowSupported );
 }
 
 void LinePropertyPanelBase::setMapUnit(SfxMapUnit eMapUnit)
@@ -913,8 +913,7 @@ void LinePropertyPanelBase::setMapUnit(SfxMapUnit eMapUnit)
 void LinePropertyPanelBase::disableArrowHead()
 {
 mbArrowSupported = false;
-mpLBStart->Hide();
-mpLBEnd->Hide();
+ActivateControls();
 }
 
 }} // end of namespace svx::sidebar
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98895] Calc cell range search crashes open office if range is null

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98895

Caolán McNamara  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

--- Comment #4 from Caolán McNamara  ---
Might as well go brute force with an exception I reckon

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


[Libreoffice-bugs] [Bug 98895] Calc cell range search crashes open office if range is null

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98895

--- Comment #3 from Commit Notification 
 ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to "master":

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

Resolves: tdf#98895 range search crashes open office if range is null

It will be available in 5.2.0.

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

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

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


[Libreoffice-bugs] [Bug 98895] Calc cell range search crashes open office if range is null

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98895

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.2.0

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


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

2016-05-25 Thread Caolán McNamara
 sc/source/ui/unoobj/cellsuno.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 80502737b2ac722d4adfd4e89d3dc46799ded97e
Author: Caolán McNamara 
Date:   Wed May 25 17:39:13 2016 +0100

Resolves: tdf#98895 range search crashes open office if range is null

Change-Id: I12cf1045e1fd606cff58b68254eaf5cba6dee838

diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index eedf02e..944c56d 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -909,11 +909,11 @@ static void lcl_CopyProperties( beans::XPropertySet& 
rDest, beans::XPropertySet&
 
 static SCTAB lcl_FirstTab( const ScRangeList& rRanges )
 {
-OSL_ENSURE(rRanges.size() >= 1, "was fuer Ranges ?!?!");
-const ScRange* pFirst = rRanges[ 0 ];
+if (rRanges.empty())
+throw std::out_of_range("empty range");
+const ScRange* pFirst = rRanges[0];
 if (pFirst)
 return pFirst->aStart.Tab();
-
 return 0;   // soll nicht sein
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96114] Data Validity dialog does not accept a choice other than ' All values'

2016-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96114

steve -_-  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

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


  1   2   3   4   >