[Libreoffice-commits] dev-tools.git: esc-reporting/esc-collect.py

2017-05-16 Thread jan Iversen
 esc-reporting/esc-collect.py |   23 ---
 1 file changed, 12 insertions(+), 11 deletions(-)

New commits:
commit e5c2d3d87af00bcfaa685a4af96784463ba6670e
Author: jan Iversen 
Date:   Wed May 17 07:36:06 2017 +0200

esc-report, collect committer list using ssh (new format)

diff --git a/esc-reporting/esc-collect.py b/esc-reporting/esc-collect.py
index 6931773..af44973 100755
--- a/esc-reporting/esc-collect.py
+++ b/esc-reporting/esc-collect.py
@@ -562,18 +562,19 @@ def get_gerrit(cfg):
 searchDate, rawList = util_load_data_file(cfg, fileName, 'gerrit', 
{'patch': {}, 'committers' : []})
 print("Updating gerrit dump from " + rawList['newest-entry'])
 
-urlBase = 'https://gerrit.libreoffice.org/'
-uid = cfg['gerrit']['user']
-upw = cfg['gerrit']['password']
 rawList['committers'] = []
-tmp = util_load_url(urlBase + 'a/groups/Committers/members', uUser=uid, 
uPass=upw)
-for row in tmp:
-  for i in 'username', 'email':
-if not i in row:
-  row[i] = '*dummy*'
-  rawList['committers'].append(row)
-
-url = urlBase + 'changes/?q=after:' + searchDate.strftime("%Y-%m-%d") + \
+os.system('ssh gerrit.libreoffice.org "gerrit ls-members Committers" > 
/tmp/committerList')
+fp = open('/tmp/committerList', encoding='utf-8')
+tmp = fp.read().split('\n')[1:-1]
+fp.close()
+for line in tmp:
+  row = line.split('\t')
+  rawList['committers'].append({"_account_id": int(row[0]),
+"email": row[3],
+"name": row[2],
+"username": row[1]})
+
+url = 'https://gerrit.libreoffice.org/changes/?q=after:' + 
searchDate.strftime("%Y-%m-%d") + \
  '=DETAILED_LABELS=DETAILED_ACCOUNTS=MESSAGES=200='
 offset = 0
 if 'offset' in rawList:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107782] FILEOPEN Crash on PDF import with Bad Allocation for several specific PDF forms

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107782

raal  changed:

   What|Removed |Added

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

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


f0e64e108dd24e7b25f9400f5cbec811ddd0708d is the first bad commit
commit f0e64e108dd24e7b25f9400f5cbec811ddd0708d
Author: Norbert Thiebaud 
Date:   Mon Dec 5 20:49:33 2016 -0800

source sha:992b3c8644549218e6e2535eab7f8b239cf95a23
author  Miklos Vajna   2016-12-01 13:26:55 (GMT)
committer   Miklos Vajna   2016-12-05 08:09:33
(GMT)
commit  992b3c8644549218e6e2535eab7f8b239cf95a23 (patch)
treed8cdda5b4aa9bff3cc90a6be66aac0005396d29b
parent  6d1df1b0e1189e7e0ae2181a0fdc174d1ad404d0 (diff)
xmlsecurity PDF verify: last batch of various fixes

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


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

2017-05-16 Thread Pranav Kant
 wsd/ClientSession.cpp |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 1449d81671ff9563bd494526b4316fc0d6a8d893
Author: Pranav Kant 
Date:   Wed May 17 10:29:53 2017 +0530

wsd: Don't filter out 'save' command

Fallback from 1cb75cbcb8c87481bf341c5ac058a36c13529dc8

Change-Id: I47c8a470e5f4ab4d48859365d4435ae79c5fa82d

diff --git a/wsd/ClientSession.cpp b/wsd/ClientSession.cpp
index 8ce4c327..479bc2b9 100644
--- a/wsd/ClientSession.cpp
+++ b/wsd/ClientSession.cpp
@@ -133,6 +133,7 @@ bool ClientSession::_handleInput(const char *buffer, int 
length)
  tokens[0] != "renderfont" &&
  tokens[0] != "requestloksession" &&
  tokens[0] != "resetselection" &&
+ tokens[0] != "save" &&
  tokens[0] != "saveas" &&
  tokens[0] != "selectgraphic" &&
  tokens[0] != "selecttext" &&
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107883] Ctrl changes paragraph text direction

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107883

--- Comment #3 from Hamid  ---
I upgraded using the libreoffice PPA and the upgrade is done. Now it takes a
while to check if the problem recurs.

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


[Libreoffice-bugs] [Bug 102187] [META] Options dialog bugs and enhancements

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102187
Bug 102187 depends on bug 107298, which changed state.

Bug 107298 Summary: Snap option "When creating or moving objects" is 
mis-labeled in Draw
https://bugs.documentfoundation.org/show_bug.cgi?id=107298

   What|Removed |Added

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

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - include/xmloff sc/inc sc/source sc/uiconfig xmloff/source

2017-05-16 Thread Kohei Yoshida
 include/xmloff/xmltoken.hxx |4 +
 sc/inc/document.hxx |3 +
 sc/inc/global.hxx   |   15 +
 sc/inc/table.hxx|2 
 sc/source/core/data/document10.cxx  |   23 
 sc/source/core/data/table7.cxx  |   82 
 sc/source/filter/xml/xmlexprt.cxx   |   10 +++
 sc/source/filter/xml/xmlimprt.cxx   |4 +
 sc/source/filter/xml/xmlimprt.hxx   |6 +-
 sc/source/filter/xml/xmlsubti.cxx   |   10 +++
 sc/source/filter/xml/xmlsubti.hxx   |4 +
 sc/source/filter/xml/xmltabi.cxx|   24 -
 sc/source/ui/docshell/docfunc.cxx   |   46 +
 sc/source/ui/docshell/editable.cxx  |   22 
 sc/source/ui/inc/editable.hxx   |   14 +
 sc/source/ui/inc/protectiondlg.hxx  |4 +
 sc/source/ui/miscdlgs/protectiondlg.cxx |   24 +++--
 sc/source/ui/view/cellsh.cxx|   26 ++
 sc/uiconfig/scalc/ui/protectsheetdlg.ui |   48 ++
 xmloff/source/core/xmltoken.cxx |4 +
 xmloff/source/token/tokens.txt  |4 +
 21 files changed, 369 insertions(+), 10 deletions(-)

New commits:
commit 720560335c2e3a8e72026d87d8d5f0056f4df188
Author: Kohei Yoshida 
Date:   Thu May 11 18:07:56 2017 -0400

tdf#43535: support additional sheet protection options.

New options are:

* insert columns.
* insert rows.
* delete columns.
* delete rows.

Change-Id: I076b0d01bee0fff0623e2f1137c09938a6110939
Reviewed-on: https://gerrit.libreoffice.org/37695
Tested-by: Jenkins 
Reviewed-by: Kohei Yoshida 
(cherry picked from commit 034be10413ed4915090678ad4f1d48596cf5e206)

diff --git a/include/xmloff/xmltoken.hxx b/include/xmloff/xmltoken.hxx
index 1698737e6605..59f27f32f5c4 100644
--- a/include/xmloff/xmltoken.hxx
+++ b/include/xmloff/xmltoken.hxx
@@ -600,6 +600,8 @@ namespace xmloff { namespace token {
 XML_DEFAULT_STYLE_NAME,
 XML_DEGREE,
 XML_DELAY,
+XML_DELETE_COLUMNS,
+XML_DELETE_ROWS,
 XML_DELETION,
 XML_DELETIONS,
 XML_DENOMALIGN,
@@ -1031,6 +1033,8 @@ namespace xmloff { namespace token {
 XML_INFORMATION,
 XML_INITIAL_CREATOR,
 XML_INPROCEEDINGS,
+XML_INSERT_COLUMNS,
+XML_INSERT_ROWS,
 XML_INSERTION,
 XML_INSERTION_CUT_OFF,
 XML_INSERTION_POSITION,
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 5e4336019fb1..bd9313346ecc 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -782,6 +782,9 @@ public:
 SCCOL nEndCol, SCROW nEndRow,
 const ScMarkData& rMark ) const;
 
+bool IsEditActionAllowed( sc::ColRowEditAction eAction, SCTAB nTab, 
SCCOLROW nStart, SCCOLROW nEnd ) const;
+bool IsEditActionAllowed( sc::ColRowEditAction eAction, const ScMarkData& 
rMark, SCCOLROW nStart, SCCOLROW nEnd ) const;
+
 SC_DLLPUBLIC bool GetMatrixFormulaRange( const ScAddress& rCellPos, 
ScRange& rMatrix );
 
 boolIsEmbedded() const { return bIsEmbedded;}
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx
index 429a867709df..78ea62923445 100644
--- a/sc/inc/global.hxx
+++ b/sc/inc/global.hxx
@@ -431,6 +431,21 @@ enum ScDBObject
 ScDbQuery
 };
 
+namespace sc {
+
+enum class ColRowEditAction
+{
+Unknown,
+InsertColumnsBefore,
+InsertColumnsAfter,
+InsertRowsBefore,
+InsertRowsAfter,
+DeleteColumns,
+DeleteRows
+};
+
+}
+
 struct ScImportParam
 {
 SCCOL   nCol1;
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index 26a729227829..9b2219eda8c2 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -321,6 +321,8 @@ public:
 voidSetProtection(const ScTableProtection* pProtect);
 ScTableProtection* GetProtection();
 
+bool IsEditActionAllowed( sc::ColRowEditAction eAction, SCCOLROW nStart, 
SCCOLROW nEnd ) const;
+
 SizeGetPageSize() const;
 voidSetPageSize( const Size& rSize );
 voidSetRepeatArea( SCCOL nStartCol, SCCOL nEndCol, SCROW 
nStartRow, SCROW nEndRow );
diff --git a/sc/source/core/data/document10.cxx 
b/sc/source/core/data/document10.cxx
index 7b6ce1cc4a7a..35632d44536f 100644
--- a/sc/source/core/data/document10.cxx
+++ b/sc/source/core/data/document10.cxx
@@ -880,4 +880,27 @@ bool ScDocument::CopyAdjustRangeName( SCTAB& rSheet, 
sal_uInt16& rIndex, ScRange
 return true;
 }
 
+bool ScDocument::IsEditActionAllowed(
+sc::ColRowEditAction eAction, SCTAB nTab, SCCOLROW nStart, SCCOLROW nEnd ) 
const
+{
+const ScTable* pTab = FetchTable(nTab);
+if (!pTab)
+return false;
+
+return pTab->IsEditActionAllowed(eAction, nStart, nEnd);
+}
+
+bool ScDocument::IsEditActionAllowed(
+

[Libreoffice-bugs] [Bug 107298] Snap option "When creating or moving objects" is mis-labeled in Draw

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107298

Buovjaga  changed:

   What|Removed |Added

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

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


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

2017-05-16 Thread Kohei Yoshida
 sc/qa/unit/ucalc.cxx |  153 +++
 sc/qa/unit/ucalc.hxx |4 +
 2 files changed, 157 insertions(+)

New commits:
commit 7ae50f522f94987afe85674f6691fc37c55bd3d1
Author: Kohei Yoshida 
Date:   Mon May 15 22:36:08 2017 -0400

tdf#43535: add unit test for this.

Change-Id: I4e6b27f82d1344ac77b02867e1e717c510a133b6
Reviewed-on: https://gerrit.libreoffice.org/37696
Tested-by: Jenkins 
Reviewed-by: Kohei Yoshida 

diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index f573cc8d8d86..3f6a38820abc 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -68,6 +68,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -6949,6 +6950,158 @@ void Test::testPrecisionAsShown()
 m_pDoc->DeleteTab(0);
 }
 
+void Test::testProtectedSheetEditByRow()
+{
+ScDocFunc& rDocFunc = getDocShell().GetDocFunc();
+m_pDoc->InsertTab(0, "Protected");
+
+{
+// Remove protected flags from rows 2-5.
+ScPatternAttr aAttr(m_pDoc->GetPool());
+aAttr.GetItemSet().Put(ScProtectionAttr(false));
+m_pDoc->ApplyPatternAreaTab(0, 1, MAXCOL, 4, 0, aAttr);
+
+// Protect the sheet without any options.
+ScTableProtection aProtect;
+aProtect.setProtected(true);
+m_pDoc->SetTabProtection(0, );
+
+// Try to delete row 3.  It should fail.
+ScRange aRow3(0,2,0,MAXCOL,2,0);
+ScMarkData aMark;
+aMark.SelectOneTable(0);
+bool bDeleted = rDocFunc.DeleteCells(aRow3, , DEL_DELROWS, true);
+CPPUNIT_ASSERT_MESSAGE("deletion of row 3 should fail.", !bDeleted);
+
+// Protect the sheet but allow row deletion.
+aProtect.setOption(ScTableProtection::DELETE_ROWS, true);
+m_pDoc->SetTabProtection(0, );
+
+// Now we should be able to delete row 3.
+bDeleted = rDocFunc.DeleteCells(aRow3, , DEL_DELROWS, true);
+CPPUNIT_ASSERT_MESSAGE("deletion of row 3 should succeed.", bDeleted);
+
+// But, row deletion should still fail on a protected row.
+ScRange aRow10(0,9,0,MAXCOL,9,0);
+bDeleted = rDocFunc.DeleteCells(aRow10, , DEL_DELROWS, true);
+CPPUNIT_ASSERT_MESSAGE("deletion of row 10 should not be allowed.", 
!bDeleted);
+
+// Try inserting a new row.  It should fail.
+bool bInserted = rDocFunc.InsertCells(aRow3, , 
INS_INSROWS_AFTER, true, true);
+CPPUNIT_ASSERT_MESSAGE("row insertion at row 3 should fail.", 
!bInserted);
+
+// Allow row insertions.
+aProtect.setOption(ScTableProtection::INSERT_ROWS, true);
+m_pDoc->SetTabProtection(0, );
+
+bInserted = rDocFunc.InsertCells(aRow3, , INS_INSROWS_AFTER, 
true, true);
+CPPUNIT_ASSERT_MESSAGE("row insertion at row 3 should succeed.", 
bInserted);
+
+// Row insertion is allowed even when the rows above and below have 
protected flags set.
+bInserted = rDocFunc.InsertCells(aRow10, , INS_INSROWS_AFTER, 
true, true);
+CPPUNIT_ASSERT_MESSAGE("row insertion at row 10 should succeed.", 
bInserted);
+}
+
+m_pDoc->InsertTab(1, "Matrix"); // This sheet is unprotected.
+
+{
+// Insert matrix into B2:C3.
+ScMarkData aMark;
+aMark.SelectOneTable(1);
+m_pDoc->InsertMatrixFormula(1, 1, 2, 2, aMark, "={1;2|3;4}");
+
+CPPUNIT_ASSERT_EQUAL(1.0, m_pDoc->GetValue(ScAddress(1,1,1)));
+CPPUNIT_ASSERT_EQUAL(2.0, m_pDoc->GetValue(ScAddress(2,1,1)));
+CPPUNIT_ASSERT_EQUAL(3.0, m_pDoc->GetValue(ScAddress(1,2,1)));
+CPPUNIT_ASSERT_EQUAL(4.0, m_pDoc->GetValue(ScAddress(2,2,1)));
+
+// Try to insert a row at row 3.  It should fail because of matrix's 
presence.
+
+ScRange aRow3(0,2,1,MAXCOL,2,1);
+bool bInserted = rDocFunc.InsertCells(aRow3, , 
INS_INSROWS_BEFORE, true, true);
+CPPUNIT_ASSERT_MESSAGE("row insertion at row 3 should fail.", 
!bInserted);
+}
+
+m_pDoc->DeleteTab(1);
+m_pDoc->DeleteTab(0);
+}
+
+void Test::testProtectedSheetEditByColumn()
+{
+ScDocFunc& rDocFunc = getDocShell().GetDocFunc();
+m_pDoc->InsertTab(0, "Protected");
+
+{
+// Remove protected flags from columns B to E.
+ScPatternAttr aAttr(m_pDoc->GetPool());
+aAttr.GetItemSet().Put(ScProtectionAttr(false));
+m_pDoc->ApplyPatternAreaTab(1, 0, 4, MAXROW, 0, aAttr);
+
+// Protect the sheet without any options.
+ScTableProtection aProtect;
+aProtect.setProtected(true);
+m_pDoc->SetTabProtection(0, );
+
+// Try to delete column C.  It should fail.
+ScRange aCol3(2,0,0,2,MAXROW,0);
+ScMarkData aMark;
+aMark.SelectOneTable(0);
+bool bDeleted = rDocFunc.DeleteCells(aCol3, , DEL_DELCOLS, true);
+CPPUNIT_ASSERT_MESSAGE("deletion of column 3 should fail.", !bDeleted);
+
+// Protect the 

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

2017-05-16 Thread Kohei Yoshida
 include/xmloff/xmltoken.hxx |4 +
 sc/inc/document.hxx |3 +
 sc/inc/global.hxx   |   15 +
 sc/inc/table.hxx|2 
 sc/source/core/data/document10.cxx  |   23 
 sc/source/core/data/table7.cxx  |   82 
 sc/source/filter/xml/xmlexprt.cxx   |   10 +++
 sc/source/filter/xml/xmlimprt.cxx   |4 +
 sc/source/filter/xml/xmlimprt.hxx   |6 +-
 sc/source/filter/xml/xmlsubti.cxx   |   10 +++
 sc/source/filter/xml/xmlsubti.hxx   |4 +
 sc/source/filter/xml/xmltabi.cxx|   24 -
 sc/source/ui/docshell/docfunc.cxx   |   46 +
 sc/source/ui/docshell/editable.cxx  |   22 
 sc/source/ui/inc/editable.hxx   |   14 +
 sc/source/ui/inc/protectiondlg.hxx  |4 +
 sc/source/ui/miscdlgs/protectiondlg.cxx |   24 +++--
 sc/source/ui/view/cellsh.cxx|   26 ++
 sc/uiconfig/scalc/ui/protectsheetdlg.ui |   48 ++
 xmloff/source/core/xmltoken.cxx |4 +
 xmloff/source/token/tokens.txt  |4 +
 21 files changed, 369 insertions(+), 10 deletions(-)

New commits:
commit 034be10413ed4915090678ad4f1d48596cf5e206
Author: Kohei Yoshida 
Date:   Thu May 11 18:07:56 2017 -0400

tdf#43535: support additional sheet protection options.

New options are:

* insert columns.
* insert rows.
* delete columns.
* delete rows.

Change-Id: I076b0d01bee0fff0623e2f1137c09938a6110939
Reviewed-on: https://gerrit.libreoffice.org/37695
Tested-by: Jenkins 
Reviewed-by: Kohei Yoshida 

diff --git a/include/xmloff/xmltoken.hxx b/include/xmloff/xmltoken.hxx
index 9ab65abfd195..d746ae78c5d0 100644
--- a/include/xmloff/xmltoken.hxx
+++ b/include/xmloff/xmltoken.hxx
@@ -605,6 +605,8 @@ namespace xmloff { namespace token {
 XML_DEFAULT_STYLE_NAME,
 XML_DEGREE,
 XML_DELAY,
+XML_DELETE_COLUMNS,
+XML_DELETE_ROWS,
 XML_DELETION,
 XML_DELETIONS,
 XML_DENOMALIGN,
@@ -1037,6 +1039,8 @@ namespace xmloff { namespace token {
 XML_INFORMATION,
 XML_INITIAL_CREATOR,
 XML_INPROCEEDINGS,
+XML_INSERT_COLUMNS,
+XML_INSERT_ROWS,
 XML_INSERTION,
 XML_INSERTION_CUT_OFF,
 XML_INSERTION_POSITION,
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 2c0f1318fc63..87c89958acf2 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -791,6 +791,9 @@ public:
 SCCOL nEndCol, SCROW 
nEndRow,
 const ScMarkData& rMark ) 
const;
 
+bool IsEditActionAllowed( sc::ColRowEditAction eAction, SCTAB nTab, 
SCCOLROW nStart, SCCOLROW nEnd ) const;
+bool IsEditActionAllowed( sc::ColRowEditAction eAction, const ScMarkData& 
rMark, SCCOLROW nStart, SCCOLROW nEnd ) const;
+
 SC_DLLPUBLIC bool GetMatrixFormulaRange( const ScAddress& rCellPos, 
ScRange& rMatrix );
 
 boolIsEmbedded() const { return bIsEmbedded;}
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx
index 1c67775099cb..7219b9bd2a04 100644
--- a/sc/inc/global.hxx
+++ b/sc/inc/global.hxx
@@ -428,6 +428,21 @@ enum ScDBObject
 ScDbQuery
 };
 
+namespace sc {
+
+enum class ColRowEditAction
+{
+Unknown,
+InsertColumnsBefore,
+InsertColumnsAfter,
+InsertRowsBefore,
+InsertRowsAfter,
+DeleteColumns,
+DeleteRows
+};
+
+}
+
 struct ScImportParam
 {
 SCCOL   nCol1;
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index 87ba9c6df206..c5941b0a085f 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -350,6 +350,8 @@ public:
 voidSetProtection(const ScTableProtection* pProtect);
 ScTableProtection* GetProtection();
 
+bool IsEditActionAllowed( sc::ColRowEditAction eAction, SCCOLROW nStart, 
SCCOLROW nEnd ) const;
+
 SizeGetPageSize() const;
 voidSetPageSize( const Size& rSize );
 voidSetRepeatArea( SCCOL nStartCol, SCCOL nEndCol, SCROW 
nStartRow, SCROW nEndRow );
diff --git a/sc/source/core/data/document10.cxx 
b/sc/source/core/data/document10.cxx
index 161729063e4b..1273a17bc87f 100644
--- a/sc/source/core/data/document10.cxx
+++ b/sc/source/core/data/document10.cxx
@@ -881,4 +881,27 @@ bool ScDocument::CopyAdjustRangeName( SCTAB& rSheet, 
sal_uInt16& rIndex, ScRange
 return true;
 }
 
+bool ScDocument::IsEditActionAllowed(
+sc::ColRowEditAction eAction, SCTAB nTab, SCCOLROW nStart, SCCOLROW nEnd ) 
const
+{
+const ScTable* pTab = FetchTable(nTab);
+if (!pTab)
+return false;
+
+return pTab->IsEditActionAllowed(eAction, nStart, nEnd);
+}
+
+bool ScDocument::IsEditActionAllowed(
+sc::ColRowEditAction eAction, const ScMarkData& rMark, SCCOLROW 

[Libreoffice-commits] online.git: wsd/ClientSession.cpp wsd/DocumentBroker.cpp wsd/DocumentBroker.hpp wsd/Storage.cpp wsd/Storage.hpp

2017-05-16 Thread Ashod Nakashian
 wsd/ClientSession.cpp  |1 
 wsd/DocumentBroker.cpp |   19 +
 wsd/DocumentBroker.hpp |1 
 wsd/Storage.cpp|   46 ---
 wsd/Storage.hpp|   52 +
 5 files changed, 98 insertions(+), 21 deletions(-)

New commits:
commit ec2fd0844f997f9a7347229e282daeb8dc4471bc
Author: Ashod Nakashian 
Date:   Tue May 16 16:38:44 2017 -0400

wsd: use WOPI host instance ID to support hostname aliases

The docKey creation moved to Storage where we first
invoke WOPI (if/when it's a WOPI-hosted doc and WOPI enabled)
and see if the user has access to the document at all.
If they do, we expect the server to give us a
unique ID to use for identifying the host regardless
of hostname aliases.

If a unique ID is not returned (i.e. empty or missing)
we use the hostname and port in its place as fallback.
This will break hostname aliases, but it will still work.

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

diff --git a/wsd/ClientSession.cpp b/wsd/ClientSession.cpp
index 5a0af025..8ce4c327 100644
--- a/wsd/ClientSession.cpp
+++ b/wsd/ClientSession.cpp
@@ -736,7 +736,6 @@ bool ClientSession::forwardToClient(const 
std::shared_ptr& payload)
 
 std::string ClientSession::getAccessToken() const
 {
-std::string accessToken;
 Poco::URI::QueryParameters queryParams = _uriPublic.getQueryParameters();
 for (auto& param: queryParams)
 {
diff --git a/wsd/DocumentBroker.cpp b/wsd/DocumentBroker.cpp
index e5924f87..66a5de80 100644
--- a/wsd/DocumentBroker.cpp
+++ b/wsd/DocumentBroker.cpp
@@ -102,15 +102,7 @@ Poco::URI DocumentBroker::sanitizeURI(const std::string& 
uri)
 
 std::string DocumentBroker::getDocKey(const Poco::URI& uri)
 {
-// If multiple host-names are used to access us, then
-// we force same document (when opened from
-// alias hosts) to load as separate documents and sharing doesn't
-// work. Worse, saving overwrites one another.
-// But we also do not want different WOPI hosts using the same path
-// for some file getting shared across WOPI hosts
-std::string docKey;
-Poco::URI::encode(uri.getHost() + ":" + std::to_string(uri.getPort()) + 
uri.getPath(), "", docKey);
-return docKey;
+return StorageBase::getUniqueDocId(uri);
 }
 
 /// The Document Broker Poll - one of these in a thread per document
@@ -409,6 +401,7 @@ bool DocumentBroker::load(const 
std::shared_ptr& session, const s
 LOG_ERR("Failed to create Storage instance for [" << _docKey << "] 
in " << jailPath.toString());
 return false;
 }
+
 firstInstance = true;
 }
 
@@ -423,6 +416,14 @@ bool DocumentBroker::load(const 
std::shared_ptr& session, const s
 std::unique_ptr wopifileinfo = 
wopiStorage->getWOPIFileInfo(session->getAccessToken());
 userid = wopifileinfo->_userid;
 username = wopifileinfo->_username;
+if (firstInstance)
+{
+_hostInstanceId = wopifileinfo->_hostInstanceId;
+}
+else if (!_hostInstanceId.empty() && _hostInstanceId != 
wopifileinfo->_hostInstanceId)
+{
+throw UnauthorizedRequestException("Unauthorized WOPI host.");
+}
 
 if (!wopifileinfo->_userCanWrite)
 {
diff --git a/wsd/DocumentBroker.hpp b/wsd/DocumentBroker.hpp
index 46481cba..8ac67ee2 100644
--- a/wsd/DocumentBroker.hpp
+++ b/wsd/DocumentBroker.hpp
@@ -369,6 +369,7 @@ private:
 Poco::URI _uriJailed;
 std::string _jailId;
 std::string _filename;
+std::string _hostInstanceId;
 
 /// The last time we tried saving, regardless of whether the
 /// document was modified and saved or not.
diff --git a/wsd/Storage.cpp b/wsd/Storage.cpp
index e07ffd55..bdaeab56 100644
--- a/wsd/Storage.cpp
+++ b/wsd/Storage.cpp
@@ -124,7 +124,7 @@ void StorageBase::initialize()
 #endif
 }
 
-bool isLocalhost(const std::string& targetHost)
+bool StorageBase::isLocalhost(const std::string& targetHost)
 {
 std::string targetAddress;
 try
@@ -201,7 +201,7 @@ std::unique_ptr StorageBase::create(const 
Poco::URI& uri, const std
 {
 LOG_INF("Public URI [" << uri.toString() << "] considered WOPI.");
 const auto& targetHost = uri.getHost();
-if (WopiHosts.match(targetHost) || isLocalhost(targetHost))
+if (isWopiHostAuthorized(targetHost))
 {
 return std::unique_ptr(new WopiStorage(uri, jailRoot, 
jailPath));
 }
@@ -212,6 +212,39 @@ std::unique_ptr StorageBase::create(const 
Poco::URI& uri, const std
 throw BadRequestException("No Storage configured or invalid URI.");
 }
 
+std::string StorageBase::getUniqueDocId(const Poco::URI& uri)
+{
+

[Libreoffice-bugs] [Bug 107883] Ctrl changes paragraph text direction

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107883

--- Comment #2 from Hamid  ---
Upgraded but when I check the About Libreoffice:

Version: 5.3.1.2
Build ID: 1:5.3.1-0ubuntu2
CPU Threads: 4; OS Version: Linux 4.10; UI Render: default; VCL: gtk3; Layout
Engine: new; 
Locale: fa-IR (fa_IR); Calc: group

BTW This error message or warning appears in the log of upgrade:

$ sudo dpkg -i *.deb
…
Processing triggers for shared-mime-info (1.8-1) ...
Unknown media type in type 'all/all'
Unknown media type in type 'all/allfiles'
…

Is it actually upgraded?

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


[Libreoffice-bugs] [Bug 107903] LibreOffice dont show any text

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107903

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---


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

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


[Libreoffice-bugs] [Bug 107166] Text is invisible, both in UI and in editor on update to 5.3.2, older AMD and Intel GPUs

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107166

V Stuart Foote  changed:

   What|Removed |Added

 CC||alberto...@gmail.com

--- Comment #17 from V Stuart Foote  ---
*** Bug 107903 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 107885] VBA AutoFilter can't compare strings

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107885

Jacques Guilleron  changed:

   What|Removed |Added

 CC||guillero...@aol.com

--- Comment #1 from Jacques Guilleron  ---
Hi Szymon,

Criterial:"<>A" can be used.
Help pages at Operators Standard Filters give other useful combinations.
https://help.libreoffice.org/Common/Comparison_Operators

Jacques

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


[Libreoffice-bugs] [Bug 107903] New: LibreOffice dont show any text

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107903

Bug ID: 107903
   Summary: LibreOffice dont show any text
   Product: LibreOffice
   Version: 5.3.2.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: alberto...@gmail.com

Created attachment 133369
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133369=edit
This picture shows Calc without text in the menus and the content of the
spredsheet

Hello, I have a problem with LibreOffice, because it does not display the text
in the menus or in the contents of the documents. I tried to change the
language of Libreoffice but it does not solve anything. This problem does not
occur when starting Windows in Safe mode. Please help.

Thank you.

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


[Libreoffice-bugs] [Bug 107902] Macro in XLSM gives error in Calc, but runs fine in Excel

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107902

Aron Budea  changed:

   What|Removed |Added

Version|5.4.0.0.alpha1+ Master  |5.3.0.0.alpha0+

--- Comment #2 from Aron Budea  ---
The issue started with the commit referenced below.
Seems like the issue is with determining whether the autofiltered column
includes a header or not. Even if there is no error, the first cell is among
the autofiltered entries, while before the commit it isn't.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=4cd9e45a439b654c8e1ff7983fe7e4bd073b9c92
author  Yan Pashkovsky 2016-08-12 20:39:30
(GMT)
committer   Eike Rathke   2016-08-18 13:50:30 (GMT)

"tdf#91305 fix sort calc"

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


[Libreoffice-bugs] [Bug 107902] Macro in XLSM gives error in Calc, but runs fine in Excel

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107902

Aron Budea  changed:

   What|Removed |Added

   Keywords||bibisected, bisected

--- Comment #1 from Aron Budea  ---
fe6991c23eaaf231bd985b6d2ab89a3ac034545f is the first bad commit
commit fe6991c23eaaf231bd985b6d2ab89a3ac034545f
Author: Norbert Thiebaud 
Date:   Fri Aug 19 12:04:26 2016 -0700

source sha:4cd9e45a439b654c8e1ff7983fe7e4bd073b9c92

# bad: [a374222bc87bd9e75ea2f1ca45d189932a1967f8] source
sha:aa09fd58bd499a2a2c3a32c5f613892bad54076c
# good: [defb73f1c6e2a66dbd21ba89e684f57427e8bc4b] source
sha:5b168b3fa568e48e795234dc5fa454bf24c9805e
git bisect start 'a374222bc87bd9e75ea2f1ca45d189932a1967f8' 'oldest'
# bad: [0b4408f0568ad1da0797543c0ee2955c386267ee] source
sha:8f7886c742cae5e012e52029c20925aa7b0fb6ea
git bisect bad 0b4408f0568ad1da0797543c0ee2955c386267ee
# good: [16b554fa5f3a3d2723e78d894d644ac9303a7991] source
sha:50a6f3d51f32e7176c3b2d036c60bb48d51d6a1a
git bisect good 16b554fa5f3a3d2723e78d894d644ac9303a7991
# good: [1d5414e6dc71de667a2e7457f4a169c3575a4a70] source
sha:f16c803e7f5186632adeffc2dad579cf2c720b15
git bisect good 1d5414e6dc71de667a2e7457f4a169c3575a4a70
# bad: [5bb9715859cfd0334a6036b5990f659ce6712184] source
sha:f82e4c18f0af898725fcb4e2040a4ea4f0461fa7
git bisect bad 5bb9715859cfd0334a6036b5990f659ce6712184
# good: [c20f4971b559c6ae8859524493cd4e0700e1c845] source
sha:f2afe318ce800c1b301f7e1aef769194aa676b12
git bisect good c20f4971b559c6ae8859524493cd4e0700e1c845
# bad: [6ccf273eaf66dddca4cfe64c9dc4e5d750c0b86c] source
sha:55b4ca8b5e7283aafc7a539b629dc4c3dad8fb51
git bisect bad 6ccf273eaf66dddca4cfe64c9dc4e5d750c0b86c
# bad: [6787dce0e6e5636658b5d8e7335151e673917826] source
sha:d33412979a2efe023a9bbaea4c70822c8a443f95
git bisect bad 6787dce0e6e5636658b5d8e7335151e673917826
# bad: [2fecdf60f51b023baff0354cf22ce9aef210f8a8] source
sha:93295a069b9d6fa4da78a6b1ae98c63940f0
git bisect bad 2fecdf60f51b023baff0354cf22ce9aef210f8a8
# good: [7eb3c383e76dcf598c6c49156a0922f6724967ba] source
sha:bfbd66f151002af6f65b9c062cc511797690e625
git bisect good 7eb3c383e76dcf598c6c49156a0922f6724967ba
# good: [ac8b29a7c60eb642f867370ea9b7daae8655ff4b] source
sha:7a31ae209304730e06e1f3ebc81e7c7b5de9
git bisect good ac8b29a7c60eb642f867370ea9b7daae8655ff4b
# bad: [fe6991c23eaaf231bd985b6d2ab89a3ac034545f] source
sha:4cd9e45a439b654c8e1ff7983fe7e4bd073b9c92
git bisect bad fe6991c23eaaf231bd985b6d2ab89a3ac034545f
# good: [45cd08b57c4ca17c536650256ab8038f327ac95a] source
sha:e527edf06f8befb45b76ee8ebabe62e6dc885e45
git bisect good 45cd08b57c4ca17c536650256ab8038f327ac95a
# good: [f45c7f1a4528ed75f559214e1d85745c8f7b1c2f] source
sha:b6011f07254f8003929320ad842d8d09daca0e09
git bisect good f45c7f1a4528ed75f559214e1d85745c8f7b1c2f
# first bad commit: [fe6991c23eaaf231bd985b6d2ab89a3ac034545f] source
sha:4cd9e45a439b654c8e1ff7983fe7e4bd073b9c92

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


[Libreoffice-bugs] [Bug 107902] Macro in XLSM gives error in Calc, but runs fine in Excel

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107902

Aron Budea  changed:

   What|Removed |Added

 Attachment #133368|application/zip |application/vnd.ms-excel.sh
  mime type||eet.macroEnabled.12

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


[Libreoffice-bugs] [Bug 107902] New: Macro in XLSM gives error in Calc, but runs fine in Excel

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107902

Bug ID: 107902
   Summary: Macro in XLSM gives error in Calc, but runs fine in
Excel
   Product: LibreOffice
   Version: 5.4.0.0.alpha1+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:xlsx, regression
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
CC: szymon.k...@collabora.com

Created attachment 133368
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133368=edit
Sample XLSM that gives error in Calc when run

Open the attached Excel spreadsheet with a simple macro, and run the macro. 

Execution fails with error:
"BASIC runtime error.
'1'

Type: com.sun.star.lang.WrappedTargetRuntimeException
Message: non-RuntimeException occurred when accessing an interface type
attribute"

There's no error message if the first line of the macro is changed
- from: Range("A1").Select
- to:   Range("A1:A5").Select

In Excel the macro runs fine in both cases.

Occurs in 5.4 master build (68a1cb23ede1d4ae6195850190fca6953c30417f) / Windows
7, doesn't occur in 5.2.0.4. => 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: filter/source

2017-05-16 Thread Julien Nabet
 filter/source/xslt/odf2xhtml/export/xhtml/body.xsl |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 296c2296f5565556eea9fab51563050f28bbcafc
Author: Julien Nabet 
Date:   Wed May 17 00:13:18 2017 +0200

Related tdf#107696: deal with non empty header without number

See first case of 
https://bugs.documentfoundation.org/show_bug.cgi?id=107696#c11

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

diff --git a/filter/source/xslt/odf2xhtml/export/xhtml/body.xsl 
b/filter/source/xslt/odf2xhtml/export/xhtml/body.xsl
index 03d4a8fce087..823d048254c5 100644
--- a/filter/source/xslt/odf2xhtml/export/xhtml/body.xsl
+++ b/filter/source/xslt/odf2xhtml/export/xhtml/body.xsl
@@ -1222,7 +1222,7 @@



-   
+   
 

___
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/cp-5.3-12'

2017-05-16 Thread Andras Timar
Tag 'cp-5.3-12' created by Andras Timar  at 
2017-05-16 22:13 +

cp-5.3-12

Changes since libreoffice-5-3-branch-point-28:
---
 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/cp-5.3-12'

2017-05-16 Thread Christian Lohmaier
Tag 'cp-5.3-12' created by Andras Timar  at 
2017-05-16 22:13 +

cp-5.3-12

Changes since cp-5.3-10:
Christian Lohmaier (1):
  update translations for 5.3.3 rc2

---
 source/am/cui/source/options.po|8 
 source/am/cui/source/tabpages.po   |8 
 source/am/cui/uiconfig/ui.po   |8 
 source/am/fpicker/source/office.po |   10 
 source/am/officecfg/registry/data/org/openoffice/Office.po |6 
 source/am/sc/source/ui/src.po  |8 
 source/am/sfx2/source/dialog.po|   12 
 source/am/svtools/source/dialogs.po|8 
 source/am/svtools/source/misc.po   |8 
 source/am/svx/source/stbctrls.po   |8 
 source/am/svx/uiconfig/ui.po   |   10 
 source/bg/sc/uiconfig/scalc/ui.po  |   20 
 source/bg/sfx2/source/dialog.po|   12 
 source/bg/svx/source/dialog.po |   30 
 source/bg/svx/source/form.po   |   10 
 source/bg/svx/source/stbctrls.po   |8 
 source/bg/svx/source/tbxctrls.po   |6 
 source/bg/svx/uiconfig/ui.po   |  289 
 source/bg/sw/source/ui/utlui.po|   21 
 source/bg/sw/source/uibase/utlui.po|6 
 source/bg/sw/uiconfig/swriter/ui.po|5 
 source/br/cui/uiconfig/ui.po   |   70 -
 source/br/extensions/source/bibliography.po|   12 
 source/br/extensions/source/propctrlr.po   |  152 ++--
 source/br/sc/source/ui/src.po  |   12 
 source/ca/helpcontent2/source/text/scalc/00.po |   20 
 source/ca/helpcontent2/source/text/scalc/01.po |8 
 source/ca/helpcontent2/source/text/scalc/guide.po  |   10 
 source/ca/helpcontent2/source/text/shared/01.po|6 
 source/ca/helpcontent2/source/text/shared/guide.po |5 
 source/ca/helpcontent2/source/text/shared/optionen.po  |8 
 source/ca/helpcontent2/source/text/simpress/guide.po   |   10 
 source/ca/helpcontent2/source/text/swriter/01.po   |   13 
 source/ca/helpcontent2/source/text/swriter/guide.po|   25 
 source/ca/officecfg/registry/data/org/openoffice/Office/UI.po  |8 
 source/ca/sc/uiconfig/scalc/ui.po  |6 
 source/ca/svx/uiconfig/ui.po   |   12 
 source/cy/cui/uiconfig/ui.po   |8 
 source/cy/sfx2/source/dialog.po|   12 
 source/cy/sfx2/uiconfig/ui.po  |   15 
 source/cy/svtools/source/dialogs.po|8 
 source/cy/svtools/source/misc.po   |8 
 source/cy/svx/source/stbctrls.po   |   10 
 source/cy/svx/uiconfig/ui.po   |   10 
 source/da/cui/uiconfig/ui.po   |8 
 source/da/helpcontent2/source/text/scalc/01.po |   12 
 source/da/sfx2/source/dialog.po|   14 
 source/da/sfx2/uiconfig/ui.po  |   17 
 source/da/svtools/source/dialogs.po|   10 
 source/da/svtools/source/java.po   |   12 
 source/da/svtools/source/misc.po   |   10 
 source/da/svx/source/stbctrls.po   |8 
 source/da/svx/uiconfig/ui.po   |   12 
 source/de/editeng/source/items.po  |   10 
 source/de/formula/source/core/resource.po  |8 
 source/de/helpcontent2/source/auxiliary.po |6 
 source/de/helpcontent2/source/text/sbasic/shared/01.po |   10 
 source/de/helpcontent2/source/text/scalc.po|6 
 source/de/helpcontent2/source/text/scalc/00.po |6 
 source/de/helpcontent2/source/text/scalc/01.po |  100 +-
 source/de/helpcontent2/source/text/scalc/guide.po  |   34 
 source/de/helpcontent2/source/text/schart/01.po|6 
 source/de/helpcontent2/source/text/shared/00.po|   10 
 source/de/helpcontent2/source/text/shared/01.po|   12 
 source/de/helpcontent2/source/text/shared/explorer/database.po |8 
 source/de/helpcontent2/source/text/shared/guide.po |   16 
 

[Libreoffice-commits] core.git: Changes to 'refs/tags/cp-5.3-12'

2017-05-16 Thread Jan Holesovsky
Tag 'cp-5.3-12' created by Andras Timar  at 
2017-05-16 22:13 +

cp-5.3-12

Changes since cp-5.3-11-77:
---
 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/cp-5.3-12'

2017-05-16 Thread Olivier R
Tag 'cp-5.3-12' created by Andras Timar  at 
2017-05-16 22:13 +

cp-5.3-12

Changes since cp-5.3-10:
Olivier R (1):
  tdf#107558 French spelling dictionary (6.0.3) and thesaurus

---
 fr_FR/README_fr.txt   |4 
 fr_FR/description.xml |2 
 fr_FR/fr.aff  |17751 ++--
 fr_FR/fr.dic  |155369 
+-
 fr_FR/package-description.txt |2 
 fr_FR/thes_fr.dat |  206 
 6 files changed, 88495 insertions(+), 84839 deletions(-)
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107901] Format Cells dialog overwrites user selection

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107901

--- Comment #1 from Kevin  ---
Created attachment 133365
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133365=edit
spreadsheet for report 107901

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


[Libreoffice-bugs] [Bug 107882] Basic editor cracking Cyrillic symbols is BASIC scipt

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107882

--- Comment #2 from dimahetman  ---
at the same in:
version: 5.3.3.2
Зборка: 1:5.3.3~rc2-0ubuntu0.16.04.1~lo0
CPU Threads: 2; OS Version: Linux 4.4; UI Render: default; VCL: gtk2; Layout
Engine: new; 
Locale: be-BY (be_BY.UTF-8); Calc: group

I try xlsm format result at the same.

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


[Libreoffice-bugs] [Bug 107901] New: Format Cells dialog overwrites user selection

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107901

Bug ID: 107901
   Summary: Format Cells dialog overwrites user selection
   Product: LibreOffice
   Version: 5.3.2.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: timbacont...@gmail.com

Description:
Calc reverses one border setting after the user edits another.

Steps to Reproduce:
1. open the attached spreadsheet
2. select all the cells that have contents (rows 2-10 in columns B and C)
3. right-click and choose Format Cells (note: unlike earlier versions, if this
is the first time you've opened this dialog since launching the app, it will
take between 30 and 60 seconds to load)
4. go to the borders tab
5. click on the right-most vertical border 3 times, until no border is shown 
6. the "remove border" checkbox is now active - check it
7. now move on to the center vertical border and click that one three times,
until no border is shown (the border setting selected in step 5 now
auto-reverts to its previous setting)

Actual Results:  
the border setting selected in step 5 now auto-reverts to its previous setting

Expected Results:
The user should be able to make changes to the border settings in any order
without being forced by Calc to only work in a specific (and unexplained)
order. This is a cousin to the earlier report where Calc changes the font
properties of characters that have not been selected by the user.




Reproducible: Always

User Profile Reset: No

Additional Info:
As with many of the other bugs I've reported, Calc takes it upon itself to
change what the user has not asked it to change. Calc is like a
passive-aggressive person going out of its way to make your life more
difficult. Excel is worse, but seriously, the design team needs to have people
do test projects involving formatting and see how painful it is to use.
Spreadsheets are about more than math. If Word/Writer weren't so horrible when
it comes to formatting tables, we wouldn't have to use spreadsheets for
graphics, but they are, and we do and both programs are letting us down.


User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/58.0.3029.96 Safari/537.36

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


[Libreoffice-bugs] [Bug 107787] Gradients steps don't save

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107787

Regina Henschel  changed:

   What|Removed |Added

   Keywords||needsUXEval
 Status|REOPENED|NEW
  Component|Writer  |UI

--- Comment #5 from Regina Henschel  ---
The old UI had a distinction between creating a gradient and applying a
gradient. The tab with creating a gradient had no item to set the steps. Only
the tab for applying a gradient had a field to set the steps. There it was
clear to the user, that the gradient itself is not able to carry the
information "steps".

In the new UI this steps-field is mixed with the gradient defining fields. That
leads the user to the mistaken belief, that the steps belong to the gradient
definition.

So UX needs to thing about a UI, which prevents this mistaken belief.

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


[Libreoffice-bugs] [Bug 107892] MAX.SI function doesn't work with negative values

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107892

Julien Nabet  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |

--- Comment #6 from Julien Nabet  ---
I submitted a patch for review on master:
https://gerrit.libreoffice.org/#/c/37693/

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


[Libreoffice-bugs] [Bug 107887] Crash in: ntdll.dll

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107887

--- Comment #2 from m.a.riosv  ---
Hi @Xisco,
and I can't reproduce it, but as it happened I reported it.

This prerelease version seems not to be more accurate.

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


[Libreoffice-bugs] [Bug 91384] FILEOPEN: DOCX - ActiveX checkbox and radio button form controls appear as pictures

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91384

Yousuf Philips (jay)  changed:

   What|Removed |Added

Version|3.3.0 release   |Inherited From OOo

--- Comment #13 from Yousuf Philips (jay)  ---
In order for this to be resolved, LO would have to be able read/parse the
Microsoft Office Forms Binary Format, which is used by activeX form controls.

https://msdn.microsoft.com/en-us/library/office/cc313125(v=office.12).aspx
http://interoperability.blob.core.windows.net/files/MS-OFORMS/[MS-OFORMS].pdf

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


[Libreoffice-bugs] [Bug 107900] New: Options/language settings/language/ User interface always displays same language

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107900

Bug ID: 107900
   Summary: Options/language settings/language/User interface
always displays same language
   Product: LibreOffice
   Version: 5.4.0.0.alpha1+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: serval2...@yahoo.fr

Description:
On pc Debian x6-64 with master sources updated today, I've got always the same
language (czech) in User interface whereas when I choose a language, LO uses
it.
So only display issue in options.

Steps to Reproduce:
1. Open LO
2. Tools/Options/Language Settings/Language
3. See User interface
4. Change language + restart LO
5. Step 2 again


Actual Results:  
Same user language

Expected Results:
right user language which really corresponds.


Reproducible: Always

User Profile Reset: No

Additional Info:
This bug is very new since I hadn't this in the last days.


User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101
Firefox/45.0

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


[Libreoffice-bugs] [Bug 107881] Can't save XML after editing

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107881

lostprophet  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from lostprophet  ---
I haven't tried Microsoft Office 2010, I'm using Microsoft Office 2016, and
there's no problem with that, so editing and saving works there. However when
trying the same with LibreOffice, it fails to save.

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


[Libreoffice-bugs] [Bug 107830] [META] DOCX Paragraph related issues

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107830

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|51340   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=51340
[Bug 51340] FILEOPEN: PPTX - Master-slide style-level line spacing not applied
to line that has a different paragraph-level above paragraph spacing
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107899] [META] PPTX paragraph related issues

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107899

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||51340


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=51340
[Bug 51340] FILEOPEN: PPTX - Master-slide style-level line spacing not applied
to line that has a different paragraph-level above paragraph spacing
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 51340] FILEOPEN: PPTX - Master-slide style-level line spacing not applied to line that has a different paragraph-level above paragraph spacing

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51340

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|107830  |107899


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107830
[Bug 107830] [META] DOCX Paragraph related issues
https://bugs.documentfoundation.org/show_bug.cgi?id=107899
[Bug 107899] [META] PPTX paragraph related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107899] [META] PPTX paragraph related issues

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107899

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 107831] [META] Paragraph bugs and enhancements

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107831

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||107899


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107585] [META] Microsoft Office binary, text and xml file formats

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107585

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||107899


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107899] New: [META] PPTX paragraph related issues

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107899

Bug ID: 107899
   Summary: [META] PPTX paragraph related issues
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 107585, 107831


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107585
[Bug 107585] [META] Microsoft Office binary, text and xml file formats
https://bugs.documentfoundation.org/show_bug.cgi?id=107831
[Bug 107831] [META] Paragraph bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2017-05-16 Thread Caolán McNamara
 dbaccess/source/ui/inc/imageprovider.hxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 32dc38e319b1d87ba6e5828b6ead32c568c81eff
Author: Caolán McNamara 
Date:   Tue May 16 11:38:27 2017 +0100

fix documentation now

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

diff --git a/dbaccess/source/ui/inc/imageprovider.hxx 
b/dbaccess/source/ui/inc/imageprovider.hxx
index f680c3ada06a..d9e7b53e55b3 100644
--- a/dbaccess/source/ui/inc/imageprovider.hxx
+++ b/dbaccess/source/ui/inc/imageprovider.hxx
@@ -103,8 +103,7 @@ namespace dbaui
 the type of the object. Must be one of the 
css.sdb.application.DatabaseObject
 constants.
 @return
-the resource ID image to be used for the object type. Must be 
fed into a
-ModuleRes instance to actually load the image.
+the resource image name to be used for the object type.
 */
 static OUString getDefaultImageResourceID(sal_Int32 
_nDatabaseObjectType);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107298] Snap option "When creating or moving objects" is mis-labeled in Draw

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107298

--- Comment #23 from Commit Notification 
 ---
Ilmari Lauhakangas committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/help/commit/?id=c18afa518a3f076885d2bd22520c6c5c4d4caf9a

tdf#107298 Snap Position renamed to Constrain Objects

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


[Libreoffice-commits] core.git: helpcontent2

2017-05-16 Thread Ilmari Lauhakangas
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit eddb61e8f0a8edc26f0ad0fb9a14621a611020ec
Author: Ilmari Lauhakangas 
Date:   Fri May 5 16:49:59 2017 +0300

Updated core
Project: help  c18afa518a3f076885d2bd22520c6c5c4d4caf9a

tdf#107298 Snap Position renamed to Constrain Objects

Change-Id: I28f0809eedc6d23cf52a262a805e680bf3c39c1b
Reviewed-on: https://gerrit.libreoffice.org/37293
Reviewed-by: Gabor Kelemen 
Tested-by: Gabor Kelemen 

diff --git a/helpcontent2 b/helpcontent2
index 1d2c1291f700..c18afa518a3f 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 1d2c1291f700f729c28a209d2422a8d2f926e347
+Subproject commit c18afa518a3f076885d2bd22520c6c5c4d4caf9a
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-05-16 Thread Ilmari Lauhakangas
 source/text/shared/optionen/01070300.xhp |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit c18afa518a3f076885d2bd22520c6c5c4d4caf9a
Author: Ilmari Lauhakangas 
Date:   Fri May 5 16:49:59 2017 +0300

tdf#107298 Snap Position renamed to Constrain Objects

Change-Id: I28f0809eedc6d23cf52a262a805e680bf3c39c1b
Reviewed-on: https://gerrit.libreoffice.org/37293
Reviewed-by: Gabor Kelemen 
Tested-by: Gabor Kelemen 

diff --git a/source/text/shared/optionen/01070300.xhp 
b/source/text/shared/optionen/01070300.xhp
index ecd6c0810..07ab047de 100644
--- a/source/text/shared/optionen/01070300.xhp
+++ b/source/text/shared/optionen/01070300.xhp
@@ -39,7 +39,7 @@
  
   
   
-  If you 
have activated the snap grid but wish to move or create individual objects 
without snap positions, keep the Shift key pressed to deactivate this function 
for as long as needed.
+  If you 
have activated the snap grid but wish to move or create individual objects 
without constraining them, keep the Shift key pressed to deactivate this 
function for as long as needed.
   
   Snap
 
@@ -81,9 +81,9 @@
 Snap to 
Object Points
 Snap to Object 
Points icon in the Options 
bar.
 
-Snap range
+Snap 
range
   Defines the snap distance between the 
mouse pointer and the object contour. $[officename] Impress snaps to a snap 
point if the mouse pointer is nearer than the distance selected in the 
Snap range control.
-  Snap position
+  Constrain Objects
 
 When creating or moving objects
   Specifies that graphic objects are restricted 
vertically, horizontally or diagonally (45°) when creating or moving 
them. You can temporarily deactivate this setting by pressing the Shift 
key.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-05-16 Thread Laurent Balland-Poirier
 source/text/sbasic/guide/sample_code.xhp |2 +-
 source/text/sbasic/shared/03030107.xhp   |2 --
 source/text/sbasic/shared/03030203.xhp   |7 +++
 source/text/sbasic/shared/03030302.xhp   |7 +++
 source/text/sbasic/shared/03030303.xhp   |6 ++
 source/text/sbasic/shared/03050100.xhp   |6 ++
 source/text/sbasic/shared/03050200.xhp   |2 +-
 source/text/sbasic/shared/03080201.xhp   |6 ++
 source/text/sbasic/shared/03090203.xhp   |3 +--
 source/text/sbasic/shared/03090404.xhp   |4 ++--
 source/text/sbasic/shared/03090408.xhp   |6 ++
 source/text/sbasic/shared/03102450.xhp   |3 +--
 source/text/sbasic/shared/03103200.xhp   |6 ++
 source/text/sbasic/shared/03103300.xhp   |6 ++
 source/text/sbasic/shared/03120201.xhp   |6 ++
 source/text/sbasic/shared/03130100.xhp   |2 +-
 source/text/sbasic/shared/03130700.xhp   |6 ++
 source/text/sbasic/shared/03131000.xhp   |6 ++
 source/text/sbasic/shared/03131300.xhp   |6 ++
 source/text/sbasic/shared/03131400.xhp   |6 ++
 source/text/sbasic/shared/03132100.xhp   |2 +-
 source/text/sbasic/shared/03132200.xhp   |6 ++
 22 files changed, 38 insertions(+), 68 deletions(-)

New commits:
commit 1d2c1291f700f729c28a209d2422a8d2f926e347
Author: Laurent Balland-Poirier 
Date:   Mon Jan 30 23:19:12 2017 +0100

Basic: add localize=false for some bascode lines

Change-Id: I78884c0421ef8ad935ca7214b9116fda29d2797f
update: remove duplicate empty line at end of files
Reviewed-on: https://gerrit.libreoffice.org/33766
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git a/source/text/sbasic/guide/sample_code.xhp 
b/source/text/sbasic/guide/sample_code.xhp
index a5141068d..334d88cd0 100644
--- a/source/text/sbasic/guide/sample_code.xhp
+++ b/source/text/sbasic/guide/sample_code.xhp
@@ -94,7 +94,7 @@
 MsgBox oCMD1.Dbg_Properties
 REM execute 
dialog
 oDialog1.Execute()
-End 
Sub
+End Sub
 
 Add an 
Entry to a ListBox
 
diff --git a/source/text/sbasic/shared/03030107.xhp 
b/source/text/sbasic/shared/03030107.xhp
index 31b5db488..4b50b0f65 100644
--- a/source/text/sbasic/shared/03030107.xhp
+++ b/source/text/sbasic/shared/03030107.xhp
@@ -27,13 +27,11 @@
 
 
 
-
 
 
   CdateToIso function
 
 
-
 CDateToIso Function [Runtime]
 Returns the 
date in ISO format without separators (MMDD) from a serial date number that 
is generated by the DateSerial or the DateValue or the CDateFromIso 
function.
 The year part 
consists of at least four digits, with leading zeros if the absolute value is 
less than 1000, it can be negative with a leading minus sign if the date passed 
denotes a year before the common era (BCE) and it can have more than four 
digits if the absolute value is greater than . The formatted string 
returned can be in the range "-327680101" to "327671231".
diff --git a/source/text/sbasic/shared/03030203.xhp 
b/source/text/sbasic/shared/03030203.xhp
index 07bdde963..162ace2eb 100644
--- a/source/text/sbasic/shared/03030203.xhp
+++ b/source/text/sbasic/shared/03030203.xhp
@@ -27,20 +27,18 @@
 
 
 
-
 
 
   Now function
 
 
-
 Now 
Function [Runtime]
 Returns the 
current system date and time as a Date value.
 
 
 Syntax:
 
-Now
+Now
 
 
 Return 
value:
@@ -54,4 +52,5 @@
 
 
 
-
\ No newline at end of file
+
+
diff --git a/source/text/sbasic/shared/03030302.xhp 
b/source/text/sbasic/shared/03030302.xhp
index 410d2acff..92f053cac 100644
--- a/source/text/sbasic/shared/03030302.xhp
+++ b/source/text/sbasic/shared/03030302.xhp
@@ -27,20 +27,18 @@
 
 
 
-
 
 
   Time statement
 
 
-
 Time Statement 
[Runtime]
 This function 
returns the current system time as a string in the format 
"HH:MM:SS".
 
 
 Syntax:
 
-Time
+Time
 
 
 Parameters:
@@ -54,4 +52,5 @@
 
 
 
-
\ No newline at end of file
+
+
diff --git a/source/text/sbasic/shared/03030303.xhp 
b/source/text/sbasic/shared/03030303.xhp
index bf440cf91..e50ce722a 100644
--- a/source/text/sbasic/shared/03030303.xhp
+++ b/source/text/sbasic/shared/03030303.xhp
@@ -27,13 +27,11 @@
 
 
 
-
 
 
   Timer function
 
 
-
 Timer 
Function [Runtime]
 Returns a 
value that specifies the number of seconds that have elapsed since 
midnight.
 
@@ -41,7 +39,7 @@
 
 Syntax:
 
-Timer
+Timer
 
 
 Return 
value:
@@ -62,4 +60,4 @@
 
 
 
-
\ No newline at end of file
+
diff --git a/source/text/sbasic/shared/03050100.xhp 
b/source/text/sbasic/shared/03050100.xhp
index 7ae49da66..19677a7b4 100644
--- a/source/text/sbasic/shared/03050100.xhp
+++ b/source/text/sbasic/shared/03050100.xhp
@@ -27,20 +27,18 @@
 
 
 
-
 
 
   Erl function
 
 
-
 Erl 
Function [Runtime]
 Returns the 
line number where an error occurred during program execution.
 
 
 Syntax:
 
-Erl
+Erl
 
 
 Return 
value:
@@ -67,4 +65,4 @@
 
 
 
-
\ No newline at end of file
+
diff --git 

[Libreoffice-commits] core.git: helpcontent2

2017-05-16 Thread Laurent Balland-Poirier
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 96e145476b8ef1f0cb5299c470df2493ae689f60
Author: Laurent Balland-Poirier 
Date:   Mon Jan 30 23:19:12 2017 +0100

Updated core
Project: help  1d2c1291f700f729c28a209d2422a8d2f926e347

Basic: add localize=false for some bascode lines

Change-Id: I78884c0421ef8ad935ca7214b9116fda29d2797f
update: remove duplicate empty line at end of files
Reviewed-on: https://gerrit.libreoffice.org/33766
Reviewed-by: Olivier Hallot 
Tested-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index c1b5c626539f..1d2c1291f700 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit c1b5c626539f3893c07c11380c5cfe94bc5f8d36
+Subproject commit 1d2c1291f700f729c28a209d2422a8d2f926e347
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-05-16 Thread Olivier Hallot
 source/text/sbasic/shared/03020409.xhp |   28 ++--
 source/text/sbasic/shared/03020414.xhp |   12 ++--
 2 files changed, 20 insertions(+), 20 deletions(-)

New commits:
commit c1b5c626539f3893c07c11380c5cfe94bc5f8d36
Author: Olivier Hallot 
Date:   Tue May 16 16:36:56 2017 -0300

Mute l10n for numbers

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

diff --git a/source/text/sbasic/shared/03020409.xhp 
b/source/text/sbasic/shared/03020409.xhp
index 8c1196fd9..1c0e167ad 100644
--- a/source/text/sbasic/shared/03020409.xhp
+++ b/source/text/sbasic/shared/03020409.xhp
@@ -69,10 +69,10 @@
   
   
 
-  ATTR_NORMAL
+  ATTR_NORMAL
 
 
-  0
+  0
 
 
Normal 
files.
@@ -80,10 +80,10 @@
   
   
 
-  ATTR_READONLY
+  ATTR_READONLY
 
 
-  1
+  1
 
 

Read-only files.
@@ -91,10 +91,10 @@
   
   
 
-  ATTR_HIDDEN
+  ATTR_HIDDEN
 
 
-  2
+  2
 
 
Hidden file
@@ -102,10 +102,10 @@
   
   
 
-  ATTR_SYSTEM
+  ATTR_SYSTEM
 
 
-  4
+  4
 
 
System file
@@ -113,10 +113,10 @@
   
   
 
-  ATTR_VOLUME
+  ATTR_VOLUME
 
 
-  8
+  8
 
 
Returns 
the name of the volume
@@ -124,10 +124,10 @@
   
   
 
-  ATTR_DIRECTORY
+  ATTR_DIRECTORY
 
 
-  16
+  16
 
 
Returns 
the name of the directory only.
@@ -135,10 +135,10 @@
   
   
 
-  ATTR_ARCHIVE
+  ATTR_ARCHIVE
 
 
-  32
+  32
 
 
File 
was changed since last backup (Archive bit).
diff --git a/source/text/sbasic/shared/03020414.xhp 
b/source/text/sbasic/shared/03020414.xhp
index fbd727499..13b3a701b 100644
--- a/source/text/sbasic/shared/03020414.xhp
+++ b/source/text/sbasic/shared/03020414.xhp
@@ -62,10 +62,10 @@
   
   
 
-  ATTR_NORMAL
+  ATTR_NORMAL
 
 
-  0
+  0
 
 
Normal 
files.
@@ -73,10 +73,10 @@
   
   
 
-  ATTR_READONLY
+  ATTR_READONLY
 
 
-  1
+  1
 
 

Read-only files.
@@ -84,10 +84,10 @@
   
   
 
-  ATTR_HIDDEN
+  ATTR_HIDDEN
 
 
-  2
+  2
 
 
Hidden file
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2017-05-16 Thread Olivier Hallot
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 72bffbc475d6d93ee2999ae0a4bec334e1be059e
Author: Olivier Hallot 
Date:   Tue May 16 16:36:56 2017 -0300

Updated core
Project: help  c1b5c626539f3893c07c11380c5cfe94bc5f8d36

Mute l10n for numbers

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

diff --git a/helpcontent2 b/helpcontent2
index f930a0c40fa6..c1b5c626539f 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit f930a0c40fa65c778b9e6b2fa75d7581bb3f82dc
+Subproject commit c1b5c626539f3893c07c11380c5cfe94bc5f8d36
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107822] EDITING: Pattern created with pattern editor isn' t applied when pressing apply

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107822

Katarina Behrens (CIB)  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |katarina.behr...@cib.de
   |desktop.org |

--- Comment #6 from Katarina Behrens (CIB)  ---
*sigh* it'll take ages to find and fix all those cases

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


[Libreoffice-commits] core.git: include/touch include/vcl sc/source sw/source vcl/inc vcl/source

2017-05-16 Thread Caolán McNamara
 include/touch/touch.h|   19 ---
 include/vcl/commandevent.hxx |3 --
 sc/source/ui/view/tabview.cxx|   17 -
 sw/source/uibase/uiview/viewport.cxx |   43 ---
 vcl/inc/salwtype.hxx |2 -
 vcl/source/window/winproc.cxx|   40 +++-
 6 files changed, 10 insertions(+), 114 deletions(-)

New commits:
commit f0eec7572dfa630f903e91ac44a41f3503112846
Author: Caolán McNamara 
Date:   Tue May 16 10:42:49 2017 +0100

ExternalZoom and ExternalScroll are unused

which leads to CommandWheelMode::ZOOM_SCALE becoming unused

and so touch/touch.h is unnecessary

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

diff --git a/include/touch/touch.h b/include/touch/touch.h
deleted file mode 100644
index e20fe3fe5a3e..
--- a/include/touch/touch.h
+++ /dev/null
@@ -1,19 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-#ifndef INCLUDED_TOUCH_TOUCH_H
-#define INCLUDED_TOUCH_TOUCH_H
-
-#define MOBILE_MAX_ZOOM_IN 600
-#define MOBILE_MAX_ZOOM_OUT 80
-#define MOBILE_ZOOM_SCALE_MULTIPLIER 1
-
-#endif // INCLUDED_TOUCH_TOUCH_H
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/vcl/commandevent.hxx b/include/vcl/commandevent.hxx
index 68ea0c5184d7..778348b3d1a3 100644
--- a/include/vcl/commandevent.hxx
+++ b/include/vcl/commandevent.hxx
@@ -129,8 +129,7 @@ enum class CommandWheelMode
 NONE  = 0,
 SCROLL= 1,
 ZOOM  = 2,
-ZOOM_SCALE= 3,
-DATAZOOM  = 4
+DATAZOOM  = 3
 };
 
 // Magic value used in mnLines field in CommandWheelData
diff --git a/sc/source/ui/view/tabview.cxx b/sc/source/ui/view/tabview.cxx
index 7610296acd76..2510be1f891a 100644
--- a/sc/source/ui/view/tabview.cxx
+++ b/sc/source/ui/view/tabview.cxx
@@ -968,8 +968,7 @@ bool ScTabView::ScrollCommand( const CommandEvent& rCEvt, 
ScSplitPos ePos )
 
 bool bDone = false;
 const CommandWheelData* pData = rCEvt.GetWheelData();
-if ( pData && (pData->GetMode() == CommandWheelMode::ZOOM ||
-   pData->GetMode() == CommandWheelMode::ZOOM_SCALE ) )
+if (pData && pData->GetMode() == CommandWheelMode::ZOOM)
 {
 if ( !aViewData.GetViewShell()->GetViewFrame()->GetFrame().IsInPlace() 
)
 {
@@ -979,16 +978,10 @@ bool ScTabView::ScrollCommand( const CommandEvent& rCEvt, 
ScSplitPos ePos )
 const Fraction& rOldY = aViewData.GetZoomY();
 long nOld = (long)(( rOldY.GetNumerator() * 100 ) / 
rOldY.GetDenominator());
 long nNew;
-if ( pData->GetMode() == CommandWheelMode::ZOOM_SCALE )
-{
-nNew = 100 * (long) ((nOld / 100.0) * (pData->GetDelta() / 
100.0));
-} else
-{
-if ( pData->GetDelta() < 0 )
-nNew = std::max( (long) MINZOOM, 
basegfx::zoomtools::zoomOut( nOld ));
-else
-nNew = std::min( (long) MAXZOOM, 
basegfx::zoomtools::zoomIn( nOld ));
-}
+if ( pData->GetDelta() < 0 )
+nNew = std::max( (long) MINZOOM, basegfx::zoomtools::zoomOut( 
nOld ));
+else
+nNew = std::min( (long) MAXZOOM, basegfx::zoomtools::zoomIn( 
nOld ));
 if ( nNew != nOld )
 {
 // scroll wheel doesn't set the AppOptions default
diff --git a/sw/source/uibase/uiview/viewport.cxx 
b/sw/source/uibase/uiview/viewport.cxx
index e56fcd6c330c..c909c1dd8835 100644
--- a/sw/source/uibase/uiview/viewport.cxx
+++ b/sw/source/uibase/uiview/viewport.cxx
@@ -41,7 +41,6 @@
 #include 
 #include 
 #include 
-#include 
 
 #include 
 
@@ -1217,48 +1216,6 @@ bool SwView::HandleWheelCommands( const CommandEvent& 
rCEvt )
 SetZoom( SvxZoomType::PERCENT, nFact );
 bOk = true;
 }
-else if (pWData && CommandWheelMode::ZOOM_SCALE == pWData->GetMode())
-{
-// mobile touch zoom (pinch) section
-// remember the center location to reach in logic
-
-Size winSize = GetViewFrame()->GetWindow().GetOutputSizePixel();
-Point centerInPixels(winSize.getWidth() / 2, winSize.getHeight() / 2);
-const Point & preZoomTargetCenterInLogic = 
GetEditWin().PixelToLogic(centerInPixels);
-
-double scale = double(pWData->GetDelta()) / 

[Libreoffice-bugs] [Bug 101756] [META] Table styles bugs and enhancements

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101756
Bug 101756 depends on bug 107854, which changed state.

Bug 107854 Summary: Customize window: Styles > Table Design Styles category in 
Add Commands empty
https://bugs.documentfoundation.org/show_bug.cgi?id=107854

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 103238] [META] Customize dialog bugs and enhancements

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103238
Bug 103238 depends on bug 107854, which changed state.

Bug 107854 Summary: Customize window: Styles > Table Design Styles category in 
Add Commands empty
https://bugs.documentfoundation.org/show_bug.cgi?id=107854

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 107854] Customize window: Styles > Table Design Styles category in Add Commands empty

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107854

Maxim Monastirsky  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 103238] [META] Customize dialog bugs and enhancements

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103238
Bug 103238 depends on bug 107853, which changed state.

Bug 107853 Summary: Customize window: Styles > Cell category in Add Commands 
empty
https://bugs.documentfoundation.org/show_bug.cgi?id=107853

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 107553] [META] Writer table styles bugs and enhancements

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107553
Bug 107553 depends on bug 107853, which changed state.

Bug 107853 Summary: Customize window: Styles > Cell category in Add Commands 
empty
https://bugs.documentfoundation.org/show_bug.cgi?id=107853

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 107853] Customize window: Styles > Cell category in Add Commands empty

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107853

Maxim Monastirsky  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |momonas...@gmail.com
   |desktop.org |

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


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

2017-05-16 Thread Maxim Monastirsky
 cui/source/customize/acccfg.cxx  |2 +-
 cui/source/customize/cfgutil.cxx |   19 +++
 cui/source/inc/cfgutil.hxx   |4 ++--
 3 files changed, 14 insertions(+), 11 deletions(-)

New commits:
commit 4e52299a6aff1386151223a99e7ed3a49496d967
Author: Maxim Monastirsky 
Date:   Tue May 16 02:22:30 2017 +0300

tdf#107853 tdf#107854 Hide useless style families

Change-Id: I9918cbbf6b030e0f1f0a5dee153bedc8a53f91d8
Reviewed-on: https://gerrit.libreoffice.org/37688
Tested-by: Jenkins 
Reviewed-by: Maxim Monastirsky 

diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx
index dfaf2004d173..f5d90803fc58 100644
--- a/cui/source/customize/acccfg.cxx
+++ b/cui/source/customize/acccfg.cxx
@@ -924,7 +924,7 @@ void SfxAcceleratorConfigPage::Init(const 
uno::ReferencegetModel();
 
-m_aStylesInfo.setModel(xModel);
+m_aStylesInfo.init(m_sModuleLongName, xModel);
 m_pFunctionBox->SetStylesInfo(_aStylesInfo);
 m_pGroupLBox->SetStylesInfo(_aStylesInfo);
 m_bStylesInfoInitialized = true;
diff --git a/cui/source/customize/cfgutil.cxx b/cui/source/customize/cfgutil.cxx
index ad171a755354..408c74331950 100644
--- a/cui/source/customize/cfgutil.cxx
+++ b/cui/source/customize/cfgutil.cxx
@@ -76,8 +76,9 @@ using namespace ::com::sun::star::document;
 SfxStylesInfo_Impl::SfxStylesInfo_Impl()
 {}
 
-void SfxStylesInfo_Impl::setModel(const css::uno::Reference< 
css::frame::XModel >& xModel)
+void SfxStylesInfo_Impl::init(const OUString& rModuleName, const 
css::uno::Reference< css::frame::XModel >& xModel)
 {
+m_aModuleName = rModuleName;
 m_xDoc = xModel;
 }
 
@@ -171,12 +172,14 @@ std::vector< SfxStyleInfo_Impl > 
SfxStylesInfo_Impl::getStyleFamilies()
 css::uno::Reference< css::container::XNameAccess > xCont = 
xModel->getStyleFamilies();
 css::uno::Sequence< OUString > lFamilyNames = xCont->getElementNames();
 std::vector< SfxStyleInfo_Impl > lFamilies;
-sal_Int32 c = lFamilyNames.getLength();
-sal_Int32 i = 0;
-for(i=0; iShow();
 
 get(m_pCategories, "categories");
+const OUString 
aModuleName(vcl::CommandInfoProvider::GetModuleIdentifier(xFrame));
 m_pCategories->SetFunctionListBox(m_pCommands);
-m_pCategories->Init(comphelper::getProcessComponentContext(), xFrame,
-vcl::CommandInfoProvider::GetModuleIdentifier(xFrame), 
bShowSlots);
+m_pCategories->Init(comphelper::getProcessComponentContext(), xFrame, 
aModuleName, bShowSlots);
 
 m_pCategories->SetSelectHdl(
 LINK( this, SvxScriptSelectorDialog, SelectHdl ) );
@@ -1211,7 +1214,7 @@ SvxScriptSelectorDialog::SvxScriptSelectorDialog(
 if (xController.is())
 xModel = xController->getModel();
 
-m_aStylesInfo.setModel(xModel);
+m_aStylesInfo.init(aModuleName, xModel);
 m_pCommands->SetStylesInfo(_aStylesInfo);
 m_pCategories->SetStylesInfo(_aStylesInfo);
 
diff --git a/cui/source/inc/cfgutil.hxx b/cui/source/inc/cfgutil.hxx
index d053555bba86..acc0020daa1f 100644
--- a/cui/source/inc/cfgutil.hxx
+++ b/cui/source/inc/cfgutil.hxx
@@ -61,13 +61,13 @@ struct SfxStyleInfo_Impl
 struct SfxStylesInfo_Impl
 {
 private:
-
+OUString m_aModuleName;
 css::uno::Reference< css::frame::XModel > m_xDoc;
 
 public:
 
 SfxStylesInfo_Impl();
-void setModel(const css::uno::Reference< css::frame::XModel >& xModel);
+void init(const OUString& rModuleName, const css::uno::Reference< 
css::frame::XModel >& xModel);
 
 static bool parseStyleCommand(SfxStyleInfo_Impl& aStyle);
 void getLabel4Style(SfxStyleInfo_Impl& aStyle);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107857] Incorrect Formatting Logic

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107857

Regina Henschel  changed:

   What|Removed |Added

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

--- Comment #4 from Regina Henschel  ---
I think it is a bug, because it leaves over an empty span element. If it was an
intended behavior, the empty span element would have been removed.

-- 
You are receiving this mail because:
You 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 107857] Incorrect Formatting Logic

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107857

Regina Henschel  changed:

   What|Removed |Added

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

--- Comment #4 from Regina Henschel  ---
I think it is a bug, because it leaves over an empty span element. If it was an
intended behavior, the empty span element would have been removed.

-- 
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 107898] New: Printing sideways

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107898

Bug ID: 107898
   Summary: Printing sideways
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: adam.fin...@yahoo.com

Description:
I have recently had an issue with my pages printing sideways. However when I
goto print preview it shows that its in the portrait orientation. However when
I goto print it, it goes into landscape and cuts off the bottom section of my
work. I have checked my settings on printer and do not see an option anywhere
to change orientation to Portrait/ landscape. I do not thinks its the
orientation that is messed up because its printing as if it were portrait
orientation but only the left side of the paper. Please help. I need these
papers printed today for work.

Steps to Reproduce:
1. type 2 pages
2. print
3.

Actual Results:  
I just type using CALC and when I goto print it prints on the left side of the
paper as if paper was inside printer sideways. It cuts off half the page.

Expected Results:
I expected it to print like it usually does but it doesnt. 


Reproducible: Always

User Profile Reset: Yes

Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Mac OS X (All)
OS is 64bit: no
Builds ID: LibreOffice 5.2.3.5


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4)
AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.1 Safari/603.1.30

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


[Libreoffice-bugs] [Bug 106362] Android: Option to clean the cache after quit

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106362

--- Comment #3 from Volga  ---
Firefox have already implemented it on Android, which can be seen as model.

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


[Libreoffice-bugs] [Bug 104655] FILEOPEN ODS: Memory usage for opening file has increased with factor 5

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104655

--- Comment #4 from Telesto  ---
Still a repro with:
Version: 5.4.0.0.alpha1+
Build ID: 8c0be54a7da6262dffe04357121814dd22b5d7fe
CPU threads: 4; OS: Windows 6.2; UI render: default; 
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2017-05-15_01:35:45
Locale: nl-NL (nl_NL); Calc: CL

Going up to 1,4 GB quite often follow by a crash. They issue could be x86
only..

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


[Libreoffice-bugs] [Bug 107739] [META] Field bugs and enhancements

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107739

--- Comment #3 from Yousuf Philips (jay)  ---
(In reply to Dieter Praas from comment #2)
> Yousuf: There are a lot of bugs regarding to cross-references. Do you think
> we should collect them in this meta bug or shall I create a new meta bug?

Dieter: I would create a cross-references meta bug and set this bug report
number in its 'Blocks' field.

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


[Libreoffice-bugs] [Bug 107892] MAX.SI function doesn't work with negative values

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107892

Julien Nabet  changed:

   What|Removed |Added

Version|5.3.2.2 release |5.2.6.2 release

--- Comment #5 from Julien Nabet  ---
Version field must correspond to the earliest affected version.

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

2017-05-16 Thread Julien Nabet
 basctl/source/basicide/baside2.cxx  |2 --
 basctl/source/basicide/baside2b.cxx |1 -
 include/vcl/textview.hxx|2 --
 vcl/source/edit/textview.cxx|   10 --
 4 files changed, 15 deletions(-)

New commits:
commit 7865aa4c9e08e5dccf3627a68daf439a26e1bd4d
Author: Julien Nabet 
Date:   Tue May 16 18:43:19 2017 +0200

Remove unused mpVirtDev (vcl/textview)

Unused since commit 72edb6967f245f0c99c6a61e0ce8d0a245600cba
"loplugin:unusedmethods in vcl"

+ remove useless EraseVirtualDevice

Change-Id: I1b932bb49e9f84e3ddb5c3ab69b3d1b3131233e2
Reviewed-on: https://gerrit.libreoffice.org/37685
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 

diff --git a/basctl/source/basicide/baside2.cxx 
b/basctl/source/basicide/baside2.cxx
index 7a03c14aa61a..d24597ed819a 100644
--- a/basctl/source/basicide/baside2.cxx
+++ b/basctl/source/basicide/baside2.cxx
@@ -1195,8 +1195,6 @@ void ModulWindow::Activating ()
 void ModulWindow::Deactivating()
 {
 Hide();
-if ( GetEditView() )
-GetEditView()->EraseVirtualDevice();
 }
 
 sal_uInt16 ModulWindow::StartSearchAndReplace( const SvxSearchItem& 
rSearchItem, bool bFromStart )
diff --git a/basctl/source/basicide/baside2b.cxx 
b/basctl/source/basicide/baside2b.cxx
index afc85ea00b70..8b9137db9262 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -1004,7 +1004,6 @@ void EditorWindow::CreateEditEngine()
 
 pProgress.reset();
 
-pEditView->EraseVirtualDevice();
 pEditEngine->SetModified( false );
 pEditEngine->EnableUndo( true );
 
diff --git a/include/vcl/textview.hxx b/include/vcl/textview.hxx
index b46bc5f3891c..ba96f89dba56 100644
--- a/include/vcl/textview.hxx
+++ b/include/vcl/textview.hxx
@@ -169,8 +169,6 @@ public:
 
 voidSetPaintSelection( bool bPaint);
 
-voidEraseVirtualDevice();
-
 // aus dem protected Teil hierher verschoben
 // For 'SvtXECTextCursor' (TL). Must ggf nochmal anders gel?st werden.
 TextPaM PageUp( const TextPaM& rPaM );
diff --git a/vcl/source/edit/textview.cxx b/vcl/source/edit/textview.cxx
index 083f3a984df9..c6cb9618e4cf 100644
--- a/vcl/source/edit/textview.cxx
+++ b/vcl/source/edit/textview.cxx
@@ -157,8 +157,6 @@ struct ImpTextView
 
 std::unique_ptr mpDDInfo;
 
-VclPtr  mpVirtDev;
-
 std::unique_ptr mpSelEngine;
 std::unique_ptr mpSelFuncSet;
 
@@ -185,7 +183,6 @@ TextView::TextView( ExtTextEngine* pEng, vcl::Window* 
pWindow ) :
 
 mpImpl->mpWindow = pWindow;
 mpImpl->mpTextEngine = pEng;
-mpImpl->mpVirtDev = nullptr;
 
 mpImpl->mbPaintSelection = true;
 mpImpl->mbAutoScroll = true;
@@ -235,8 +232,6 @@ TextView::~TextView()
 mpImpl->mpSelEngine.reset();
 mpImpl->mpSelFuncSet.reset();
 
-mpImpl->mpVirtDev.disposeAndClear();
-
 if ( mpImpl->mpWindow->GetCursor() == mpImpl->mpCursor.get() )
 mpImpl->mpWindow->SetCursor( nullptr );
 
@@ -476,11 +471,6 @@ void TextView::ImpShowHideSelection(const TextSelection* 
pRange)
 }
 }
 
-void TextView::EraseVirtualDevice()
-{
-mpImpl->mpVirtDev.disposeAndClear();
-}
-
 bool TextView::KeyInput( const KeyEvent& rKeyEvent )
 {
 bool bDone  = true;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107897] EDITING: Some images are not loaded

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107897

--- Comment #1 from Telesto  ---
Created attachment 133363
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133363=edit
Example file

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


[Libreoffice-bugs] [Bug 107897] New: EDITING: Some images are not loaded

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107897

Bug ID: 107897
   Summary: EDITING: Some images are not loaded
   Product: LibreOffice
   Version: 4.4.6.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Not all the pictures are opened

Steps to Reproduce:
1. Extract the attached zip file
2. Open it with a browser or Writer Web
3. Paste it into Calc as HTML

Actual Results:  
Some images are missing and replaced by text

Expected Results:
All images should show


Reproducible: Always

User Profile Reset: No

Additional Info:
Version: 5.4.0.0.alpha1+
Build ID: 8c0be54a7da6262dffe04357121814dd22b5d7fe
CPU threads: 4; OS: Windows 6.2; UI render: default; 
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2017-05-15_01:35:45
Locale: nl-NL (nl_NL); Calc: CL


User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:45.0) Gecko/20100101
Firefox/45.0

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


[Libreoffice-bugs] [Bug 104655] FILEOPEN ODS: Memory usage for opening file has increased with factor 5

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104655

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #3 from raal  ---
Hello, could you retest? LO takes ~400 MB with Version: 5.4.0.0.alpha1+
Build ID: 970b431f1a7b6b96c4c9536657ce4fe9d8f5b585
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-05-11_23:27:58

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

2017-05-16 Thread Marco Cecchetti
 sc/source/ui/undo/undoblk.cxx  |   14 ++
 sc/source/ui/undo/undoblk2.cxx |   10 +-
 2 files changed, 23 insertions(+), 1 deletion(-)

New commits:
commit 6e3f9d38c0bdeff606d36ce8daabd3ad8ee1b6bb
Author: Marco Cecchetti 
Date:   Wed May 3 17:22:27 2017 +0200

lok: sc: invalidate col/row header on undo row/col operations

Change-Id: Ia0b2174cfcc3f2b3075e8f6eee1eb0f56b64db44
Reviewed-on: https://gerrit.libreoffice.org/37686
Tested-by: Jenkins 
Reviewed-by: Marco Cecchetti 

diff --git a/sc/source/ui/undo/undoblk.cxx b/sc/source/ui/undo/undoblk.cxx
index 291151d11a6d..1c2757c40897 100644
--- a/sc/source/ui/undo/undoblk.cxx
+++ b/sc/source/ui/undo/undoblk.cxx
@@ -23,6 +23,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 
 #include "undoblk.hxx"
 #include "undoutil.hxx"
@@ -257,7 +259,19 @@ void ScUndoInsertCells::DoChange( const bool bUndo )
 }
 pDocShell->PostDataChanged();
 if (pViewShell)
+{
 pViewShell->CellContentChanged();
+
+if (comphelper::LibreOfficeKit::isActive())
+{
+if (eCmd == INS_INSCOLS_BEFORE || eCmd == INS_INSCOLS_AFTER || 
eCmd == INS_CELLSRIGHT)
+ScTabViewShell::notifyAllViewsHeaderInvalidation("column",  
pViewShell->GetViewData().GetTabNo());
+
+if (eCmd == INS_INSROWS_BEFORE || eCmd == INS_INSROWS_AFTER || 
eCmd == INS_CELLSDOWN)
+ScTabViewShell::notifyAllViewsHeaderInvalidation("row",  
pViewShell->GetViewData().GetTabNo());
+}
+
+}
 }
 
 void ScUndoInsertCells::Undo()
diff --git a/sc/source/ui/undo/undoblk2.cxx b/sc/source/ui/undo/undoblk2.cxx
index 50404d5e09fc..cdf75b9f1882 100644
--- a/sc/source/ui/undo/undoblk2.cxx
+++ b/sc/source/ui/undo/undoblk2.cxx
@@ -30,6 +30,8 @@
 
 #include "undoolk.hxx"
 
+#include 
+#include 
 
 /** Change column widths or row heights */
 ScUndoWidthOrHeight::ScUndoWidthOrHeight( ScDocShell* pNewDocShell,
@@ -94,6 +96,7 @@ void ScUndoWidthOrHeight::Undo()
 if (pUndoTab)   // Outlines are 
included when saving ?
 rDoc.SetOutlineTable( nStartTab, pUndoTab );
 
+ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
 SCTAB nTabCount = rDoc.GetTableCount();
 ScMarkData::iterator itr = aMarkData.begin(), itrEnd = aMarkData.end();
 for (; itr != itrEnd && *itr < nTabCount; ++itr)
@@ -117,7 +120,6 @@ void ScUndoWidthOrHeight::Undo()
 
 DoSdrUndoAction( pDrawUndo,  );
 
-ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
 if (pViewShell)
 {
 pViewShell->UpdateScrollBars();
@@ -125,6 +127,12 @@ void ScUndoWidthOrHeight::Undo()
 SCTAB nCurrentTab = pViewShell->GetViewData().GetTabNo();
 if ( nCurrentTab < nStartTab || nCurrentTab > nEndTab )
 pViewShell->SetTabNo( nStartTab );
+
+if (comphelper::LibreOfficeKit::isActive())
+{
+OString aPayload = bWidth ? "column" : "row";
+ScTabViewShell::notifyAllViewsHeaderInvalidation(aPayload, 
pViewShell->GetViewData().GetTabNo());
+}
 }
 
 EndUndo();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-05-16 Thread Laurent Balland-Poirier
 source/text/schart/00/0004.xhp |2 +-
 source/text/schart/01/04050100.xhp |4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit f930a0c40fa65c778b9e6b2fa75d7581bb3f82dc
Author: Laurent Balland-Poirier 
Date:   Sat Feb 25 15:09:48 2017 +0100

Update menu entry for Insert Trend Line in chart

Add emph tag in the same way as other menu commands

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

diff --git a/source/text/schart/00/0004.xhp 
b/source/text/schart/00/0004.xhp
index 2f105d1e6..816a88aca 100644
--- a/source/text/schart/00/0004.xhp
+++ b/source/text/schart/00/0004.xhp
@@ -89,7 +89,7 @@
 
 Choose Insert - X Error Bars  or Insert - Y 
Error Bars (Charts)
 
-Choose Insert - Trend Lines (Charts)
+Choose Insert - Trend Line (Charts)
 
 Choose Insert - Special Character (Charts)
 
diff --git a/source/text/schart/01/04050100.xhp 
b/source/text/schart/01/04050100.xhp
index 367cf541f..c0037b468 100644
--- a/source/text/schart/01/04050100.xhp
+++ b/source/text/schart/01/04050100.xhp
@@ -116,10 +116,10 @@
 
 
   
-To insert 
a trend line for a data series, select the data series in the chart. Choose 
Insert - Trend Lines, or right-click to open the 
context menu, and choose Insert - Trend 
Line.
+To insert 
a trend line for a data series, select the data series in the chart. Choose 
Insert - Trend Line, or right-click to open the 
context menu, and choose Insert Trend 
Line.
   
-  
 
+  
 Mean Value Lines are special trend lines that show the mean 
value. Use Insert - Mean Value Lines to insert 
mean value lines for data series.
 
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2017-05-16 Thread Laurent Balland-Poirier
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ad605e2e0606ee2c5c0fb23b84a0f011af62d124
Author: Laurent Balland-Poirier 
Date:   Sat Feb 25 15:09:48 2017 +0100

Updated core
Project: help  f930a0c40fa65c778b9e6b2fa75d7581bb3f82dc

Update menu entry for Insert Trend Line in chart

Add emph tag in the same way as other menu commands

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

diff --git a/helpcontent2 b/helpcontent2
index 90643687005e..f930a0c40fa6 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 90643687005e1a21c4067f253cc6adeda0c421e0
+Subproject commit f930a0c40fa65c778b9e6b2fa75d7581bb3f82dc
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-05-16 Thread Laurent Balland-Poirier
 source/text/shared/01/05020301.xhp |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 90643687005e1a21c4067f253cc6adeda0c421e0
Author: Laurent Balland-Poirier 
Date:   Wed Mar 1 14:53:04 2017 +0100

Clarify examples for l10n using space as thousands separator

Number Format Code
In locale using space as thousands separator, some examples
may be not correctly interpreted.
This patch adds some text to explain how to solve this.

Beautify a little bit some examples.

Complete fraction description: any digit symbol (0, # or ?)
can be used to described any of the three parts of the fraction.

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

diff --git a/source/text/shared/01/05020301.xhp 
b/source/text/shared/01/05020301.xhp
index 9c5ba9834..d2db2494a 100644
--- a/source/text/shared/01/05020301.xhp
+++ b/source/text/shared/01/05020301.xhp
@@ -66,7 +66,7 @@
 
 Decimal 
Places and Significant Digits
 Use zero (0), 
the number sign (#) or the question mark (?) as placeholders in your number 
format code to represent numbers. The (#) only displays significant digits, 
while the (0) displays zeroes if there are fewer digits in the number than in 
the number format. The (?) works as the (#) but adds a space character to keep 
decimal alignment if there is a hidden non-significant zero.
-Use question 
marks (?) to represent the number of digits to include in the numerator and the 
denominator of a fraction. Fractions that do not fit the pattern that you 
define are displayed as floating point numbers.
+Use question 
marks (?), zeroes (0) or number signs (#) to represent the number of digits to 
include in the numerator and the denominator of a fraction. Fractions that do 
not fit the pattern that you define are displayed as floating point 
numbers.
 If a number 
contains more digits to the right of the decimal delimiter than there are 
placeholders in the format, the number is rounded accordingly. If a number 
contains more digits to the left of the decimal delimiter than there are 
placeholders in the format, the entire number is displayed. Use the following 
list as a guide for using placeholders when you create a number format 
code:
 
 
@@ -168,7 +168,7 @@
 
 
 Thousands Separator
-Depending on 
your language setting, you can use a comma, a period or a blank as a thousands 
separator. You can also use the separator to reduce the size of the number that 
is displayed by a multiple of 1000 for each separator.
+Depending on 
your language setting, you can use a comma, a period or a blank as a thousands 
separator. You can also use the separator to reduce the size of the number that 
is displayed by a multiple of 1000 for each separator. The examples below use 
comma as thousands separator:
 
 
   
@@ -201,7 +201,7 @@
 Including Text in Number Format Codes
 
 Text 
and Numbers
-To include 
text in a number format that is applied to a cell containing numbers, place a 
double quotation mark (") in front of and behind the text, or a backslash (\) 
before a single character. For example, enter #.# "meters" to 
display "3.5 meters" or #.# \m to display "3.5 m".
+To include 
text in a number format that is applied to a cell containing numbers, place a 
double quotation mark (") in front of and behind the text, or a backslash (\) 
before a single character. For example, enter #.# "meters" to 
display "3.5 meters" or #.# \m to display "3.5 m". If you use 
space as thousands separator, you need to insert spaces between quotes in the 
previous examples: #.#" meters" or #.#\ \m to get the 
correct result.
 
 Text 
and Text
 To include 
text in a number format that is applied to a cell that might contain text, 
enclose the text by double quotation marks (" "), and then add an at sign (@). 
For example, enter "Total for "@ to display "Total for 
December".
@@ -271,7 +271,7 @@
 To display 
numbers as percentages, add the percent sign (%) to the number 
format.
 
 Scientific Notation
-Scientific 
notation lets you write very large numbers or very small fractions in a compact 
form. For example, in scientific notation, 65 is written as 6.5 x 10^5, and 
0.65 as 6.5 x 10^-5. Translators: use the decimal delimiter of 
your language (period or comma) for all number format codes in 
Calc.In %PRODUCTNAME, these numbers 
are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that 
displays numbers using scientific notation, enter a # or 0, and then one of the 
following codes E-, E+, e- or e+. If sign is omitted after E or e, it won't 
appear for positive value of exponent. To get engineering notation, enter 3 
digits (0 or #) in the integer part. For instance: ###.##E+00
+Scientific 
notation lets you write very 

[Libreoffice-commits] core.git: helpcontent2

2017-05-16 Thread Laurent Balland-Poirier
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 963c1f40cdc0fa29027755c4dc0998cb8b286c4a
Author: Laurent Balland-Poirier 
Date:   Wed Mar 1 14:53:04 2017 +0100

Updated core
Project: help  90643687005e1a21c4067f253cc6adeda0c421e0

Clarify examples for l10n using space as thousands separator

Number Format Code
In locale using space as thousands separator, some examples
may be not correctly interpreted.
This patch adds some text to explain how to solve this.

Beautify a little bit some examples.

Complete fraction description: any digit symbol (0, # or ?)
can be used to described any of the three parts of the fraction.

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

diff --git a/helpcontent2 b/helpcontent2
index ab17f13c6d60..90643687005e 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit ab17f13c6d60d2d6ad7ff6ce3734ba81c77f881d
+Subproject commit 90643687005e1a21c4067f253cc6adeda0c421e0
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: Changes to 'refs/tags/2.1.1-rc1'

2017-05-16 Thread Andras Timar
Tag '2.1.1-rc1' created by Andras Timar  at 
2017-05-16 18:30 +

2.1.1-rc1

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


[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-1' - debian/changelog loolwsd.spec.in

2017-05-16 Thread Andras Timar
 debian/changelog |6 ++
 loolwsd.spec.in  |2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

New commits:
commit bda51ba86eb6e67253d40a876318b3abde14321b
Author: Andras Timar 
Date:   Tue May 16 20:29:42 2017 +0200

Bump version for packages 2.1.1-3

Change-Id: I58a2142554ab5ab1972bccd34db6acbb809d8c38

diff --git a/debian/changelog b/debian/changelog
index b2367944..522927af 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+loolwsd (2.1.1-3) unstable; urgency=medium
+
+  * see the git log: http://col.la/cool21
+
+ -- Andras Timar   Tue, 16 May 2017 19:30:00 +0100
+
 loolwsd (2.1.1-2) unstable; urgency=medium
 
   * see the git log: http://col.la/cool21
diff --git a/loolwsd.spec.in b/loolwsd.spec.in
index db2b1941..67f5a085 100644
--- a/loolwsd.spec.in
+++ b/loolwsd.spec.in
@@ -12,7 +12,7 @@ Name:   loolwsd%{name_suffix}
 Name:   loolwsd
 %endif
 Version:@PACKAGE_VERSION@
-Release:2%{?dist}
+Release:3%{?dist}
 Vendor: Collabora
 Summary:LibreOffice On-Line WebSocket Daemon
 License:MPL
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Backward compatibility or valid input

2017-05-16 Thread Tamas Zolnai
Hi Caolan,

On Monday, May 15, 2017 12:33 BST, Caolán McNamara  wrote: 
 
> On Fri, 2017-05-12 at 18:20 +0100, Tamas Zolnai wrote:
> > Caolan, I don't see a bug number in the commit message. So I don't
> > know what was the actual test case there. Do you remember something
> > about what was the issue? Maybe we can find a better solution for
> > that.
> 
> I've sent Tomas a document which reproduces the original problem.
> 
> The document generator is LibreOffice 4.4.5.2, and the document is one
> with redlines enabled where there are a massive amount of duplicate
> frames anchored to the same paragraph which results in a document which
> on load is slow to load and unuseably slow to scroll through or work
> with.
> 
> I think the source to *that* problem may have been 'Fix single node
> CopyRange' 9099e21b89184bd4e39def497e483cac4a77ec5a and that problem
> may have been fixed with 'Revert "Fix single node CopyRange"'
> e84f0a9b3223f49b0829f2f55dacbf11ae201c1e
> 
> If that commit was not the root of the duplicate frames then it was
> something of that nature, such that on every save of documents with
> frames anchored to certain locations of redlines the frames got
> duplicated. So on load the document is impossibly slow to work with.
> 
> The catch was what to do about the existing documents containing
> duplicate frames generated with versions before the fix went in.
> 
> I take your point that "it used to work and now it doesn't" wrt
> anonymous/duplicate frame names, but I didn't see any great solutions
> to the pressing need to get documents generated by ourselves to load
> again and LibreOffice (normally) always writes unique frame and the
> spec can be read to indicate that they have to be unique which gave a
> way out to repair the existing pool of affected documents by dropping
> frames with duplicate names.
 
Thanks for the test document and the explanation. I think this conflict can be 
solved by checking also the frame's size and positions next to the frame name. 
With that we can distinguish the real duplicates from those which only have the 
same name. I will change the code accordingly.
I can reproduce the issue with the test document you sent (slow import), so 
I'll make sure not to reintroduce that by by the code change.

Thanks,
Tamás

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


[Libreoffice-bugs] [Bug 104000] Writer media scan produces scrambled image

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104000

--- Comment #16 from Joseph Conner  ---
(In reply to Justin L from comment #15)
> Unable to confirm.  All of my environments (bibisect, compiled LO,
> OS-installed LO) all default to the gray mode of scanning.
> 
> Likely it was a user-preference setting saved in your user profile. Deleting
> the profile and starting from a fresh one likely would have solved the issue.

I have totally removed the libreoffice, including profile. Then I downloaded
and installed LO 5.3.3.2 and updated the operating system to Ubuntu 17.04. 
There is no change in the behaviour. The scanner software still defaults to
lineart. There seems to be no way to make it default to anything else. Each use
of the scan this setting must be reset.

-- 
You are receiving this mail because:
You 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] dev-tools.git: esc-reporting/esc-collect.py

2017-05-16 Thread jan Iversen
 esc-reporting/esc-collect.py |   27 +++
 1 file changed, 15 insertions(+), 12 deletions(-)

New commits:
commit 6b31dcdd5048cb549144a5a697d966ef909e7d10
Author: jan Iversen 
Date:   Tue May 16 19:50:13 2017 +0200

esc-report, remove auth from patch collection

diff --git a/esc-reporting/esc-collect.py b/esc-reporting/esc-collect.py
index 685e673..6931773 100755
--- a/esc-reporting/esc-collect.py
+++ b/esc-reporting/esc-collect.py
@@ -54,23 +54,26 @@ def util_load_file(fileName):
 
 
 
-def util_load_url(url, useDict=False, useRaw=False, uUser=None, uPass=None):
+def util_load_url(url, useDict=False, useRaw=False, useSkipJSON=False, 
uUser=None, uPass=None):
 try:
   if uUser is None:
 r = requests.get(url)
-if useDict:
-  try:
-rawData = xmltodict.parse(x)
-  except Exception as e:
-rawData = {'response': {'result': {'project': {},
-'contributor_fact': {
-elif useRaw:
-  rawData = r.text
-else:
-  rawData = r.json()
   else:
 r = requests.get(url, auth=HTTPDigestAuth(uUser, uPass))
+useSkipJSON = True
+
+  if useDict:
+try:
+  rawData = xmltodict.parse(x)
+except Exception as e:
+  rawData = {'response': {'result': {'project': {},
+'contributor_fact': {
+  elif useRaw:
+rawData = r.text
+  elif useSkipJSON:
 rawData = json.loads(r.text[5:])
+  else:
+rawData = r.json()
   r.close()
 except Exception as e:
   print('Error load url ' + url + ' due to ' + str(e))
@@ -576,7 +579,7 @@ def get_gerrit(cfg):
 if 'offset' in rawList:
   offset = int(rawList['offset'])
 while True:
-  tmp = util_load_url(url + str(offset), uUser=uid, uPass=upw)
+  tmp = util_load_url(url + str(offset), useSkipJSON=True)
   for row in tmp:
 for i in 'email', 'username', 'name':
   if not i in row['owner']:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: compilerplugins/clang

2017-05-16 Thread Stephan Bergmann
 compilerplugins/clang/comparisonwithconstant.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 133d06baefc5e36ae3b5a1713c3fded26cdabe2f
Author: Stephan Bergmann 
Date:   Tue May 16 19:44:25 2017 +0200

Remove unused var

Change-Id: Id0266ad01eaabf2d9555e99f4a4c1c2300bb8be7

diff --git a/compilerplugins/clang/comparisonwithconstant.cxx 
b/compilerplugins/clang/comparisonwithconstant.cxx
index cf721a83c4e3..8decc5c475cc 100644
--- a/compilerplugins/clang/comparisonwithconstant.cxx
+++ b/compilerplugins/clang/comparisonwithconstant.cxx
@@ -57,7 +57,6 @@ bool ComparisonWithConstant::VisitBinaryOperator(const 
BinaryOperator* binaryOp)
 if (binaryOp->getLHS()->isValueDependent() || 
binaryOp->getRHS()->isValueDependent()) {
 return true;
 }
-APValue result;
 if (!binaryOp->getLHS()->isEvaluatable(compiler.getASTContext())) {
 return true;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dev-tools.git: esc-reporting/esc-collect.py

2017-05-16 Thread jan Iversen
 esc-reporting/esc-collect.py |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 0f509b76f5506ca51ca2a5170221aa72f62516a9
Author: jan Iversen 
Date:   Tue May 16 19:41:16 2017 +0200

esc-report, restrict gerrit auth to committer list

diff --git a/esc-reporting/esc-collect.py b/esc-reporting/esc-collect.py
index f003fcc..685e673 100755
--- a/esc-reporting/esc-collect.py
+++ b/esc-reporting/esc-collect.py
@@ -559,11 +559,11 @@ def get_gerrit(cfg):
 searchDate, rawList = util_load_data_file(cfg, fileName, 'gerrit', 
{'patch': {}, 'committers' : []})
 print("Updating gerrit dump from " + rawList['newest-entry'])
 
-urlBase = 'https://gerrit.libreoffice.org/a/'
+urlBase = 'https://gerrit.libreoffice.org/'
 uid = cfg['gerrit']['user']
 upw = cfg['gerrit']['password']
 rawList['committers'] = []
-tmp = util_load_url(urlBase + 'groups/Committers/members', uUser=uid, 
uPass=upw)
+tmp = util_load_url(urlBase + 'a/groups/Committers/members', uUser=uid, 
uPass=upw)
 for row in tmp:
   for i in 'username', 'email':
 if not i in row:
@@ -708,6 +708,11 @@ def runCfg(platform):
 
 def runBuild(cfg):
 try:
+  gerritData = get_gerrit(cfg)
+except Exception as e:
+  print('ERROR: get_gerrit failed with ' + str(e))
+  pass
+try:
   crashData = get_crash(cfg)
 except Exception as e:
   print('ERROR: get_crash failed with ' + str(e))
@@ -728,11 +733,6 @@ def runBuild(cfg):
   print('ERROR: get_esc_bugzilla failed with ' + str(e))
   pass
 try:
-  gerritData = get_gerrit(cfg)
-except Exception as e:
-  print('ERROR: get_gerrit failed with ' + str(e))
-  pass
-try:
   gitData = get_git(cfg)
 except Exception as e:
   print('ERROR: get_git failed with ' + str(e))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2017-05-16 Thread Olivier Hallot
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9c613898532510c85a118f3081bfc06cf6572683
Author: Olivier Hallot 
Date:   Tue May 16 14:35:31 2017 -0300

Updated core
Project: help  ab17f13c6d60d2d6ad7ff6ce3734ba81c77f881d

Mute L10n in some  lines

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

diff --git a/helpcontent2 b/helpcontent2
index fd99f1798a44..ab17f13c6d60 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit fd99f1798a440ccdfb34e910285a7c5c9a9ff08d
+Subproject commit ab17f13c6d60d2d6ad7ff6ce3734ba81c77f881d
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-05-16 Thread Olivier Hallot
 source/text/sbasic/shared/03103800.xhp |   18 +-
 source/text/sbasic/shared/03103900.xhp |   20 ++--
 2 files changed, 19 insertions(+), 19 deletions(-)

New commits:
commit ab17f13c6d60d2d6ad7ff6ce3734ba81c77f881d
Author: Olivier Hallot 
Date:   Tue May 16 14:35:31 2017 -0300

Mute L10n in some  lines

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

diff --git a/source/text/sbasic/shared/03103800.xhp 
b/source/text/sbasic/shared/03103800.xhp
index eb3475225..75400f3e9 100644
--- a/source/text/sbasic/shared/03103800.xhp
+++ b/source/text/sbasic/shared/03103800.xhp
@@ -38,24 +38,24 @@
 
 For example, 
the following command:
 
-MyObj.Prop1.Command = 5
+MyObj.Prop1.Command = 5
 
 corresponds to 
the command block:
 
-Dim ObjVar as 
Object
-Dim ObjProp as 
Object
-ObjName As 
String = "MyObj"
-ObjVar = 
FindObject( ObjName As String )
-PropName As 
String = "Prop1"
-ObjProp = 
FindPropertyObject( ObjVar, PropName As String )
-ObjProp.Command 
= 5
+Dim ObjVar as Object
+Dim ObjProp as Object
+ObjName As String = "MyObj"
+ObjVar = FindObject( ObjName As String )
+PropName As String = "Prop1"
+ObjProp = FindPropertyObject( ObjVar, PropName As String 
)
+ObjProp.Command = 5
 
 This allows 
names to be dynamically created at run-time. For example:
 "TextEdit1" to 
TextEdit5" in a loop to create five control names.
 See also: 
FindPropertyObject
 Syntax:
 
-FindObject( 
ObjName As String )
+FindObject( ObjName As String )
 
 Parameters:
 
diff --git a/source/text/sbasic/shared/03103900.xhp 
b/source/text/sbasic/shared/03103900.xhp
index 127da9c65..5ec50e594 100644
--- a/source/text/sbasic/shared/03103900.xhp
+++ b/source/text/sbasic/shared/03103900.xhp
@@ -38,24 +38,24 @@
 
 For instance, 
the command:
 
-   MyObj.Prop1.Command = 5
+   MyObj.Prop1.Command = 5
 
-corresponds to 
the following command block:
+corresponds to 
the following command block:
 
-Dim ObjVar as 
Object
-Dim ObjProp as 
Object
-ObjName As 
String = "MyObj"
-ObjVar = 
FindObject( ObjName As String )
-PropName As 
String = "Prop1"
-ObjProp = 
FindPropertyObject( ObjVar, PropName As String )
-ObjProp.Command 
= 5
+Dim ObjVar as Object
+Dim ObjProp as Object
+ObjName As String = "MyObj"
+ObjVar = FindObject( ObjName As String )
+PropName As String = "Prop1"
+ObjProp = FindPropertyObject( ObjVar, PropName As String 
)
+ObjProp.Command = 5
 
 To dynamically 
create Names at run-time, use:
 "TextEdit1" to 
TextEdit5" in a loop to create five names.
 See also: 
FindObject
 Syntax:
 
-FindPropertyObject( ObjVar, PropName As String )
+FindPropertyObject( ObjVar, PropName As String )
 
 Parameters:
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107892] MAX.SI function doesn't work with negative values

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107892

--- Comment #4 from R1M  ---
Confirmed also xith this file on Version: 5.2.6.2 (Build ID: 1:5.2.6-2~bpo8+1)
OS :Linux 4.5; VCL : kde4; Locale : fr-FR (fr_FR.UTF-8); Calc: group
Is ti possible to also tag this version with the bug or 5.3.2.2 is enough to
cover previous ones on other OS?

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

2017-05-16 Thread Miklos Vajna
 sw/qa/extras/ooxmlexport/data/tdf107889.docx |binary
 sw/qa/extras/ooxmlexport/ooxmlexport9.cxx|8 ++
 writerfilter/source/dmapper/DomainMapperTableHandler.cxx |3 ++
 writerfilter/source/dmapper/DomainMapper_Impl.cxx|2 +
 writerfilter/source/dmapper/DomainMapper_Impl.hxx|5 
 writerfilter/source/dmapper/PropertyMap.cxx  |   18 ++-
 writerfilter/source/dmapper/PropertyMap.hxx  |2 -
 7 files changed, 31 insertions(+), 7 deletions(-)

New commits:
commit 659c0227a50d298780d72902314e03df8824bc06
Author: Miklos Vajna 
Date:   Tue May 16 15:26:53 2017 +0200

tdf#107889 DOCX import: consider page breaks for multi-page floattables

This is the DOCX equivalent of commit
6aba29576df7a2a40e54040d4dd09d94d6594741 (tdf#107773 DOC import:
consider page breaks for multi-page floattables, 2017-05-11): a specific
case where it's clearly superior to import a multi-page floating table
as a multi-page one, rather than a floating one.

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

diff --git a/sw/qa/extras/ooxmlexport/data/tdf107889.docx 
b/sw/qa/extras/ooxmlexport/data/tdf107889.docx
new file mode 100644
index ..452c4aa13063
Binary files /dev/null and b/sw/qa/extras/ooxmlexport/data/tdf107889.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx
index 73077b4fe40a..ce8a77a02c8c 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx
@@ -499,6 +499,14 @@ DECLARE_OOXMLEXPORT_TEST(testTdf100072, "tdf100072.docx")
 CPPUNIT_ASSERT(getShape(1)->getPosition().X > 0);
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf107889, "tdf107889.docx")
+{
+uno::Reference xDrawPageSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference xDrawPage = 
xDrawPageSupplier->getDrawPage();
+// This was 1, multi-page table was imported as a floating one.
+CPPUNIT_ASSERT_EQUAL(static_cast(0), xDrawPage->getCount());
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx 
b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
index 7ed678863e37..db2c4fa4d5c9 100644
--- a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
+++ b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
@@ -1178,6 +1178,9 @@ void DomainMapperTableHandler::endTable(unsigned int 
nestedTableLevel, bool bTab
 xTextAppendAndConvert->convertToTextFrame(xStart, xEnd, 
comphelper::containerToSequence(aFrameProperties));
 }
 }
+
+// We're right after a table conversion.
+m_rDMapper_Impl.m_bConvertedTable = true;
 }
 
 m_aTableProperties.reset();
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index af1991b67e44..fc076998fa9b 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -1227,6 +1227,8 @@ void DomainMapper_Impl::finishParagraph( const 
PropertyMapPtr& pPropertyMap )
 
 xTextRange = xTextAppend->finishParagraph( 
comphelper::containerToSequence(aProperties) );
 m_xPreviousParagraph.set(xTextRange, uno::UNO_QUERY);
+// We're no longer right after a table conversion.
+m_bConvertedTable = false;
 
 if (xCursor.is())
 {
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.hxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.hxx
index b43d310db917..65274fcc7d46 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.hxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.hxx
@@ -308,6 +308,8 @@ struct FloatingTableInfo
 css::uno::Reference m_xEnd;
 css::uno::Sequence m_aFrameProperties;
 sal_Int32 m_nTableWidth;
+/// Break type of the section that contains this table.
+sal_Int32 m_nBreakType = -1;
 
 FloatingTableInfo(css::uno::Reference const& xStart,
 css::uno::Reference const& xEnd,
@@ -753,6 +755,9 @@ public:
 
 DeletableTabStopm_aCurrentTabStop;
 
+/// If we're right after the end of a table.
+bool m_bConvertedTable = false;
+
 bool IsOOXMLImport() const { return m_eDocumentType == 
SourceDocumentType::OOXML; }
 
 bool IsRTFImport() const { return m_eDocumentType == 
SourceDocumentType::RTF; }
diff --git a/writerfilter/source/dmapper/PropertyMap.cxx 
b/writerfilter/source/dmapper/PropertyMap.cxx
index 8e308940e7e0..3df7c864cd55 100644
--- a/writerfilter/source/dmapper/PropertyMap.cxx
+++ 

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

2017-05-16 Thread Marco Cecchetti
 include/sfx2/lokhelper.hxx |2 --
 sc/source/ui/inc/tabvwsh.hxx   |2 ++
 sc/source/ui/view/tabvwshc.cxx |   17 +
 sc/source/ui/view/viewfunc.cxx |   24 +++-
 sfx2/source/view/lokhelper.cxx |   11 ---
 5 files changed, 34 insertions(+), 22 deletions(-)

New commits:
commit d849231dd2064ebed96d17bf54286a33954304ab
Author: Marco Cecchetti 
Date:   Tue May 2 10:20:11 2017 +0200

lok: sc: make row/col header updating, on row/col operations, tab-aware

Now, on inserting/removing or resizing a row/col, the row/col header
invalidation callback is notified to another view only if it is
displaying the same tab of the view where the row/col operation is
occurring.

Conflicts:
sc/source/ui/view/tabvwshc.cxx

Change-Id: Ic65fd82b2e3009420c7b481e7e8c1ff8bb11bcce
Reviewed-on: https://gerrit.libreoffice.org/37241
Tested-by: Jenkins 
Reviewed-by: Marco Cecchetti 

diff --git a/include/sfx2/lokhelper.hxx b/include/sfx2/lokhelper.hxx
index 4dc088d64d59..669d0f78d226 100644
--- a/include/sfx2/lokhelper.hxx
+++ b/include/sfx2/lokhelper.hxx
@@ -42,8 +42,6 @@ public:
 static void notifyOtherView(SfxViewShell* pThisView, SfxViewShell* 
pOtherView, int nType, const OString& rKey, const OString& rPayload);
 /// Emits a LOK_CALLBACK_INVALIDATE_TILES, but tweaks it according to 
setOptionalFeatures() if needed.
 static void notifyInvalidation(SfxViewShell* pThisView, const OString& 
rPayload);
-/// Emits a LOK_CALLBACK_INVALIDATE_HEADER for all views.
-static void notifyAllViewsHeaderInvalidation(const OString& rPayload);
 /// A special value to signify 'infinity'.
 /// This value is chosen such that sal_Int32 will not overflow when 
manipulated.
 static const long MaxTwips = 1e9;
diff --git a/sc/source/ui/inc/tabvwsh.hxx b/sc/source/ui/inc/tabvwsh.hxx
index c08e4ee2a08f..e138c35aca4c 100644
--- a/sc/source/ui/inc/tabvwsh.hxx
+++ b/sc/source/ui/inc/tabvwsh.hxx
@@ -394,6 +394,8 @@ public:
 void afterCallbackRegistered() override;
 /// See SfxViewShell::NotifyCursor().
 void NotifyCursor(SfxViewShell* pViewShell) const override;
+/// Emits a LOK_CALLBACK_INVALIDATE_HEADER for all views whose current tab 
is equal to nCurrentTabIndex
+static void notifyAllViewsHeaderInvalidation(const OString& rPayload, 
SCTAB nCurrentTabIndex = -1);
 };
 
 #endif
diff --git a/sc/source/ui/view/tabvwshc.cxx b/sc/source/ui/view/tabvwshc.cxx
index 20d02dd9a1ea..7cbcaed65b9b 100644
--- a/sc/source/ui/view/tabvwshc.cxx
+++ b/sc/source/ui/view/tabvwshc.cxx
@@ -77,6 +77,9 @@
 
 #include "PivotLayoutDialog.hxx"
 
+#include 
+#include 
+
 void ScTabViewShell::SetCurRefDlgId( sal_uInt16 nNew )
 {
 //  CurRefDlgId is stored in ScModule to find if a ref dialog is open,
@@ -543,6 +546,20 @@ void ScTabViewShell::NotifyCursor(SfxViewShell* 
pOtherShell) const
 pWin->updateLibreOfficeKitCellCursor(pOtherShell);
 }
 
+void ScTabViewShell::notifyAllViewsHeaderInvalidation(const OString& rPayload, 
SCTAB nCurrentTabIndex)
+{
+SfxViewShell* pViewShell = SfxViewShell::GetFirst();
+while (pViewShell)
+{
+ScTabViewShell* pTabViewShell = 
dynamic_cast(pViewShell);
+if (pTabViewShell && (nCurrentTabIndex == -1 || 
pTabViewShell->getPart() == nCurrentTabIndex))
+{
+
pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_INVALIDATE_HEADER, 
rPayload.getStr());
+}
+pViewShell = SfxViewShell::GetNext(*pViewShell);
+}
+}
+
 bool ScTabViewShell::UseSubTotal(ScRangeList* pRangeList)
 {
 bool bSubTotal = false;
diff --git a/sc/source/ui/view/viewfunc.cxx b/sc/source/ui/view/viewfunc.cxx
index f6a3c1084ffb..c0d8d028eb3d 100644
--- a/sc/source/ui/view/viewfunc.cxx
+++ b/sc/source/ui/view/viewfunc.cxx
@@ -1478,11 +1478,14 @@ bool ScViewFunc::InsertCells( InsCellCmd eCmd, bool 
bRecord, bool bPartOfPaste )
 HelperNotifyChanges::NotifyIfChangesListeners(*pDocSh, aRange, 
aOperation);
 }
 
-if (bInsertCols)
-SfxLokHelper::notifyAllViewsHeaderInvalidation("column");
+if (comphelper::LibreOfficeKit::isActive())
+{
+if (bInsertCols)
+ScTabViewShell::notifyAllViewsHeaderInvalidation("column", 
GetViewData().GetTabNo());
 
-if (bInsertRows)
-SfxLokHelper::notifyAllViewsHeaderInvalidation("row");
+if (bInsertRows)
+ScTabViewShell::notifyAllViewsHeaderInvalidation("row", 
GetViewData().GetTabNo());
+}
 }
 return bSuccess;
 }
@@ -1550,11 +1553,14 @@ void ScViewFunc::DeleteCells( DelCellCmd eCmd )
 nCurY = aRange.aStart.Row();
 SetCursor( nCurX, nCurY );
 
-if (eCmd == DEL_DELCOLS)
-

Re: [Firebird-devel] MacOS build fail "SSE4.2 instruction set not enabled"

2017-05-16 Thread Alex Peshkoff

On 05/12/17 22:13, Julien wrote:

I gave a try but had this:
lo/lode/dev/core/workdir/UnpackedTarball/firebird/src/common/CRC32C.cpp:41:10: 
error: always_inline function '_mm_crc32_u8' requires target feature 'sse4.1', 
but would be inlined into function 'CRC32C' that is compiled without support 
for 'sse4.1'
 return _mm_crc32_u8(hash_value, *value);
^
Are you sure msse4 shouldn't be added in CXXFLAGS instead of COMMON_FLAGS?


In linux COMMON_FLAGS is used and it appears to be correct choice from 
general POV - msse4 makes sense for both plain C & C++.
But what about darwin - yes, looks like it does not use COMMON_FLAGS at 
all, with CXXFLAGS this should work.


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


Re: Where is Python on Mac

2017-05-16 Thread Jens Tröger
Oh it's moved from Contents/MacOS/python to Contents/Resources/python.
And it's 3.5 now, too.  Thanks!

Jens


On Mon, May 15, 2017 at 10:07:28AM +0200, Stephan Bergmann wrote:
> On 05/12/2017 03:44 PM, Jens Tröger wrote:
> > I have noticed that the past few drops of LO for Mac do not ship with a 
> > Python 3 interpreter anymore, but seem to contain Uno related resources.
> 
> LO should still come with a bundled Python, but what might fool you is 
> 
>  
> "put python starter shell script to Resources folder of OS X app" (for 
> which Andras should thus know any details).

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


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

2017-05-16 Thread Stephan Bergmann
 sc/source/ui/undo/undoblk.cxx  |   14 --
 sc/source/ui/undo/undoblk2.cxx |   10 +-
 2 files changed, 1 insertion(+), 23 deletions(-)

New commits:
commit 7f2d6d8480f06434a1b5bc748ac2f3f80b2e71cb
Author: Stephan Bergmann 
Date:   Tue May 16 18:23:32 2017 +0200

Revert "lok: sc: invalidate col/row header on undo row/col operations"

This reverts commit 76d47e6f63e11d3509339ade6203757d63582d21, breaks the 
build.

diff --git a/sc/source/ui/undo/undoblk.cxx b/sc/source/ui/undo/undoblk.cxx
index 1c2757c40897..291151d11a6d 100644
--- a/sc/source/ui/undo/undoblk.cxx
+++ b/sc/source/ui/undo/undoblk.cxx
@@ -23,8 +23,6 @@
 #include 
 #include 
 #include 
-#include 
-#include 
 
 #include "undoblk.hxx"
 #include "undoutil.hxx"
@@ -259,19 +257,7 @@ void ScUndoInsertCells::DoChange( const bool bUndo )
 }
 pDocShell->PostDataChanged();
 if (pViewShell)
-{
 pViewShell->CellContentChanged();
-
-if (comphelper::LibreOfficeKit::isActive())
-{
-if (eCmd == INS_INSCOLS_BEFORE || eCmd == INS_INSCOLS_AFTER || 
eCmd == INS_CELLSRIGHT)
-ScTabViewShell::notifyAllViewsHeaderInvalidation("column",  
pViewShell->GetViewData().GetTabNo());
-
-if (eCmd == INS_INSROWS_BEFORE || eCmd == INS_INSROWS_AFTER || 
eCmd == INS_CELLSDOWN)
-ScTabViewShell::notifyAllViewsHeaderInvalidation("row",  
pViewShell->GetViewData().GetTabNo());
-}
-
-}
 }
 
 void ScUndoInsertCells::Undo()
diff --git a/sc/source/ui/undo/undoblk2.cxx b/sc/source/ui/undo/undoblk2.cxx
index cdf75b9f1882..50404d5e09fc 100644
--- a/sc/source/ui/undo/undoblk2.cxx
+++ b/sc/source/ui/undo/undoblk2.cxx
@@ -30,8 +30,6 @@
 
 #include "undoolk.hxx"
 
-#include 
-#include 
 
 /** Change column widths or row heights */
 ScUndoWidthOrHeight::ScUndoWidthOrHeight( ScDocShell* pNewDocShell,
@@ -96,7 +94,6 @@ void ScUndoWidthOrHeight::Undo()
 if (pUndoTab)   // Outlines are 
included when saving ?
 rDoc.SetOutlineTable( nStartTab, pUndoTab );
 
-ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
 SCTAB nTabCount = rDoc.GetTableCount();
 ScMarkData::iterator itr = aMarkData.begin(), itrEnd = aMarkData.end();
 for (; itr != itrEnd && *itr < nTabCount; ++itr)
@@ -120,6 +117,7 @@ void ScUndoWidthOrHeight::Undo()
 
 DoSdrUndoAction( pDrawUndo,  );
 
+ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
 if (pViewShell)
 {
 pViewShell->UpdateScrollBars();
@@ -127,12 +125,6 @@ void ScUndoWidthOrHeight::Undo()
 SCTAB nCurrentTab = pViewShell->GetViewData().GetTabNo();
 if ( nCurrentTab < nStartTab || nCurrentTab > nEndTab )
 pViewShell->SetTabNo( nStartTab );
-
-if (comphelper::LibreOfficeKit::isActive())
-{
-OString aPayload = bWidth ? "column" : "row";
-ScTabViewShell::notifyAllViewsHeaderInvalidation(aPayload, 
pViewShell->GetViewData().GetTabNo());
-}
 }
 
 EndUndo();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107896] New: MAILMERGE : "Exchange database" misses "next record" fields

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107896

Bug ID: 107896
   Summary: MAILMERGE : "Exchange database" misses "next record"
fields
   Product: LibreOffice
   Version: 5.3.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: m...@neiger.org

Description:
Document is a set of stickers thus using "next record" field in all but the
first box.
If I change source database using the "exchange database" from "Edit" Menu to a
new one with a different registered name, e.g. "Catalogue1" to "Catalogue2",
the "exchange database" recalculates all fields names to bind to Catalogue2. 
Catalogue1.table.field become Catalogue2.table.field
However, "Next Record:Catalogue1.table" remains "Next Record:Catalogue1.table".



Steps to Reproduce:
1. see description
2.
3.

Actual Results:  
Data fields are properly processed but not the "next record" field.
"Next Record:Catalogue1.table" remains "Next Record:Catalogue1.table".

Expected Results:
"Next Record:Catalogue1.table" should become "Next Record:Catalogue2.table".


Reproducible: Always

User Profile Reset: No but have it on several computers.

Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:53.0) Gecko/20100101
Firefox/53.0

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


[Libreoffice-bugs] [Bug 107890] Have not been able to access an old MS Access Database file ( .mdb) in years using LibreOffice

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107890

--- Comment #5 from Joseph DeVore  ---
(In reply to Alex Thurgood from comment #3)
> @Joseph : make sure that you aren't being affected by bug 43227

I took a look at it.. hmm.. doesn't look like its my problem...

OpenOffice/LibreOffice was able to connect/open/access this old .mdb file(s)
before... I don't recall when, but ruffly over 2-4 years ish...

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


[Libreoffice-bugs] [Bug 107739] [META] Field bugs and enhancements

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107739

--- Comment #2 from Dieter Praas  ---
(In reply to Yousuf Philips (jay) from comment #1)
> Meta bug for fields (e.g. page number, author's name) that can be inserted
> within a document through the Insert > Field submenu and the Insert > Field
> > More Fields dialog in Writer.

Yousuf: There are a lot of bugs regarding to cross-references. Do you think we
should collect them in this meta bug or shall I create a new meta 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 107762] admin-console: memory graph is not working in 'Analytics' tab

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107762

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.4.0

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


[Libreoffice-bugs] [Bug 107762] admin-console: memory graph is not working in 'Analytics' tab

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107762

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

http://cgit.freedesktop.org/libreoffice/online/commit/?id=f94b42d9a8de3c0f9269fc94659707e147d04512

tdf#107762 admin-console: memory graph in 'Analytics' tab now working

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


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

2017-05-16 Thread Aditya Dewan
 wsd/Admin.cpp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f94b42d9a8de3c0f9269fc94659707e147d04512
Author: Aditya Dewan 
Date:   Tue May 16 15:43:57 2017 +0530

tdf#107762 admin-console: memory graph in 'Analytics' tab now working

Change-Id: I6a0ee82e813e80344eaf6ddb7d46eebed98ca5bb
Reviewed-on: https://gerrit.libreoffice.org/37672
Reviewed-by: pranavk 
Tested-by: pranavk 

diff --git a/wsd/Admin.cpp b/wsd/Admin.cpp
index 700b860b..8e899d26 100644
--- a/wsd/Admin.cpp
+++ b/wsd/Admin.cpp
@@ -327,7 +327,7 @@ void Admin::pollingThread()
 cpuWait += _cpuStatsTaskIntervalMs;
 }
 int memWait = _memStatsTaskIntervalMs -
-std::chrono::duration_cast(now - 
lastCPU).count();
+std::chrono::duration_cast(now - 
lastMem).count();
 if (memWait <= 0)
 {
 const auto totalMem = getTotalMemoryUsage();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107890] Have not been able to access an old MS Access Database file ( .mdb) in years using LibreOffice

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107890

--- Comment #4 from Alex Thurgood  ---
Might also be a DUP of bug 97579, see comments 10, 13 and 14

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


[Libreoffice-bugs] [Bug 107890] Have not been able to access an old MS Access Database file ( .mdb) in years using LibreOffice

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107890

Alex Thurgood  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 97579] Unable to link Access 2010 database causing LireOffice to freeze and requiring force kill

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97579

Alex Thurgood  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 96256] Pasting text leaves focus somewhere in the middle of the document.

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96256

raal  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 CC||mst...@redhat.com,
   ||r...@post.cz

--- Comment #7 from raal  ---
4dd49563a4368db46937562491e891b2b8569f4b is the first bad commit
commit 4dd49563a4368db46937562491e891b2b8569f4b
Author: Norbert Thiebaud 
Date:   Sun Jun 7 05:48:49 2015 -0500

source sha:587006cac508616f486aea45e265a170bcccdc87
author  Michael Stahl    2015-06-05 21:56:07 (GMT)
committer   Michael Stahl    2015-06-05 22:32:47
(GMT)
commit  587006cac508616f486aea45e265a170bcccdc87 (patch)
tree792a0095b756496bf3c2213b14446979dc3f6a97
parent  c27798b20097602739e3e81a5063109b8c66447d (diff)
tdf#91602: sw: prevent recursive layout crash

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


[Libreoffice-bugs] [Bug 107890] Have not been able to access an old MS Access Database file ( .mdb) in years using LibreOffice

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107890

--- Comment #3 from Alex Thurgood  ---
@Joseph : make sure that you aren't being affected by bug 43227

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


[Libreoffice-bugs] [Bug 43227] FILEOPEN: UI to set workgroup (system DB) for opening MS Access (.mdb) files

2017-05-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43227

Alex Thurgood  changed:

   What|Removed |Added

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

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