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

2017-04-12 Thread Stephan Bergmann
 include/jvmfwk/framework.hxx  |6 ++
 jvmfwk/source/framework.cxx   |   14 --
 stoc/source/javavm/javavm.cxx |   30 --
 3 files changed, 14 insertions(+), 36 deletions(-)

New commits:
commit 1a2afa01c98b6edefaaf18590d6e55c3a9731920
Author: Stephan Bergmann 
Date:   Wed Apr 12 23:10:11 2017 +0200

Simplify passing options to jfw_startVM

Change-Id: Idac31e282fe4df69449298a03d491473e460c742
Reviewed-on: https://gerrit.libreoffice.org/36495
Tested-by: Jenkins 
Reviewed-by: Stephan Bergmann 

diff --git a/include/jvmfwk/framework.hxx b/include/jvmfwk/framework.hxx
index d6059bb640af..afab60eef427 100644
--- a/include/jvmfwk/framework.hxx
+++ b/include/jvmfwk/framework.hxx
@@ -454,9 +454,7 @@ JVMFWK_DLLPUBLIC javaFrameworkError jfw_getJavaInfoByPath(
 @param pInfo
 [in] optional pointer to a specific JRE; must be caller-freed if not NULL
 @param arOptions
-[in] the array containing additional start arguments or NULL.
-@param nSize
-[in] the size of the array arOptions.
+[in] the vector containing additional start arguments.
 @param ppVM
 [out] the JavaVM pointer.
 @param ppEnv
@@ -484,7 +482,7 @@ JVMFWK_DLLPUBLIC javaFrameworkError jfw_getJavaInfoByPath(
 JAVA_HOMEdoes not meet the version requirements.
  */
 JVMFWK_DLLPUBLIC javaFrameworkError jfw_startVM(
-JavaInfo const * pInfo, JavaVMOption * arOptions, sal_Int32 nSize,
+JavaInfo const * pInfo, std::vector const & arOptions,
 JavaVM ** ppVM, JNIEnv ** ppEnv);
 
 /** determines the JRE that is to be used.
diff --git a/jvmfwk/source/framework.cxx b/jvmfwk/source/framework.cxx
index 0165fcf9efd9..42d99557fc0b 100644
--- a/jvmfwk/source/framework.cxx
+++ b/jvmfwk/source/framework.cxx
@@ -187,10 +187,9 @@ javaFrameworkError 
jfw_findAllJREs(std::vector *pparI
 }
 
 javaFrameworkError jfw_startVM(
-JavaInfo const * pInfo, JavaVMOption * arOptions, sal_Int32 cOptions,
+JavaInfo const * pInfo, std::vector const & arOptions,
 JavaVM ** ppVM, JNIEnv ** ppEnv)
 {
-assert(cOptions == 0 || arOptions != nullptr);
 assert(ppVM != nullptr);
 javaFrameworkError errcode = JFW_E_NONE;
 
@@ -289,7 +288,7 @@ javaFrameworkError jfw_startVM(
 // it contains the classpath and all options set in the
 //options dialog
 std::unique_ptr sarJOptions(
-new JavaVMOption[cOptions + 2 + vmParams.size()]);
+new JavaVMOption[arOptions.size() + 2 + vmParams.size()]);
 JavaVMOption * arOpt = sarJOptions.get();
 if (! arOpt)
 return JFW_E_ERROR;
@@ -313,10 +312,13 @@ javaFrameworkError jfw_startVM(
 index ++;
 }
 //add all options of the arOptions argument
-for (int ii = 0; ii < cOptions; ii++)
+std::vector convertedOptions;
+for (auto const & ii: arOptions)
 {
-arOpt[index].optionString = arOptions[ii].optionString;
-arOpt[index].extraInfo = arOptions[ii].extraInfo;
+OString conv = OUStringToOString(ii, osl_getThreadTextEncoding());
+convertedOptions.push_back(conv);
+arOpt[index].optionString = const_cast(conv.getStr());
+arOpt[index].extraInfo = nullptr;
 index++;
 }
 
diff --git a/stoc/source/javavm/javavm.cxx b/stoc/source/javavm/javavm.cxx
index 18ab9084c78e..a4e9efe66e59 100644
--- a/stoc/source/javavm/javavm.cxx
+++ b/stoc/source/javavm/javavm.cxx
@@ -706,33 +706,11 @@ JavaVirtualMachine::getJavaVM(css::uno::Sequence< 
sal_Int8 > const & rProcessId)
 stoc_javavm::JVM aJvm;
 initVMConfiguration(, m_xContext->getServiceManager(),
 m_xContext);
-//Create the JavaVMOption array
 const std::vector & props = aJvm.getProperties();
-std::unique_ptr sarOptions(
-new JavaVMOption[props.size()]);
-JavaVMOption * arOptions = sarOptions.get();
-//Create an array that contains the strings which are passed
-//into the options
-std::unique_ptr sarPropStrings(
- new OString[props.size()]);
-OString * arPropStrings = sarPropStrings.get();
-
-OString sJavaOption("-");
-typedef std::vector::const_iterator cit;
-int index = 0;
-for (cit i = props.begin(); i != props.end(); ++i)
+std::vector options;
+for (auto const & i: props)
 {
-OString sOption = OUStringToOString(
-*i, osl_getThreadTextEncoding());
-
-if (!sOption.matchIgnoreAsciiCase(sJavaOption))
-arPropStrings[index]= OString("-D") + sOption;
-else
-arPropStrings[index] = sOption;
-
-arOptions[index].optionString = 
const_cast(arPropStrings[index].getStr());
-  

[Libreoffice-commits] core.git: connectivity/source cui/source desktop/source framework/source hwpfilter/source i18nutil/source include/framework include/tools jvmfwk/source onlineupdate/source oox/so

2017-04-12 Thread Andrea Gelmini
 connectivity/source/drivers/firebird/DatabaseMetaData.cxx |1 -
 cui/source/options/optjava.cxx|3 
+--
 desktop/source/lib/init.cxx   |2 --
 framework/source/uielement/toolbarsmenucontroller.cxx |1 -
 hwpfilter/source/lexer.cxx|1 -
 i18nutil/source/utility/unicode.cxx   |1 -
 include/framework/interaction.hxx |1 -
 include/tools/diagnose_ex.h   |1 -
 jvmfwk/source/framework.cxx   |1 -
 onlineupdate/source/update/updater/xpcom/glue/nsVersionComparator.cxx |1 -
 oox/source/helper/propertymap.cxx |4 

 sal/qa/osl/file/osl_File_Const.h  |2 --
 sal/rtl/alloc_global.cxx  |8 

 sc/qa/unit/subsequent_filters-test.cxx|3 
+--
 sc/source/filter/html/htmlpars.cxx|1 -
 sc/source/filter/oox/revisionfragment.cxx |2 --
 sc/source/filter/orcus/orcusfiltersimpl.cxx   |1 -
 sc/source/filter/xml/xmlimprt.cxx |1 -
 sc/source/ui/docshell/docfunc.cxx |1 -
 sc/source/ui/miscdlgs/autofmt.cxx |1 -
 sc/source/ui/miscdlgs/scuiautofmt.cxx |1 -
 sc/source/ui/view/gridwin.cxx |2 --
 sc/source/ui/view/tabview3.cxx|1 -
 sc/source/ui/view/viewfun3.cxx|1 -
 sd/qa/unit/dialogs-test.cxx   |1 -
 sd/qa/unit/tiledrendering/tiledrendering.cxx  |1 -
 sd/source/ui/animations/CustomAnimationDialog.cxx |1 -
 sd/source/ui/animations/CustomAnimationPane.hxx   |1 -
 sd/source/ui/sidebar/MasterPageContainer.cxx  |2 --
 sd/source/ui/sidebar/SlideBackground.cxx  |2 --
 sfx2/source/appl/appinit.cxx  |1 -
 svx/source/sidebar/shadow/ShadowPropertyPanel.hxx |1 -
 svx/source/svdraw/svdetc.cxx  |1 -
 svx/source/svdraw/svdpntv.cxx |5 
+
 sw/inc/docary.hxx |1 -
 sw/source/core/doc/DocumentDrawModelManager.cxx   |1 -
 sw/source/uibase/dbui/mmconfigitem.cxx|1 -
 sw/source/uibase/sidebar/PageColumnControl.hxx|1 -
 sw/source/uibase/sidebar/PageFormatPanel.hxx  |1 -
 sw/source/uibase/sidebar/PageStylesPanel.hxx  |1 -
 sw/source/uibase/uiview/viewtab.cxx   |2 --
 ucb/source/ucp/webdav/SerfInputStream.cxx |2 --
 uui/source/iahndl-locking.cxx |2 --
 uui/source/iahndl.cxx |2 --
 vcl/backendtest/VisualBackendTest.cxx |2 --
 vcl/source/app/scheduler.cxx  |1 -
 vcl/source/app/svdata.cxx |3 
---
 vcl/source/gdi/pdfwriter_impl.cxx |1 -
 vcl/unx/generic/app/salinst.cxx   |1 -
 vcl/unx/generic/fontmanager/fontmanager.cxx   |1 -
 vcl/workben/mtfdemo.cxx   |2 --
 vcl/workben/vcldemo.cxx   |1 -
 xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx |1 -
 53 files changed, 3 insertions(+), 82 deletions(-)

New commits:
commit 3c3f7d784eadd60c053284ec2835675f158d4156
Author: Andrea Gelmini 
Date:   Wed Apr 12 15:31:42 2017 +0200

Removed duplicated includes

No automatic tools. Manual checked and tested.

Change-Id: Ife260fa4e1d786cf81f2917a901664cc54943754
Reviewed-on: https://gerrit.libreoffice.org/36371
Tested-by: Jenkins 
Reviewed-by: Stephan Bergmann 

diff --git a/connectivity/source/drivers/firebird/DatabaseMetaData.cxx 
b/connectivity/source/drivers/firebird/DatabaseMetaData.cxx
index bb1ac1d449dd..9f44363427a5 100644
--- 

[Libreoffice-bugs] [Bug 107132] New: Format Date is not filtered in AutoFilter

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

Bug ID: 107132
   Summary: Format Date is not filtered in AutoFilter
   Product: LibreOffice
   Version: 5.2.6.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nikolay.trufa...@gmail.com

Created attachment 132531
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132531=edit
Contains AutoFilter with data format Date

If you select any date (day, month, year) in the AutoFilter, all rows are
hidden.
Work in Version: 5.2.5.1 (x64) (Windows and Debian)
Not Work in Version Version: 5.2.6.1 (x64) (Windows), Version: 5.2.6.2 (x64)
(Windows and Debian), Version: 5.2.7.0.0 (Debian)

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


[Libreoffice-bugs] [Bug 95429] When copying a slide from another presentation, applying masters is a problem

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

--- Comment #7 from Elmar  ---
A lot has happened since I raised the issue.
I cannot recall how things worked when I raised the issue. However, I have been
doing presentations using various tools, firstly in the Lotus module, but
exclusively in MS Office (because of customer pressure). Some have been very
large.
Currently, the way it works is that I copy and paste the slide from one doc
into another.
I then open up the Masters view, select the template I want and apply it to all
or the relevant slides.
Not hard to do or much effort.

No need to be sorry, Cor Nouws.

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

2017-04-12 Thread Mike Kaganski
 shell/source/win32/spsupp/COMOpenDocuments.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit ca58e823cb35d988f46ba2de96a1c5ec8f71b891
Author: Mike Kaganski 
Date:   Thu Apr 13 07:25:21 2017 +0300

tdf#103058: fix build failed because of missing header

Change-Id: I8cb7a94baad753f5cab07a085ae567d2c65ef5e1
Reviewed-on: https://gerrit.libreoffice.org/36502
Reviewed-by: Mike Kaganski 
Tested-by: Mike Kaganski 

diff --git a/shell/source/win32/spsupp/COMOpenDocuments.cxx 
b/shell/source/win32/spsupp/COMOpenDocuments.cxx
index 5f3af74a8be0..83ceb47296f4 100644
--- a/shell/source/win32/spsupp/COMOpenDocuments.cxx
+++ b/shell/source/win32/spsupp/COMOpenDocuments.cxx
@@ -7,6 +7,8 @@
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
 
+#include 
+
 #include "COMOpenDocuments.hpp"
 #include "spsuppServ.hpp"
 #include "stdio.h"
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-04-12 Thread Ashod Nakashian
 wsd/DocumentBroker.cpp |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit ed51fafecef9424a71cca73edf8bb428d835f372
Author: Ashod Nakashian 
Date:   Wed Apr 12 21:19:51 2017 -0400

wsd: DocBroker is Alive if not flagged to stop

There is a race between creating and adding
a DocBroker into the DocBrokers container
and cleanupDocBrokers is invoked (on timer)
before it had a chance to start its poll
thread. This is exceedingly rare, but it
has happened.

We check that_stop==false flag when deciding
isAlive such that cleanDocBrokers will
not remove it before its thread had
a chance to run (which would happen
after adding it and creating the
ClientSession).

Also, no point in checking isAlive from
the polling thread itself (of course it is
alive).

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

diff --git a/wsd/DocumentBroker.cpp b/wsd/DocumentBroker.cpp
index 3cac2e70..e0c8b05b 100644
--- a/wsd/DocumentBroker.cpp
+++ b/wsd/DocumentBroker.cpp
@@ -242,7 +242,7 @@ void DocumentBroker::pollThread()
 
 // If all sessions have been removed, no reason to linger.
 if ((isLoaded() || _markToDestroy) && notSaving &&
-(_sessions.empty() || !isAlive() || idle))
+(_sessions.empty() || idle))
 {
 LOG_INF("Terminating " << (idle ? "idle" : "dead") <<
 " DocumentBroker for docKey [" << getDocKey() << "].");
@@ -292,8 +292,8 @@ void DocumentBroker::pollThread()
 
 bool DocumentBroker::isAlive() const
 {
-if (_poll->isAlive())
-return true; // Polling thread still running.
+if (!_stop || _poll->isAlive())
+return true; // Polling thread not started or still running.
 
 // Shouldn't have live child process outside of the polling thread.
 return _childProcess && _childProcess->isAlive();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-04-12 Thread Kohei Yoshida
 sc/source/core/tool/token.cxx |   10 ++
 sc/source/ui/docshell/docfunc.cxx |6 --
 sc/source/ui/undo/undoblk.cxx |2 +-
 3 files changed, 15 insertions(+), 3 deletions(-)

New commits:
commit 6d588e65021ad3d00a91a2732b2a6cf4c59b3534
Author: Kohei Yoshida 
Date:   Wed Apr 5 21:09:59 2017 -0400

tdf#92650: handle overwritten references correctly in undo.

Change-Id: Idc3fbd78f8163c97a9cd80a3ff474b6da0349353
Reviewed-on: https://gerrit.libreoffice.org/36496
Reviewed-by: Kohei Yoshida 
Tested-by: Kohei Yoshida 

diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 26075a4278f5..75ef12c08299 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -3167,6 +3167,11 @@ sc::RefUpdateResult ScTokenArray::AdjustReferenceOnMove(
 aAbs = aErrorPos;
 aRes.mbReferenceModified = true;
 }
+else if (rCxt.maRange.In(aAbs))
+{
+// Referenced cell has been overwritten.
+aRes.mbValueChanged = true;
+}
 
 rRef.SetAddress(aAbs, rNewPos);
 rRef.SetFlag3D(aAbs.Tab() != rNewPos.Tab() || 
!rRef.IsTabRel());
@@ -3183,6 +3188,11 @@ sc::RefUpdateResult ScTokenArray::AdjustReferenceOnMove(
 aAbs = aErrorRange;
 aRes.mbReferenceModified = true;
 }
+else if (rCxt.maRange.In(aAbs))
+{
+// Referenced range has been entirely overwritten.
+aRes.mbValueChanged = true;
+}
 
 rRef.SetRange(aAbs, rNewPos);
 // Absolute sheet reference => set 3D flag.
diff --git a/sc/source/ui/docshell/docfunc.cxx 
b/sc/source/ui/docshell/docfunc.cxx
index 1619865cf7e9..76ac2a1aa902 100644
--- a/sc/source/ui/docshell/docfunc.cxx
+++ b/sc/source/ui/docshell/docfunc.cxx
@@ -2839,8 +2839,10 @@ bool ScDocFunc::MoveBlock( const ScRange& rSource, const 
ScAddress& rDestPos,
 function ScDocument::UpdateReference() is called which calls
 ScDrawLayer::MoveCells() which may move away inserted objects to wrong
 positions (e.g. if source and destination range overlaps).*/
-rDoc.CopyFromClip( aPasteDest, aDestMark, InsertDeleteFlags::ALL & 
~(InsertDeleteFlags::OBJECTS),
-nullptr, pClipDoc.get(), true, false, bIncludeFiltered 
);
+
+rDoc.CopyFromClip(
+aPasteDest, aDestMark, InsertDeleteFlags::ALL & 
~(InsertDeleteFlags::OBJECTS),
+pUndoDoc, pClipDoc.get(), true, false, bIncludeFiltered);
 
 // skipped rows and merged cells don't mix
 if ( !bIncludeFiltered && pClipDoc->HasClipFilteredRows() )
diff --git a/sc/source/ui/undo/undoblk.cxx b/sc/source/ui/undo/undoblk.cxx
index dccc583e1317..1141e75655b7 100644
--- a/sc/source/ui/undo/undoblk.cxx
+++ b/sc/source/ui/undo/undoblk.cxx
@@ -1101,7 +1101,7 @@ bool ScUndoPaste::CanRepeat(SfxRepeatTarget& rTarget) 
const
 ScUndoDragDrop::ScUndoDragDrop( ScDocShell* pNewDocShell,
 const ScRange& rRange, ScAddress aNewDestPos, bool bNewCut,
 ScDocument* pUndoDocument, bool bScenario ) :
-ScMoveUndo( pNewDocShell, pUndoDocument, nullptr, SC_UNDO_REFFIRST ),
+ScMoveUndo( pNewDocShell, pUndoDocument, nullptr, SC_UNDO_REFLAST ),
 mnPaintExtFlags( 0 ),
 aSrcRange( rRange ),
 bCut( bNewCut ),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-04-12 Thread Kohei Yoshida
 sc/qa/unit/helper/qahelper.cxx |   38 
 sc/qa/unit/helper/qahelper.hxx |4 ++
 sc/qa/unit/ucalc.hxx   |2 +
 sc/qa/unit/ucalc_formula.cxx   |   63 +
 4 files changed, 107 insertions(+)

New commits:
commit 3a572975704a0d01e458191e8d66ff20ef60e4a8
Author: Kohei Yoshida 
Date:   Wed Apr 12 21:32:56 2017 -0400

tdf#92650: add a unit test for this.

Also add a modern C++11 version of checkOutput(), which should be
used instead of the older variant that is a template function.

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

diff --git a/sc/qa/unit/helper/qahelper.cxx b/sc/qa/unit/helper/qahelper.cxx
index 3c4a42c3f919..f3cb007f0e9d 100644
--- a/sc/qa/unit/helper/qahelper.cxx
+++ b/sc/qa/unit/helper/qahelper.cxx
@@ -490,6 +490,44 @@ ScTokenArray* compileFormula(
 return aComp.CompileString(rFormula);
 }
 
+bool checkOutput(
+ScDocument* pDoc, const ScRange& aOutRange,
+const std::vector& aCheck, const char* pCaption )
+{
+bool bResult = true;
+const ScAddress& s = aOutRange.aStart;
+const ScAddress& e = aOutRange.aEnd;
+svl::GridPrinter printer(e.Row() - s.Row() + 1, e.Col() - s.Col() + 1, 
CALC_DEBUG_OUTPUT != 0);
+SCROW nOutRowSize = e.Row() - s.Row() + 1;
+SCCOL nOutColSize = e.Col() - s.Col() + 1;
+for (SCROW nRow = 0; nRow < nOutRowSize; ++nRow)
+{
+for (SCCOL nCol = 0; nCol < nOutColSize; ++nCol)
+{
+OUString aVal = pDoc->GetString(nCol + s.Col(), nRow + s.Row(), 
s.Tab());
+printer.set(nRow, nCol, aVal);
+const char* p = aCheck[nRow][nCol];
+if (p)
+{
+OUString aCheckVal = OUString::createFromAscii(p);
+bool bEqual = aCheckVal.equals(aVal);
+if (!bEqual)
+{
+std::cout << "Expected: " << aCheckVal << "  Actual: " << 
aVal << std::endl;
+bResult = false;
+}
+}
+else if (!aVal.isEmpty())
+{
+std::cout << "Empty cell expected" << std::endl;
+bResult = false;
+}
+}
+}
+printer.print(pCaption);
+return bResult;
+}
+
 void clearFormulaCellChangedFlag( ScDocument& rDoc, const ScRange& rRange )
 {
 const ScAddress& s = rRange.aStart;
diff --git a/sc/qa/unit/helper/qahelper.hxx b/sc/qa/unit/helper/qahelper.hxx
index 8ffcb047919c..cc4f5d40adc3 100644
--- a/sc/qa/unit/helper/qahelper.hxx
+++ b/sc/qa/unit/helper/qahelper.hxx
@@ -140,6 +140,10 @@ SCQAHELPER_DLLPUBLIC ScTokenArray* compileFormula(
 ScDocument* pDoc, const OUString& rFormula, const ScAddress* pPos = 
nullptr,
 formula::FormulaGrammar::Grammar eGram = 
formula::FormulaGrammar::GRAM_NATIVE );
 
+SCQAHELPER_DLLPUBLIC bool checkOutput(
+ScDocument* pDoc, const ScRange& aOutRange,
+const std::vector& aCheck, const char* pCaption 
);
+
 template
 bool checkOutput(ScDocument* pDoc, const ScRange& aOutRange, const char* 
aOutputCheck[][Size], const char* pCaption)
 {
diff --git a/sc/qa/unit/ucalc.hxx b/sc/qa/unit/ucalc.hxx
index 8a05d9653508..486bb1064e89 100644
--- a/sc/qa/unit/ucalc.hxx
+++ b/sc/qa/unit/ucalc.hxx
@@ -151,6 +151,7 @@ public:
 void testFormulaRefUpdateInsertColumns();
 void testFormulaRefUpdateMove();
 void testFormulaRefUpdateMoveUndo();
+void testFormulaRefUpdateMoveUndo2();
 void testFormulaRefUpdateMoveToSheet();
 void testFormulaRefUpdateDeleteContent();
 void testFormulaRefUpdateDeleteAndShiftLeft();
@@ -554,6 +555,7 @@ public:
 CPPUNIT_TEST(testFormulaRefUpdateInsertColumns);
 CPPUNIT_TEST(testFormulaRefUpdateMove);
 CPPUNIT_TEST(testFormulaRefUpdateMoveUndo);
+CPPUNIT_TEST(testFormulaRefUpdateMoveUndo2);
 CPPUNIT_TEST(testFormulaRefUpdateMoveToSheet);
 CPPUNIT_TEST(testFormulaRefUpdateDeleteContent);
 CPPUNIT_TEST(testFormulaRefUpdateDeleteAndShiftLeft);
diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx
index 045e6976b9d8..9240320fac2a 100644
--- a/sc/qa/unit/ucalc_formula.cxx
+++ b/sc/qa/unit/ucalc_formula.cxx
@@ -2263,6 +2263,69 @@ void Test::testFormulaRefUpdateMoveUndo()
 m_pDoc->DeleteTab(0);
 }
 
+void Test::testFormulaRefUpdateMoveUndo2()
+{
+m_pDoc->InsertTab(0, "Test");
+
+sc::AutoCalcSwitch aACSwitch(*m_pDoc, true); // turn auto calc on.
+
+std::vector aData = {
+{ "1", "2", "=A2*10",  "=SUM(A1:B1)" },
+{ "3", "4", "=SUM(A2:B2)", "=SUM(A2:B2)" },
+{ "=SUM(A1:B1)" },
+};
+
+ScRange aOutRange = insertRangeData(m_pDoc, ScAddress(0,0,0), aData);
+
+std::vector aCheckInitial = {
+{ "1", "2",

[Libreoffice-bugs] [Bug 107115] Font Calibri Light not rendered properly

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

--- Comment #4 from LibreTraining  ---
(In reply to Cor Nouws from comment #0)

>   > 'Calibri Light' is rendered wrong, too wide
> 
> The fonts are installed for the test.
>   (calibri.ttf, calibrib.ttf, calibrii.ttf, calibriz.ttf)
> Looking at Format Character, tab Font, LibreOffice claims the font is not
> installed..

Are you sure you have Calibri Light installed properly?
The correct font files are:
 - calibril.ttf - Calibri Light
 - calibrili.ttf - Calibri Light Italics


I found that these fonts were supposedly installed in Windows 7 in a 2015
update.
But they did not appear in the font list in my Windows 7 control panel or font
managers.
Re-installed the update - files are there, still not installed per Windows.
Used a font manager to install those font files.
Worked. 
Fonts now appear in Windows fonts manager, and my font manager apps, and LO.

Now that the fonts are installed properly ...
Both documents look like they should.

This tells me that
 - the fonts did not get embedded in the file properly, or
 - LibreOffice cannot read the embedded font file properly.

If the font file was embedded properly and LO works properly,
I should have been able to see the font before I got the font installed
properly.

-- 
You are receiving this mail because:
You 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] cppunit.git: configure.ac include/cppunit include/msvc6

2017-04-12 Thread Markus Mohrhard
 configure.ac   |1 
 include/cppunit/ui/Makefile.am |2 
 include/cppunit/ui/mfc/Makefile.am |5 --
 include/cppunit/ui/mfc/MfcTestRunner.h |   76 -
 include/cppunit/ui/mfc/TestRunner.h|   21 -
 include/msvc6/testrunner/TestRunner.h  |   17 ---
 6 files changed, 1 insertion(+), 121 deletions(-)

New commits:
commit f8bd289315041e24853b74b601131f4745c3feb3
Author: Markus Mohrhard 
Date:   Thu Apr 13 04:20:19 2017 +0200

remove also all references to mfc

diff --git a/configure.ac b/configure.ac
index e7b4617..b34947a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -130,7 +130,6 @@ AC_CONFIG_FILES([
include/cppunit/portability/Makefile
include/cppunit/tools/Makefile
include/cppunit/ui/Makefile
-   include/cppunit/ui/mfc/Makefile
include/cppunit/ui/text/Makefile
doc/Makefile
doc/Doxyfile
diff --git a/include/cppunit/ui/Makefile.am b/include/cppunit/ui/Makefile.am
index 24cd2a5..4c4ceea 100644
--- a/include/cppunit/ui/Makefile.am
+++ b/include/cppunit/ui/Makefile.am
@@ -1 +1 @@
-SUBDIRS = text mfc
+SUBDIRS = text
diff --git a/include/cppunit/ui/mfc/Makefile.am 
b/include/cppunit/ui/mfc/Makefile.am
deleted file mode 100644
index 534b8cb..000
--- a/include/cppunit/ui/mfc/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-libcppunitincludedir = $(includedir)/cppunit/ui/mfc
-
-libcppunitinclude_HEADERS = \
-   TestRunner.h \
-   MfcTestRunner.h
diff --git a/include/cppunit/ui/mfc/MfcTestRunner.h 
b/include/cppunit/ui/mfc/MfcTestRunner.h
deleted file mode 100644
index b2a7ed7..000
--- a/include/cppunit/ui/mfc/MfcTestRunner.h
+++ /dev/null
@@ -1,76 +0,0 @@
-#ifndef CPPUNITUI_MFC_MFCTESTRUNNER_H
-#define CPPUNITUI_MFC_MFCTESTRUNNER_H
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-#include 
-#include 
-
-/* Refer to MSDN documentation to know how to write and use MFC extension DLL:
-   
mk:@MSITStore:h:\DevStudio\MSDN\98VSa\1036\vcmfc.chm::/html/_mfcnotes_tn033.htm#_mfcnotes_how_to_write_an_mfc_extension_dll
-   
-   This can be found in the index with "mfc extension"
-   The basic:
-   Using:
-   - your application must use MFC DLL
-   - memory allocation is done using the same heap
-   - you must define the symbol _AFX_DLL
-
-   Building:
-   - you must define the symbol _AFX_DLL and _AFX_EXT
-   - export class using AFX_EXT_CLASS
- */
-
-CPPUNIT_NS_BEGIN
-
-  class Test;
-  class TestSuite;
-
-
-/*! \brief MFC test runner.
- * \ingroup ExecutingTest
- *
- * Use this to launch the MFC TestRunner. Usually called from you CWinApp 
subclass:
- *
- * \code
- * #include 
- * #include 
- *
- * void 
- * CHostAppApp::RunUnitTests()
- * {
- *   CppUnit::MfcTestRunner runner;
- *   runner.addTest( CppUnit::TestFactoryRegistry::getRegistry().makeTest() );
- *
- *   runner.run();
- * }
- * \endcode
- * \see CppUnit::TextTestRunner, CppUnit::TestFactoryRegistry.
- */
-class AFX_EXT_CLASS MfcTestRunner
-{
-public:
-  MfcTestRunner();
-  virtual ~MfcTestRunner();
-
-  void run();
-
-  void addTest( Test *test );
-
-  void addTests( const std::vector  );
-
-protected:
-  Test *getRootTest();
-
-  TestSuite *m_suite;
-
-  typedef std::vector Tests;
-  Tests m_tests;
-};
-
-
-CPPUNIT_NS_END
-
-#endif // CPPUNITUI_MFC_MFCTESTRUNNER_H
diff --git a/include/cppunit/ui/mfc/TestRunner.h 
b/include/cppunit/ui/mfc/TestRunner.h
deleted file mode 100644
index c4d6aff..000
--- a/include/cppunit/ui/mfc/TestRunner.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef CPPUNITUI_MFC_TESTRUNNER_H
-#define CPPUNITUI_MFC_TESTRUNNER_H
-
-#include 
-
-CPPUNIT_NS_BEGIN
-
-#if defined(CPPUNIT_HAVE_NAMESPACES)
-namespace MfcUi
-{
-  /*! Mfc TestRunner (DEPRECATED).
-   * \deprecated Use CppUnit::MfcTestRunner instead.
-   */
-  typedef CPPUNIT_NS::MfcTestRunner TestRunner;
-}
-#endif // defined(CPPUNIT_HAVE_NAMESPACES)
-
-CPPUNIT_NS_END
-
-
-#endif  // CPPUNITUI_MFC_TESTRUNNER_H
diff --git a/include/msvc6/testrunner/TestRunner.h 
b/include/msvc6/testrunner/TestRunner.h
deleted file mode 100644
index 0bee97a..000
--- a/include/msvc6/testrunner/TestRunner.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef CPPUNIT_MSVC_TESTRUNNER_H
-#define CPPUNIT_MSVC_TESTRUNNER_H
-
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-#include 
-
-/*! \brief MFC test runner (DEPRECATED)
- * \ingroup ExecutingTest
- * \deprecated Use CppUnit::MfcUi::TestRunner instead.
- */
-typedef CPPUNIT_NS::MfcTestRunner TestRunner;
-
-#endif  // CPPUNIT_MSVC_TESTRUNNER_H
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-04-12 Thread Henry Castro
 wsd/FileServer.cpp |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 1a580cc993bae2203c0c3ae905856debca2aa04b
Author: Henry Castro 
Date:   Wed Apr 12 22:11:23 2017 -0400

wsd: add mime type image/png

IE11 requires explicit content-type image/png

Change-Id: Ie0a886bc9b6af50be788456a93583176788c5315

diff --git a/wsd/FileServer.cpp b/wsd/FileServer.cpp
index 53583c6f..43216996 100644
--- a/wsd/FileServer.cpp
+++ b/wsd/FileServer.cpp
@@ -168,6 +168,8 @@ void FileServerRequestHandler::handleRequest(const 
HTTPRequest& request, Poco::M
 mimeType = "text/css";
 else if (fileType == "html")
 mimeType = "text/html";
+else if (fileType == "png")
+mimeType = "image/png";
 else if (fileType == "svg")
 mimeType = "image/svg+xml";
 else
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] cppunit.git: include/cppunit NEWS src/cppunit

2017-04-12 Thread Markus Mohrhard
 NEWS  |2 +
 include/cppunit/config/SelectDllLoader.h  |7 
 src/cppunit/BeOsDynamicLibraryManager.cpp |   49 --
 src/cppunit/Makefile.am   |1 
 src/cppunit/cppunit.vcxproj   |1 
 src/cppunit/cppunit_dll.vcxproj   |1 
 6 files changed, 2 insertions(+), 59 deletions(-)

New commits:
commit de5eab33cb30f15f85ac8f197bd571b7695566a6
Author: Markus Mohrhard 
Date:   Thu Apr 13 04:08:37 2017 +0200

remove BeOS special support

diff --git a/NEWS b/NEWS
index b1e0759..f8ef782 100644
--- a/NEWS
+++ b/NEWS
@@ -34,6 +34,8 @@
 
   - msvc6 plugin
 
+  - BeOS support
+
   New in CppUnit 1.13.2:
   -
 
diff --git a/include/cppunit/config/SelectDllLoader.h 
b/include/cppunit/config/SelectDllLoader.h
index dc1c011..9f8c0d6 100644
--- a/include/cppunit/config/SelectDllLoader.h
+++ b/include/cppunit/config/SelectDllLoader.h
@@ -15,9 +15,6 @@
  * CPPUNIT_HAVE_WIN32_DLL_LOADER
  * If defined, Win32 implementation of DynamicLibraryManager will be used.
  * 
- * CPPUNIT_HAVE_BEOS_DLL_LOADER
- * If defined, BeOs implementation of DynamicLibraryManager will be used.
- * 
  * CPPUNIT_HAVE_UNIX_DLL_LOADER
  * If defined, Unix implementation (dlfcn.h) of DynamicLibraryManager will be 
used.
  */
@@ -50,10 +47,6 @@
 #undef CPPUNIT_PLUGIN_EXPORT
 #define CPPUNIT_PLUGIN_EXPORT extern "C" __declspec(dllexport)
 
-// Is BeOS platform ?
-#elif defined(__BEOS__)
-#define CPPUNIT_HAVE_BEOS_DLL_LOADER 1
-
 // Is Unix platform and have shl_load() (hp-ux)
 #elif defined(CPPUNIT_HAVE_SHL_LOAD)
 #define CPPUNIT_HAVE_UNIX_SHL_LOADER 1
diff --git a/src/cppunit/BeOsDynamicLibraryManager.cpp 
b/src/cppunit/BeOsDynamicLibraryManager.cpp
deleted file mode 100644
index b8568be..000
--- a/src/cppunit/BeOsDynamicLibraryManager.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-#include 
-
-#if defined(CPPUNIT_HAVE_BEOS_DLL_LOADER)
-#include 
-
-#include 
-
-
-CPPUNIT_NS_BEGIN
-
-
-DynamicLibraryManager::LibraryHandle 
-DynamicLibraryManager::doLoadLibrary( const std::string  )
-{
-  return (LibraryHandle)::load_add_on( libraryName.c_str() );
-}
-
-
-void 
-DynamicLibraryManager::doReleaseLibrary()
-{
-  ::unload_add_on( (image_id)m_libraryHandle );
-}
-
-
-DynamicLibraryManager::Symbol 
-DynamicLibraryManager::doFindSymbol( const std::string  )
-{
-  void *symbolPointer;
-  if ( ::get_image_symbol( (image_id)m_libraryHandle, 
-   symbol.c_str(), 
-   B_SYMBOL_TYPE_TEXT, 
-) == B_OK )
-return symnolPointer;
-  return NULL;
-}
-
-
-std::string 
-DynamicLibraryManager::getLastErrorDetail() const
-{
-  return "";
-}
-
-
-CPPUNIT_NS_END
-
-
-#endif // defined(CPPUNIT_HAVE_BEOS_DLL_LOADER)
diff --git a/src/cppunit/Makefile.am b/src/cppunit/Makefile.am
index 7134bad..bb67a8a 100644
--- a/src/cppunit/Makefile.am
+++ b/src/cppunit/Makefile.am
@@ -10,7 +10,6 @@ lib_LTLIBRARIES = libcppunit.la
 libcppunit_la_SOURCES = \
   AdditionalMessage.cpp \
   Asserter.cpp \
-  BeOsDynamicLibraryManager.cpp \
   BriefTestProgressListener.cpp \
   CompilerOutputter.cpp \
   DefaultProtector.h \
diff --git a/src/cppunit/cppunit.vcxproj b/src/cppunit/cppunit.vcxproj
index 7b7b270..43c63a0 100644
--- a/src/cppunit/cppunit.vcxproj
+++ b/src/cppunit/cppunit.vcxproj
@@ -299,7 +299,6 @@
 
 
 
-
 
 
 
diff --git a/src/cppunit/cppunit_dll.vcxproj b/src/cppunit/cppunit_dll.vcxproj
index 71ef783..043e977 100644
--- a/src/cppunit/cppunit_dll.vcxproj
+++ b/src/cppunit/cppunit_dll.vcxproj
@@ -309,7 +309,6 @@ copy "$(TargetDir)$(TargetName).lib" 
..\..\lib\$(TargetName).lib
 
 
 
-
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] cppunit.git: contrib/bc5 contrib/msvc contrib/readme.txt doc/CppUnit-win.dox examples/examples2008.sln examples/examples.dsw examples/msvc6 examples/ReadMe.txt include/msvc6 INST

2017-04-12 Thread Markus Mohrhard
 INSTALL-WIN32.txt |   30 
 Makefile.am   |4 
 NEWS  |4 
 contrib/msvc/AddingUnitTestMethod.dsm |  170 -
 contrib/msvc/CppUnit.WWTpl|  486 
 contrib/msvc/CppUnitDev.WWTpl |  488 
 contrib/msvc/readme.txt   |   10 
 contrib/readme.txt|   18 
 dev/null  |binary
 doc/CppUnit-win.dox   |3 
 examples/ReadMe.txt   |3 
 examples/examples.dsw |   60 
 examples/examples2008.sln |   20 
 examples/msvc6/CppUnitTestApp/CppUnitTestApp.cpp  |   81 
 examples/msvc6/CppUnitTestApp/CppUnitTestApp.dsp  |  489 
 examples/msvc6/CppUnitTestApp/CppUnitTestApp.dsw  |   80 
 examples/msvc6/CppUnitTestApp/CppUnitTestApp.h|   52 
 examples/msvc6/CppUnitTestApp/CppUnitTestApp.rc   |  219 -
 examples/msvc6/CppUnitTestApp/CppUnitTestApp.vcproj   | 1164 
--
 examples/msvc6/CppUnitTestApp/CppUnitTestAppDlg.cpp   |  170 -
 examples/msvc6/CppUnitTestApp/CppUnitTestAppDlg.h |   49 
 examples/msvc6/CppUnitTestApp/ReadMe.txt  |   88 
 examples/msvc6/CppUnitTestApp/Resource.h  |   21 
 examples/msvc6/CppUnitTestApp/StdAfx.cpp  |8 
 examples/msvc6/CppUnitTestApp/StdAfx.h|   28 
 examples/msvc6/CppUnitTestApp/res/CppUnitTestApp.rc2  |   13 
 examples/msvc6/HostApp/ExampleTestCase.cpp|   45 
 examples/msvc6/HostApp/ExampleTestCase.h  |   38 
 examples/msvc6/HostApp/HostApp.cpp|  174 -
 examples/msvc6/HostApp/HostApp.dsp|  448 ---
 examples/msvc6/HostApp/HostApp.dsw|   80 
 examples/msvc6/HostApp/HostApp.h  |   53 
 examples/msvc6/HostApp/HostApp.rc |  389 ---
 examples/msvc6/HostApp/HostApp.vcproj | 1115 
-
 examples/msvc6/HostApp/HostAppDoc.cpp |   80 
 examples/msvc6/HostApp/HostAppDoc.h   |   56 
 examples/msvc6/HostApp/HostAppView.cpp|  105 
 examples/msvc6/HostApp/HostAppView.h  |   66 
 examples/msvc6/HostApp/MainFrm.cpp|  107 
 examples/msvc6/HostApp/MainFrm.h  |   57 
 examples/msvc6/HostApp/Makefile.am|4 
 examples/msvc6/HostApp/Resource.h |   20 
 examples/msvc6/HostApp/StdAfx.cpp |6 
 examples/msvc6/HostApp/StdAfx.h   |   26 
 examples/msvc6/HostApp/res/HostApp.rc2|   13 
 examples/msvc6/HostApp/res/Makefile.am|4 
 examples/msvc6/Makefile.am|2 
 include/msvc6/DSPlugin/TestRunnerDSPluginVC6.h|  190 -
 include/msvc6/DSPlugin/TestRunnerDSPluginVC6_i.c  |   50 
 include/msvc6/testrunner/TestPlugInInterface.h|3 
 src/CppUnitLibraries2010.sln  |   11 
 src/DllPlugInTester/DllPlugInTester.cpp   |2 
 src/Makefile.am   |3 
 src/msvc6/DSPlugIn/COMHelper.h|  111 
 src/msvc6/DSPlugIn/DSAddIn.cpp|  110 
 src/msvc6/DSPlugIn/DSAddIn.h  |   59 
 src/msvc6/DSPlugIn/DSPlugIn.cpp   |  170 -
 src/msvc6/DSPlugIn/DSPlugIn.def   |   11 
 src/msvc6/DSPlugIn/DSPlugIn.h |   23 
 src/msvc6/DSPlugIn/DSPlugIn.rc|  156 -
 src/msvc6/DSPlugIn/DSPlugIn.rgs   |   32 
 src/msvc6/DSPlugIn/ReadMe.txt |   96 
 src/msvc6/DSPlugIn/StdAfx.cpp |7 
 src/msvc6/DSPlugIn/StdAfx.h   |   76 
 src/msvc6/DSPlugIn/TestRunnerDSPlugin.idl |   43 
 src/msvc6/DSPlugIn/res/DSPlugIn.rc2   |   13 
 

[Libreoffice-bugs] [Bug 107056] Character deformed when exporting PDF containing Source Han Serif font

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

Hiunn-hué  changed:

   What|Removed |Added

 CC||hiunnhue...@ymail.com

--- Comment #4 from Hiunn-hué  ---
Created attachment 132530
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132530=edit
Output Sample 5.2.6.2


Reproduced with:

Version: 5.2.6.2
Build ID: a3100ed2409ebf1c212f5048fbe377c281438fdc
CPU Threads: 4; OS Version: Windows 6.2; UI Render: default; 
Locale: zh-TW (zh_TW); Calc: group 

Font: 
Noto Serif CJK TC (language-specific OTF)

-- 
You are receiving this mail because:
You 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] cppunit.git: configure.ac examples/qt examples/ReadMe.txt include/cppunit INSTALL-WIN32.txt Makefile.am NEWS src/qttestrunner

2017-04-12 Thread Markus Mohrhard
 INSTALL-WIN32.txt   |2 
 Makefile.am |1 
 NEWS|4 
 configure.ac|1 
 examples/ReadMe.txt |1 
 examples/qt/ExampleTestCases.cpp|   42 -
 examples/qt/ExampleTestCases.h  |   38 -
 examples/qt/Main.cpp|   19 
 examples/qt/make_example|   10 
 examples/qt/make_example.bat|7 
 examples/qt/qt_example.pro  |   96 --
 examples/qt/qt_example.sln  |   29 
 examples/qt/qt_example.vcproj   |  164 
 examples/qt/qt_example_dll.vcproj   |  164 
 examples/qt/run.bat |2 
 include/cppunit/ui/Makefile.am  |2 
 include/cppunit/ui/qt/Config.h  |   21 
 include/cppunit/ui/qt/Makefile.am   |6 
 include/cppunit/ui/qt/QtTestRunner.h|   85 --
 include/cppunit/ui/qt/TestRunner.h  |   11 
 src/qttestrunner/MostRecentTests.cpp|   68 -
 src/qttestrunner/MostRecentTests.h  |   62 -
 src/qttestrunner/QtTestRunner.cpp   |   70 --
 src/qttestrunner/TestBrowserDlgImpl.cpp |   83 --
 src/qttestrunner/TestBrowserDlgImpl.h   |   32 
 src/qttestrunner/TestFailureInfo.cpp|   21 
 src/qttestrunner/TestFailureInfo.h  |   43 -
 src/qttestrunner/TestFailureListViewItem.cpp|   29 
 src/qttestrunner/TestFailureListViewItem.h  |   48 -
 src/qttestrunner/TestListViewItem.cpp   |   27 
 src/qttestrunner/TestListViewItem.h |   43 -
 src/qttestrunner/TestRunnerDlgImpl.cpp  |  260 ---
 src/qttestrunner/TestRunnerDlgImpl.h|   58 -
 src/qttestrunner/TestRunnerFailureEvent.cpp |   28 
 src/qttestrunner/TestRunnerFailureEvent.h   |   48 -
 src/qttestrunner/TestRunnerModel.cpp|  221 --
 src/qttestrunner/TestRunnerModel.h  |  154 
 src/qttestrunner/TestRunnerModelThreadInterface.cpp |8 
 src/qttestrunner/TestRunnerModelThreadInterface.h   |   35 -
 src/qttestrunner/TestRunnerTestCaseRunEvent.cpp |   26 
 src/qttestrunner/TestRunnerTestCaseRunEvent.h   |   45 -
 src/qttestrunner/TestRunnerThread.cpp   |   38 -
 src/qttestrunner/TestRunnerThread.h |   55 -
 src/qttestrunner/TestRunnerThreadEvent.cpp  |   19 
 src/qttestrunner/TestRunnerThreadEvent.h|   37 -
 src/qttestrunner/TestRunnerThreadFinishedEvent.cpp  |   25 
 src/qttestrunner/TestRunnerThreadFinishedEvent.h|   42 -
 src/qttestrunner/make_lib   |   10 
 src/qttestrunner/make_lib.bat   |7 
 src/qttestrunner/qttestrunnerlib.pro|  149 
 src/qttestrunner/testbrowserdlg.ui  |  148 
 src/qttestrunner/testrunnerdlg.ui   |  687 
 52 files changed, 5 insertions(+), 3326 deletions(-)

New commits:
commit dad270be0b9b1d10b2aeb8960603a06677b75b2b
Author: Markus Mohrhard 
Date:   Thu Apr 13 02:57:18 2017 +0200

remove the qt test runner that depends on ancient qt

diff --git a/INSTALL-WIN32.txt b/INSTALL-WIN32.txt
index 0f78d29..76c5e46 100644
--- a/INSTALL-WIN32.txt
+++ b/INSTALL-WIN32.txt
@@ -114,8 +114,6 @@ cppunit_dll.dll : CppUnit dynamic 
library (DLL) "Multithreaded DLL"
 cppunit_dll.lib: CppUnit dynamic import library 
"Multithreaded DLL"
 cppunitd_dll.dll   : CppUnit dynamic library (DLL) "Debug 
Multithreaded DLL"
 cppunitd_dll.lib   : CppUnit dynamic import library "Debug 
Multithreaded DLL"
-qttestrunner.dll   : QT TestRunner dynamic library (DLL) 
"Multithreaded DLL"
-qttestrunner.lib   : QT TestRunner import library "Multithreaded 
DLL"
 testrunner.dll : MFC TestRunner dynamic library (DLL) 
"Multithreaded DLL"
 testrunner.lib : MFC TestRunner import library "Multithreaded 
DLL"
 testrunnerd.dll: MFC TestRunner dynamic library (DLL) 
"Debug Multithreaded DLL"
diff --git a/Makefile.am b/Makefile.am
index aa33e15..fc5a645 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -42,7 +42,6 @@ m4internal = \
 
 unusedfolders = \
src/msvc6 \
-   src/qttestrunner \
include/msvc6
 
 EXTRA_DIST = \
diff --git a/NEWS b/NEWS
index eee1a75..a59dd83 100644
--- a/NEWS
+++ b/NEWS
@@ -26,6 +26,10 @@
 * Test Plug-in Runner: 
   - Fixed crash on Win64 in test runner (fdo#81433)
 
+* Removed features
+
+  - QT test runner
+
   New in CppUnit 1.13.2:
   

[Libreoffice-bugs] [Bug 107131] New: EDITING: Not all table fields configured in EDIT mode are displayed in non-EDIT mode

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

Bug ID: 107131
   Summary: EDITING: Not all table fields configured in EDIT mode
are displayed in non-EDIT mode
   Product: LibreOffice
   Version: 5.3.2.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ostersund18...@gmail.com

Description:
In TABLES mode, I have used EDIT to configure a table containing 39 fields and
can successfully enter values into all fields and/or view the contents of all
fields using forms in FORMS mode.

However, if I am in TABLES mode and just double-click on a table name, some
fields are not shown. A similar result occurs in QUERIES mode if I select a
query which asks for all fields in the table.




Steps to Reproduce:
To assist in re-creating the problem, my configuration for the table is :-

Field#  TypeAuto?   Entry?  Length  Format

1(key)  INTEGER Y   -   10  0
2   VARCHAR_IGNORECASE  -   Y   50  @
3   VARCHAR_IGNORECASE  -   Y   50  @
4   DATE-   N   -   01/01/1900
5   DATE-   N   -   01/01/1900
6   DATE-   N   -   01/01/1900
7   DATE-   N   -   01/01/1900
8   LONGVARCHAR -   N   0   @
9   INTEGER N   N   10  0
10  INTEGER N   N   10  0
11  INTEGER N   N   10  0
12  INTEGER N   N   10  0
13  VARCHAR_IGNORECASE  -   N   50  @
14  VARCHAR_IGNORECASE  -   N   100 @
15  VARCHAR_IGNORECASE  -   N   100 @
16  VARCHAR_IGNORECASE  -   N   50  @
17  VARCHAR_IGNORECASE  -   N   50  @
18  VARCHAR_IGNORECASE  -   N   50  @
19  BOOLEAN -   N   0   -
20  VARCHAR_IGNORECASE  -   N   50  @
21  VARCHAR_IGNORECASE  -   N   50  @
22  VARCHAR_IGNORECASE  -   N   100 @
23  VARCHAR_IGNORECASE  -   N   100 @
24  VARCHAR_IGNORECASE  -   N   50  @
25  VARCHAR -   Y   1   @
26  VARCHAR_IGNORECASE  -   N   100 @
27  VARCHAR_IGNORECASE  -   N   100 @
28  VARCHAR_IGNORECASE  -   N   150 @
29  VARCHAR_IGNORECASE  -   N   150 @
30  VARCHAR_IGNORECASE  -   N   150 @
31  VARCHAR_IGNORECASE  -   N   150 @
32  VARCHAR_IGNORECASE  -   N   150 @
33  DATE-   N   -   01/01/1900
34  INTEGER N   N   10  0
35  VARCHAR_IGNORECASE  -   N   50  @
36  VARCHAR_IGNORECASE  -   N   150 @
37  BOOLEAN -   Y   0   -
38  BOOLEAN -   Y   0   -
39  VARCHAR_IGNORECASE  -   N   250 @

Actual Results:  
Only 22 columns are displayed - in my configuration, they correspond to the
first 11 fields and the last 11 fields.

Expected Results:
All 39 columns should be displayed.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like
Gecko

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


[Libreoffice-bugs] [Bug 107115] Font Calibri Light not rendered properly

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

LibreTraining  changed:

   What|Removed |Added

 CC||libretraining.tutorials@gma
   ||il.com

--- Comment #3 from LibreTraining  ---
The file - Test_FontCalibriLight_ORIG_withFontsEmbedded.docx
does not appear to have Calibri Light embedded.

I opened the file in Windows 7 x64.
Calibri Light is included with Windows 8 so I do not have that font installed.

When I open the file Test_FontCalibriLight_ORIG_withFontsEmbedded.docx
and insert my cursor in the text which is supposed to be Light
the LibreOffice font list shows that font name in italics.

So according to LibreOffice that font is not available.
And the text all looks the same as in your screenshot image.

I extracted the DOCX file and there are 13 font files in there.
But obviously I cannot tell which is which.

It appears that for some reason LibreOffice is not seeing that embedded font.
If it is actually embedded.
You both have the font installed; I do not.

So for me this is confirmed.


Tested on:
Version: 5.3.2.2 (x64)
Build ID: 6cd4f1ef626f15116896b1d8e1398b56da0d0ee1
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; Layout Engine:
new; 
Locale: en-US (en_US); Calc: group

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


[Libreoffice-bugs] [Bug 106990] font rendering got worse looking in 5.3.2.2 ( for Default rendering, OpenGL not affected)

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

Lenge  changed:

   What|Removed |Added

 CC||spam...@gmx.net

--- Comment #40 from Lenge  ---
I can confirm this bug on Windows 8 and 8.1.

On all versions before 5.3.2, default (non-OpenGL) font rendering was crispy,
sharp and clear. Since 5.3.2, it looks ugly and blurry. With OpenGL turned on,
it *always* looked ugly and blurry (which is why I always left GL turned off).
This experience is exactly the same on at least six different monitors (all of
which are traditional non-HiDPI).

The rendering of all other applications (including Windows itself, Firefox, and
Thunderbird) is still sharp and clear on the same monitors.

Please fix this bug! Current rendering becomes a pain in the eye after some
time and makes it extremely hard to work for a longer time.

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


[Libreoffice-bugs] [Bug 102062] [META] Notebookbar: bugs and enhancements

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

Xisco Faulí  changed:

   What|Removed |Added

 Depends on||107083


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107083
[Bug 107083] notebooktoolbar placement rendering update between different
content
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107083] notebooktoolbar placement rendering update between different content

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Blocks||102062


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107085] notebookbar show/hide group by button

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Blocks||102062


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 102062] [META] Notebookbar: bugs and enhancements

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

Xisco Faulí  changed:

   What|Removed |Added

 Depends on||107129


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 102062] [META] Notebookbar: bugs and enhancements

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

Xisco Faulí  changed:

   What|Removed |Added

 Depends on||107085


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107085
[Bug 107085] notebookbar show/hide group by button
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107084] add menubar xml stuff to notebookbar

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Blocks||102062


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 102062] [META] Notebookbar: bugs and enhancements

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

Xisco Faulí  changed:

   What|Removed |Added

 Depends on||107084


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107084
[Bug 107084] add menubar xml stuff to notebookbar
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107129] notebookbar update priority feature

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Blocks||102062


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 102062] [META] Notebookbar: bugs and enhancements

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

Xisco Faulí  changed:

   What|Removed |Added

 Depends on||107128


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107128] Define background color for notebookbar

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Blocks||102062


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107127] insert draw context- for notebookbar instead of open the toolbar

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Blocks||102062


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 102062] [META] Notebookbar: bugs and enhancements

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

Xisco Faulí  changed:

   What|Removed |Added

 Depends on||107127


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107127
[Bug 107127] insert draw context- for notebookbar instead of open the toolbar
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107108] When inserting a formula in a calc cell "+" symbol is substitued by "H" letter

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

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||xiscofa...@libreoffice.org
 Resolution|--- |WORKSFORME

--- Comment #3 from Xisco Faulí  ---
> User Profile Reset: Yes and its good with a new profile 

Sometimes user profile gets corrupted and weird things start to happen, that's
why we ask to reset the profile to be sure it's not corrupted.
I think we can close this bug as RESOLVED WORKSFORME as the problem is fixed
after resetting the profile
Thanks for reporting anyway.

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


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

2017-04-12 Thread Eike Rathke
 sc/source/core/data/postit.cxx |   32 
 1 file changed, 20 insertions(+), 12 deletions(-)

New commits:
commit b9573789b5f47d67e4cb881aaa0fbdb3cb25fb31
Author: Eike Rathke 
Date:   Thu Apr 13 00:46:33 2017 +0200

finally switch the workaround off

Change-Id: I284292a2749c2b38ef874315d5b526e403d578e8

diff --git a/sc/source/core/data/postit.cxx b/sc/source/core/data/postit.cxx
index 225b46edcf76..c0a47df3c99c 100644
--- a/sc/source/core/data/postit.cxx
+++ b/sc/source/core/data/postit.cxx
@@ -697,8 +697,9 @@ void ScCaptionPtr::decRefAndDestroy()
 assert(!mpNext);// this must be one and only one
 assert(mpCaption);
 
-#if 1
-// FIXME: there are still cases where the caption pointer is dangling
+#if 0
+// Quick workaround for when there are still cases where the caption
+// pointer is dangling
 mpCaption = nullptr;
 mbNotOwner = false;
 #else
commit 6c0e633e79e3a8af075ddc17e98ff390e66cd496
Author: Eike Rathke 
Date:   Thu Apr 13 00:34:34 2017 +0200

turn assert into SAL_INFO

The old assert conditions don't hold anymore since 
removeFromDrawPageAndFree()
only deletes the SdrCaptionObj on the last refcount, but info can be useful.

Change-Id: I456149b8799a0509dcd7a2da09d627fb0de1a912

diff --git a/sc/source/core/data/postit.cxx b/sc/source/core/data/postit.cxx
index ee8f82ee0a2c..225b46edcf76 100644
--- a/sc/source/core/data/postit.cxx
+++ b/sc/source/core/data/postit.cxx
@@ -1135,20 +1135,16 @@ void ScPostIt::RemoveCaption()
 if (pDrawLayer == maNoteData.mxCaption->GetModel())
 maNoteData.mxCaption.removeFromDrawPageAndFree();
 
-#if 0
-// Either the caption object is gone or, because of Undo or clipboard is
-// held in at least two instances, or only one instance in Undo because the
-// original sheet in this document is just deleted, or the Undo document is
-// just destroyed which leaves us with one reference.
-// Let's detect other use cases..
-assert(!maNoteData.mxCaption || maNoteData.mxCaption.getRefs() >= 2 ||
-(!mrDoc.IsUndo() && !mrDoc.IsClipboard()) || (mrDoc.IsUndo() && 
mrDoc.IsInDtorClear()));
-#endif
+SAL_INFO("sc.core","ScPostIt::RemoveCaption - refs: " << 
maNoteData.mxCaption.getRefs() <<
+"  IsUndo: " << mrDoc.IsUndo() << "  IsClip: " << 
mrDoc.IsClipboard() <<
+"  Dtor: " << mrDoc.IsInDtorClear());
 
-// Forget the caption object if removeFromDrawPageAndFree() above did not
-// free it.
+// Forget the caption object if removeFromDrawPageAndFree() did not free 
it.
 if (maNoteData.mxCaption)
+{
+SAL_INFO("sc.core","ScPostIt::RemoveCaption - forgetting one ref");
 maNoteData.mxCaption.forget();
+}
 }
 
 ScCaptionPtr ScNoteUtil::CreateTempCaption(
commit 06e427c24d75311c0ab79d2da586b961881db766
Author: Eike Rathke 
Date:   Wed Apr 12 23:24:34 2017 +0200

control deletion of SdrCaptionObj within ScCaptionPtr by refcount

I guess this is about the first time ever that repeated Undo and Redo of
Cut of a cell comment does not crash..

Change-Id: I493a0a5439efde133a07d73ddcbcdf5bda4bc276

diff --git a/sc/source/core/data/postit.cxx b/sc/source/core/data/postit.cxx
index 20f2f485bfe4..ee8f82ee0a2c 100644
--- a/sc/source/core/data/postit.cxx
+++ b/sc/source/core/data/postit.cxx
@@ -761,7 +761,9 @@ void ScCaptionPtr::removeFromDrawPageAndFree( bool 
bIgnoreUndo )
 }
 // remove the object from the drawing page, delete if undo is disabled
 removeFromDrawPage( *pDrawPage );
-if (!bRecording)
+// If called from outside mnRefs must be 1 to delete. If called from
+// decRefAndDestroy() mnRefs is already 0.
+if (!bRecording && getRefs() <= 1)
 {
 SdrObject* pObj = release();
 SdrObject::Free( pObj );
@@ -1133,6 +1135,7 @@ void ScPostIt::RemoveCaption()
 if (pDrawLayer == maNoteData.mxCaption->GetModel())
 maNoteData.mxCaption.removeFromDrawPageAndFree();
 
+#if 0
 // Either the caption object is gone or, because of Undo or clipboard is
 // held in at least two instances, or only one instance in Undo because the
 // original sheet in this document is just deleted, or the Undo document is
@@ -1140,6 +1143,7 @@ void ScPostIt::RemoveCaption()
 // Let's detect other use cases..
 assert(!maNoteData.mxCaption || maNoteData.mxCaption.getRefs() >= 2 ||
 (!mrDoc.IsUndo() && !mrDoc.IsClipboard()) || (mrDoc.IsUndo() && 
mrDoc.IsInDtorClear()));
+#endif
 
 // Forget the caption object if removeFromDrawPageAndFree() above did not
 // free it.
commit 6b4b2752fa876c219ee37a799b64211529f950e2
Author: Eike Rathke 
Date:   Tue Apr 11 21:23:27 2017 +0200

bail out early if there is no caption to remove

Change-Id: 

[Libreoffice-bugs] [Bug 107108] When inserting a formula in a calc cell "+" symbol is substitued by "H" letter

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
 CC||vstuart.fo...@utsa.edu
   Assignee|omo...@mairie-bergerac.fr   |libreoffice-b...@lists.free
   ||desktop.org
 Ever confirmed|1   |0

--- Comment #2 from V Stuart Foote  ---
Can not reproduce with STR given.  The "input line" displays the + glyph as
does the formula in the cell when selected.

On Windows 8.1 Pro 64-bit en-US with
Version: 5.3.2.2 (x64)
Build ID: 6cd4f1ef626f15116896b1d8e1398b56da0d0ee1
CPU Threads: 8; OS Version: Windows 6.29; UI Render: default; Layout Engine:
new; 
Locale: en-US (en_US); Calc: group

Also, I've removed you as assignee as that would be saying you are going to fix
the issue. For starters it needs to be confirmed.

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


[Libreoffice-bugs] [Bug 107126] Crash on changing page type in document (editing) with many footnotes

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

--- Comment #6 from Xisco Faulí  ---
Could you please attach a sample document, as this makes it easier for us to
verify the bug. 
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

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


[Libreoffice-bugs] [Bug 107121] Fonts

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #2 from V Stuart Foote  ---
Also, if on Windows -- please identify your Graphics GPU and driver, and if you
are using OpenGL or Default rendering. See bug 16990 as this is likely a
duplicate.

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


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

2017-04-12 Thread Johnny_M
 source/text/shared/00/0001.xhp |2 +-
 source/text/shared/01/05040200.xhp |2 +-
 source/text/smath/01/0502.xhp  |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 958daee8ba1a708cfb5eaa3811078500e653f88e
Author: Johnny_M 
Date:   Sat Apr 1 12:04:20 2017 +0200

Fix measurement unit conversion reference

1. Following pages were incorrectly referring to
https://help.libreoffice.org/Common/Frequently-Used_Buttons#metrik instead 
of
https://help.libreoffice.org/Common/Conversion_of_measurement_units#metrik :

- https://help.libreoffice.org/Common/Page (in "Related Topics" at the 
bottom)
- https://help.libreoffice.org/Math/Font_Sizes (in "Base size")

Note: Following pages already use the correct reference:

- https://help.libreoffice.org/Calc/Optimal_Row_Heights (at the top;

http://opengrok.libreoffice.org/xref/help/source/text/scalc/01/05030200.xhp#41 )

- https://help.libreoffice.org/Calc/Optimal_Column_Width (at the top;

http://opengrok.libreoffice.org/xref/help/source/text/scalc/01/05040200.xhp#42 )

- And other - see

http://opengrok.libreoffice.org/search?q=%23metrik=help

2. While at it, also added the same reference to the place which was
incorrectly meant as reference before:

- https://help.libreoffice.org/Common/Frequently-Used_Buttons#Metrics

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

diff --git a/source/text/shared/00/0001.xhp 
b/source/text/shared/00/0001.xhp
index 98e6def00..526895f03 100644
--- a/source/text/shared/00/0001.xhp
+++ b/source/text/shared/00/0001.xhp
@@ -120,7 +120,7 @@
   
  Metrics
- You can enter values in the input fields in different units 
of measurement. The default unit is inches. However, if you want a space of 
exactly 1cm, then type "1cm". Additional units are available according to the 
context, for example, 12 pt for a 12 point spacing. If the value of the new 
unit is unrealistic, the program uses a predefined maximum or minimum 
value.
+ You can enter values in the input fields in different units of 
measurement. The default unit is inches. However, if you want a space of 
exactly 1cm, then type "1cm". Additional units are available according to the 
context, for example, 12 pt for a 12 point spacing. If the value of the new 
unit is unrealistic, the program uses a predefined maximum or minimum 
value.
   
   
  Close
diff --git a/source/text/shared/01/05040200.xhp 
b/source/text/shared/01/05040200.xhp
index 4bde24027..b91e3a8b7 100644
--- a/source/text/shared/01/05040200.xhp
+++ b/source/text/shared/01/05040200.xhp
@@ -177,7 +177,7 @@ width="8.6457in" height="5.9063in">
 Resizes the drawing objects so that 
they fit on the paper format that you select. The arrangement of the drawing 
objects is preserved.
 
-Changing measurement units
+Changing measurement units
 
 
 Writing Register-true
diff --git a/source/text/smath/01/0502.xhp 
b/source/text/smath/01/0502.xhp
index 6b24578af..0ff20fdb7 100644
--- a/source/text/smath/01/0502.xhp
+++ b/source/text/smath/01/0502.xhp
@@ -40,7 +40,7 @@
   
 
 Base size
-All 
elements of a formula are proportionally scaled to the base size. To change the 
base size, select or type in the desired point (pt) size. You can also use 
other units of measure or other metrics, which are then automatically converted to 
points.
+All 
elements of a formula are proportionally scaled to the base size. To change the 
base size, select or type in the desired point (pt) size. You can also use 
other units of measure or other metrics, which are then automatically converted to 
points.
 To permanently change the default size (12 pt) used in 
$[officename] Math, you must first set the size (for example, 11 pt) and then 
click the Default button.
 Relative Sizes
 In this section, you can determine the relative sizes for each type 
of element with reference to the base size.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2017-04-12 Thread Johnny_M
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 57bdeafc092ae75b8b4c0fb0e5ec4660d96e3de8
Author: Johnny_M 
Date:   Sat Apr 1 12:04:20 2017 +0200

Updated core
Project: help  958daee8ba1a708cfb5eaa3811078500e653f88e

Fix measurement unit conversion reference

1. Following pages were incorrectly referring to
https://help.libreoffice.org/Common/Frequently-Used_Buttons#metrik instead 
of
https://help.libreoffice.org/Common/Conversion_of_measurement_units#metrik :

- https://help.libreoffice.org/Common/Page (in "Related Topics" at the 
bottom)
- https://help.libreoffice.org/Math/Font_Sizes (in "Base size")

Note: Following pages already use the correct reference:

- https://help.libreoffice.org/Calc/Optimal_Row_Heights (at the top;

http://opengrok.libreoffice.org/xref/help/source/text/scalc/01/05030200.xhp#41 )

- https://help.libreoffice.org/Calc/Optimal_Column_Width (at the top;

http://opengrok.libreoffice.org/xref/help/source/text/scalc/01/05040200.xhp#42 )

- And other - see

http://opengrok.libreoffice.org/search?q=%23metrik=help

2. While at it, also added the same reference to the place which was
incorrectly meant as reference before:

- https://help.libreoffice.org/Common/Frequently-Used_Buttons#Metrics

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

diff --git a/helpcontent2 b/helpcontent2
index dafaa1c1e89f..958daee8ba1a 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit dafaa1c1e89f912513e87c613db7ff23961d3030
+Subproject commit 958daee8ba1a708cfb5eaa3811078500e653f88e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 74074] FORMATTING: Ability to rearrange order of conditions in conditional formatting dialogs

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

m.a.riosv  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #17 from m.a.riosv  ---
(In reply to Katarina Behrens (CIB) from comment #16)

> The bugfix unfortunately involves UI & translatable string change, which
> excludes the possibility of backport [1]. Sry about that ... 
> 
> [1] unless one has L3 support and some1 also backports related translations
> for them

Forgive me for an inadequate request.

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


[Libreoffice-bugs] [Bug 107115] Font Calibri Light not rendered properly

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #2 from V Stuart Foote  ---
Created attachment 132529
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132529=edit
clip of test docx open in Writer 5.3.2.2

No issues with this with 5.3.2.2 or a current master, the Calibri Light is
rendered and shows in the Sidebar Properties deck. Same result with and without
OpenGL rendering.

On Windows 8.1 Pro 64-bit en-US with
Version: 5.4.0.0.alpha0+ (x64)
Build ID: a94ef79826fdb52bcde2d0ee8b76da6df46962f2
CPU threads: 8; OS: Windows 6.29; UI render: default; 
TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2017-04-11_11:00:05
Locale: en-US (en_US); Calc: CL

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


[Libreoffice-commits] online.git: 2 commits - loleaflet/build loleaflet/src

2017-04-12 Thread Henry Castro
 loleaflet/build/deps.js  |6 +
 loleaflet/src/dom/PosAnimation.Timer.js  |   67 
 loleaflet/src/dom/PosAnimation.js|  103 +++
 loleaflet/src/layer/AnnotationManager.js |7 +-
 4 files changed, 142 insertions(+), 41 deletions(-)

New commits:
commit b0c889f2d22c05bcde392a6f2897be6465e0a3aa
Author: Henry Castro 
Date:   Wed Apr 12 17:19:17 2017 -0400

loleaflet: animate the new position of selected annotation

Change-Id: I47af4ac3ec01b03797a03dfcc91ec84f0fd39bb5

diff --git a/loleaflet/src/layer/AnnotationManager.js 
b/loleaflet/src/layer/AnnotationManager.js
index 5178c921..8f66ee63 100644
--- a/loleaflet/src/layer/AnnotationManager.js
+++ b/loleaflet/src/layer/AnnotationManager.js
@@ -13,6 +13,7 @@ L.AnnotationManager = L.Class.extend({
this._map = map;
this._items = [];
this._selected = null;
+   this._animation = new L.PosAnimation();
this._arrow = L.polyline([], {color: 'darkblue', weight: 1});
this._map.on('AnnotationCancel', this._onAnnotationCancel, 
this);
this._map.on('AnnotationClick', this._onAnnotationClick, this);
@@ -196,10 +197,12 @@ L.AnnotationManager = L.Class.extend({
layout: function () {
var docRight = 
this._map.project(this._map.options.maxBounds.getNorthEast());
var topRight = docRight.add(L.point(this.options.marginX, 
this.options.marginY));
-   var annotation, selectIndex, layoutBounds, point, index;
+   var latlng, annotation, selectIndex, layoutBounds, point, index;
if (this._selected) {
selectIndex = this.getIndexOf(this._selected._data.id);
-   
this._selected.setLatLng(this._map.unproject(L.point(docRight.x, 
this._selected._data.anchorPix.y)));
+   latlng = this._map.unproject(L.point(docRight.x, 
this._selected._data.anchorPix.y));
+   this._animation.run(this._selected._container, 
this._map.latLngToLayerPoint(latlng));
+   this._selected.setLatLng(latlng);
layoutBounds = this._selected.getBounds();
layoutBounds.min = 
layoutBounds.min.add([this.options.marginX, 0]);
layoutBounds.max = 
layoutBounds.max.add([this.options.marginX, 0]);
commit 44482615ca3d355d8637ad6c04082fd1f144e10d
Author: Henry Castro 
Date:   Wed Apr 12 17:17:50 2017 -0400

loleaflet: update PosAnimation.js file

Change-Id: I38a2643e67d1d341b486c987eb73dc5e5608a7cb

diff --git a/loleaflet/build/deps.js b/loleaflet/build/deps.js
index 6cce0922..34575612 100644
--- a/loleaflet/build/deps.js
+++ b/loleaflet/build/deps.js
@@ -415,6 +415,12 @@ var deps = {
desc: 'Core panning animation support.'
},
 
+   AnimationTimer: {
+   src: ['dom/PosAnimation.Timer.js'],
+   deps: ['AnimationPan'],
+   desc: 'Timer-based pan animation fallback for browsers that 
don\'t support CSS3 transitions.'
+   },
+
AnimationZoom: {
src: [
'map/anim/Map.ZoomAnimation.js',
diff --git a/loleaflet/src/dom/PosAnimation.Timer.js 
b/loleaflet/src/dom/PosAnimation.Timer.js
new file mode 100644
index ..52faf981
--- /dev/null
+++ b/loleaflet/src/dom/PosAnimation.Timer.js
@@ -0,0 +1,67 @@
+/*
+ * L.PosAnimation fallback implementation that powers Leaflet pan animations
+ * in browsers that don't support CSS3 Transitions.
+ */
+
+L.PosAnimation = L.DomUtil.TRANSITION ? L.PosAnimation : 
L.PosAnimation.extend({
+
+   run: function (el, newPos, duration, easeLinearity) { // (HTMLElement, 
Point[, Number, Number])
+   this.stop();
+
+   this._el = el;
+   this._inProgress = true;
+   this._duration = duration || 0.25;
+   this._easeOutPower = 1 / Math.max(easeLinearity || 0.5, 0.2);
+
+   this._startPos = L.DomUtil.getPosition(el);
+   this._offset = newPos.subtract(this._startPos);
+   this._startTime = +new Date();
+
+   this.fire('start');
+
+   this._animate();
+   },
+
+   stop: function () {
+   if (!this._inProgress) { return; }
+
+   this._step();
+   this._complete();
+   },
+
+   _animate: function () {
+   // animation loop
+   this._animId = L.Util.requestAnimFrame(this._animate, this);
+   this._step();
+   },
+
+   _step: function () {
+   var elapsed = (+new Date()) - this._startTime,
+   duration = this._duration * 1000;
+
+   if (elapsed < duration) {
+   this._runFrame(this._easeOut(elapsed / duration));
+   } else 

[Libreoffice-bugs] [Bug 107123] application colors automatic white is mapped to black

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

--- Comment #3 from fitbit0...@gmail.com ---
Also, changing the LibreOffice theme does not help either.

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


[Libreoffice-bugs] [Bug 107126] Crash on changing page type in document (editing) with many footnotes

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

matt  changed:

   What|Removed |Added

Version|5.2.5.1 release |5.3.2.2 release

--- Comment #5 from matt  ---
The splash screen seems to have outdated version info on that one. The package
reads version "5.3.2.2-2"

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


[Libreoffice-bugs] [Bug 107126] Crash on changing page type in document (editing) with many footnotes

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

matt  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
Version|4.3.3.2 release |5.2.5.1 release
 Ever confirmed|1   |0

--- Comment #4 from matt  ---
Confirmed that it also crashes under the same circumstances on the latest
release available for my platform:

Version: 5.2.5.1
Build ID: 1:5.2.5-2
CPU Threads: 4; OS Version: Linux 4.9; UI Render: default; VCL: gtk3; 
Locale: en-US (en_US.utf8); Calc: group

(different machine)

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


[Libreoffice-bugs] [Bug 107123] application colors automatic white is mapped to black

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

--- Comment #2 from fitbit0...@gmail.com ---
(In reply to Xisco Faulí from comment #1)
> Which OS and theme are you using? Does changing the OS' theme fix the
> problem?

OS: RHEL 6.8, 
Display manager 1 is GNOME, 
Display manager 2 is Fluxbox.
Changing the desktop theme and/or display manager does not change the behavior.

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


[Libreoffice-commits] core.git: basctl/CppunitTest_basctl_dialogs_test.mk chart2/CppunitTest_chart2_dialogs_test.mk cui/CppunitTest_cui_dialogs_test.mk dbaccess/CppunitTest_dbaccess_dialogs_test.mk de

2017-04-12 Thread Caolán McNamara
 basctl/CppunitTest_basctl_dialogs_test.mk |3 +--
 chart2/CppunitTest_chart2_dialogs_test.mk |3 +--
 cui/CppunitTest_cui_dialogs_test.mk   |3 +--
 dbaccess/CppunitTest_dbaccess_dialogs_test.mk |3 +--
 desktop/CppunitTest_desktop_dialogs_test.mk   |3 +--
 filter/CppunitTest_filter_dialogs_test.mk |3 +--
 formula/CppunitTest_formula_dialogs_test.mk   |3 +--
 fpicker/CppunitTest_fpicker_dialogs_test.mk   |3 +--
 reportdesign/CppunitTest_reportdesign_dialogs_test.mk |3 +--
 sc/CppunitTest_sc_screenshots.mk  |2 +-
 sd/CppunitTest_sd_dialogs_test.mk |3 +--
 sfx2/CppunitTest_sfx2_classification.mk   |2 +-
 sfx2/CppunitTest_sfx2_dialogs_test.mk |3 +--
 starmath/CppunitTest_starmath_dialogs_test.mk |3 +--
 svtools/CppunitTest_svtools_dialogs_test.mk   |3 +--
 svx/CppunitTest_svx_dialogs_test.mk   |3 +--
 sw/CppunitTest_sw_dialogs_test.mk |3 +--
 sw/CppunitTest_sw_mailmerge.mk|2 +-
 uui/CppunitTest_uui_dialogs_test.mk   |3 +--
 vcl/CppunitTest_vcl_dialogs_test.mk   |3 +--
 xmlsecurity/CppunitTest_xmlsecurity_dialogs_test.mk   |3 +--
 21 files changed, 21 insertions(+), 39 deletions(-)

New commits:
commit 9f565f5cb628dcd32b05be7079dd5482e5cc19b9
Author: Caolán McNamara 
Date:   Wed Apr 12 16:21:23 2017 +0100

can use gb_CppunitTest_use_configuration and still access .ui files

after...

commit 506cab1a01b0481d0831a7a692a26dc5a5b55e91
Author: Caolán McNamara 
Date:   Wed Apr 12 16:14:10 2017 +0100

take the .ui files from $BRAND_BASE_DIR/$BRAND_SHARE_SUBDIR

Change-Id: I9cffdc092206c038da32a32a2cfe629e68b5c258

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

diff --git a/basctl/CppunitTest_basctl_dialogs_test.mk 
b/basctl/CppunitTest_basctl_dialogs_test.mk
index 5a290bfee725..d45c8ab97d8b 100644
--- a/basctl/CppunitTest_basctl_dialogs_test.mk
+++ b/basctl/CppunitTest_basctl_dialogs_test.mk
@@ -61,8 +61,7 @@ $(eval $(call 
gb_CppunitTest_use_vcl_non_headless_with_windows,basctl_dialogs_te
 
 $(eval $(call gb_CppunitTest_use_rdb,basctl_dialogs_test,services))
 
-# $(eval $(call gb_CppunitTest_use_configuration,basctl_dialogs_test))
-$(eval $(call gb_CppunitTest_use_instdir_configuration,basctl_dialogs_test))
+$(eval $(call gb_CppunitTest_use_configuration,basctl_dialogs_test))
 
 $(eval $(call gb_CppunitTest_use_uiconfigs,basctl_dialogs_test,\
modules/BasicIDE \
diff --git a/chart2/CppunitTest_chart2_dialogs_test.mk 
b/chart2/CppunitTest_chart2_dialogs_test.mk
index 10c81d098747..edc36d1188d2 100644
--- a/chart2/CppunitTest_chart2_dialogs_test.mk
+++ b/chart2/CppunitTest_chart2_dialogs_test.mk
@@ -63,8 +63,7 @@ $(eval $(call 
gb_CppunitTest_use_vcl_non_headless_with_windows,chart2_dialogs_te
 
 $(eval $(call gb_CppunitTest_use_rdb,chart2_dialogs_test,services))
 
-# $(eval $(call gb_CppunitTest_use_configuration,chart2_dialogs_test))
-$(eval $(call gb_CppunitTest_use_instdir_configuration,chart2_dialogs_test))
+$(eval $(call gb_CppunitTest_use_configuration,chart2_dialogs_test))
 
 $(eval $(call gb_CppunitTest_use_uiconfigs,chart2_dialogs_test,\
modules/schart \
diff --git a/cui/CppunitTest_cui_dialogs_test.mk 
b/cui/CppunitTest_cui_dialogs_test.mk
index e1c07faeb8e2..cb6ae8dbf2c6 100644
--- a/cui/CppunitTest_cui_dialogs_test.mk
+++ b/cui/CppunitTest_cui_dialogs_test.mk
@@ -62,8 +62,7 @@ $(eval $(call 
gb_CppunitTest_use_vcl_non_headless_with_windows,cui_dialogs_test)
 
 $(eval $(call gb_CppunitTest_use_rdb,cui_dialogs_test,services))
 
-# $(eval $(call gb_CppunitTest_use_configuration,cui_dialogs_test))
-$(eval $(call gb_CppunitTest_use_instdir_configuration,cui_dialogs_test))
+$(eval $(call gb_CppunitTest_use_configuration,cui_dialogs_test))
 
 $(eval $(call gb_CppunitTest_use_uiconfigs,cui_dialogs_test,\
cui \
diff --git a/dbaccess/CppunitTest_dbaccess_dialogs_test.mk 
b/dbaccess/CppunitTest_dbaccess_dialogs_test.mk
index 704764bac605..a4c653dc0c3e 100644
--- a/dbaccess/CppunitTest_dbaccess_dialogs_test.mk
+++ b/dbaccess/CppunitTest_dbaccess_dialogs_test.mk
@@ -61,8 +61,7 @@ $(eval $(call 
gb_CppunitTest_use_vcl_non_headless_with_windows,dbaccess_dialogs_
 
 $(eval $(call gb_CppunitTest_use_rdb,dbaccess_dialogs_test,services))
 
-# $(eval $(call gb_CppunitTest_use_configuration,dbaccess_dialogs_test))
-$(eval $(call gb_CppunitTest_use_instdir_configuration,dbaccess_dialogs_test))
+$(eval $(call gb_CppunitTest_use_configuration,dbaccess_dialogs_test))
 
 $(eval $(call 

Re: Clang 5.0 32-bit builds Failing on CppunitTest_vcl_pdfexport

2017-04-12 Thread Michael Stahl
On 12.04.2017 21:43, Michael Stahl wrote:
> On 12.04.2017 19:35, slacka wrote:
>> Here is the backtrace:
>>
>> https://pastebin.com/vhYRQDSG
>>
>> This was with  clang version 4.0.0 (trunk 287326)
>>
>> On Ubuntu 16.04.2 LTS 3 4.4.0-64-generic #85-Ubuntu SMP Mon Feb 20 11:49:39
>> UTC 2017 i686 i686 i686 
>>
>> I'm not sure if it was timing, ccache. or what but whatever is causing this
>> crash started about 1 month ago. I have been building Libreoffice with Clang
>> for years and I'm seeing this on 2 different machines(Ubuntu/Fedora).
> 
> oh, that is interesting!
> 
>> #11 0x403058ad in std::terminate() () from 
>> /usr/lib/i386-linux-gnu/libstdc++.so.6
>> No symbol table info available.
>> #12 0x40305b70 in __cxa_throw () from /usr/lib/i386-linux-gnu/libstdc++.so.6
>> No symbol table info available.
>> #13 0x458d4ea4 in errorExit (cinfo=0xbfa9beb0) at 
>> /core/vcl/source/filter/jpeg/jpegc.cxx:45
>> buffer = "Quantization table 0x00 was not 
>> defined\000\016\225\261E\260\276\251\277S\v\000\000\230\273\251\277\273\221\261E\b\000\000\000\b\000\000\000\000\260\367E\b\000\000\000\b\000\000\000\000\260\367E\300\245\362\t\260\245\362\t\370\320\362\t@\v\000\000\001\000\000\000\260\276\251\277\001\000\000\000\000\260\367E軩\277\060\227\261E\260\276\251\277\001\000\000\000@\v\000\000\n\000\000\000
>>  
>> \001\000\000\020\000\000\000`\000\000\000\000\260\367E^\373\064\000\000\000\000\000\n\000\000\000\n\000\000\000\000\261\362\t0\205\362\t\370\320\362\t\n\000\000\000
>>  \001\000\000\001\000\000\000\260\276\251\277"
>> #14 0x45b052e2 in latch_quant_tables (cinfo=0xbfa9beb0) at jdinput.c:259
>> ci = 0
>> qtblno = 0
>> compptr = 0x9f26620
>> qtbl = 0x1
>> #15 0x45b04ab7 in start_input_pass (cinfo=0xbfa9beb0) at jdinput.c:281
>> No locals.
>> #16 0x45b0aa98 in master_selection (cinfo=0xbfa9beb0) at jdmaster.c:575
>> master = 0x9e64870
>> use_c_buffer = 0
>> samplesperrow = 2220
>> jd_samplesperrow = 2220
>> #17 0x45b0a3ce in jinit_master_decompress (cinfo=0xbfa9beb0) at 
>> jdmaster.c:735
>> master = 0x9e64870
>> #18 0x45b033ca in jpeg_start_decompress (cinfo=0xbfa9beb0) at jdapistd.c:47
>> No locals.
>> #19 0x458d5738 in ReadJPEG (pJPEGReader=0x9e5e03c, pInputStream=0xbfa9ca30, 
>> pLines=0xbfa9c124, previewSize=...) at 
>> /core/vcl/source/filter/jpeg/jpegc.cxx:206
> 
> an unhandled exception during JPEG import

this is probably happening since:

commit 6889fa826eef6bd1074d77507818e71dfe8ba152
Author: Caolán McNamara 
AuthorDate: Sat Mar 18 20:19:51 2017 +

rework jpeg error handling to throw rather than setjmp to avoid leaks


the function errorExit() is declared extern "C" and throws an exception,
so std::terminate() is invoked and the catch
(css::uno::RuntimeException) in ReadJPEG() is not reached.

now why does that happen only in your build?  my clang builds don't seem
to mind throwing from extern "C"?  tinderboxes seem happy too.



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


[Libreoffice-bugs] [Bug 107123] application colors automatic white is mapped to black

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

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #1 from Xisco Faulí  ---
Which OS and theme are you using? Does changing the OS' theme fix the problem?

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


[Libreoffice-bugs] [Bug 107110] Find & Replace shortcut ctrl+H returning error.

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #5 from Xisco Faulí  ---
(In reply to ogb1966 from comment #4)
> Resetting user profile helps, do you need me to send you my old user profile?
> How can I solve it without loosing my profile?
> thanks

@Buovjaga, Do you know if is it possible to do so?

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

2017-04-12 Thread Andras Timar
 loleaflet/po/templates/loleaflet-help.pot |2 
 loleaflet/po/templates/loleaflet-ui.pot   |  185 --
 2 files changed, 104 insertions(+), 83 deletions(-)

New commits:
commit 1aeaf419991dca57021c6aae3306a4c4a8142530
Author: Andras Timar 
Date:   Wed Apr 12 22:28:15 2017 +0200

loleaflet: updated pot files

Change-Id: I0a589a07bb5658c7b9b749c7184fa09c2e1a49de

diff --git a/loleaflet/po/templates/loleaflet-help.pot 
b/loleaflet/po/templates/loleaflet-help.pot
index 2913307c..8d8c5d9e 100644
--- a/loleaflet/po/templates/loleaflet-help.pot
+++ b/loleaflet/po/templates/loleaflet-help.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-01-30 15:39+0200\n"
+"POT-Creation-Date: 2017-04-12 22:27+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
diff --git a/loleaflet/po/templates/loleaflet-ui.pot 
b/loleaflet/po/templates/loleaflet-ui.pot
index df4123ea..f3ffb744 100644
--- a/loleaflet/po/templates/loleaflet-ui.pot
+++ b/loleaflet/po/templates/loleaflet-ui.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-03-13 13:01+0100\n"
+"POT-Creation-Date: 2017-04-12 22:27+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -199,7 +199,8 @@ msgstr ""
 msgid "Delete Index or Table of Contents"
 msgstr ""
 
-#: unocommands.js:18
+#: unocommands.js:18 src/layer/marker/Annotation.js:187
+#: src/layer/tile/TileLayer.js:188
 msgid "Reply"
 msgstr ""
 
@@ -460,220 +461,216 @@ msgid "Special Character"
 msgstr ""
 
 #: dist/toolbar/toolbar.js:525
-msgid "Record Changes"
-msgstr ""
-
-#: dist/toolbar/toolbar.js:526
-msgid "Show Changes"
-msgstr ""
-
-#: dist/toolbar/toolbar.js:528
 msgid "More"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:530 src/control/Control.Menubar.js:170
+#: dist/toolbar/toolbar.js:527 src/control/Control.Menubar.js:170
 #: src/control/Control.Menubar.js:230 src/control/Control.Menubar.js:277
 msgid "Close document"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:609
+#: dist/toolbar/toolbar.js:606
 msgid "Layout"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:634 dist/toolbar/toolbar.js:981
+#: dist/toolbar/toolbar.js:631 dist/toolbar/toolbar.js:976
 msgid "Sum"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:635
+#: dist/toolbar/toolbar.js:632
 msgid "Function"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:636 src/control/Control.CharacterMap.js:428
-#: src/layer/marker/Annotation.js:118
+#: dist/toolbar/toolbar.js:633 src/control/Control.CharacterMap.js:428
+#: src/layer/marker/Annotation.js:130
 msgid "Cancel"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:637 src/layer/tile/TileLayer.js:215
+#: dist/toolbar/toolbar.js:634
 msgid "Accept"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:648
+#: dist/toolbar/toolbar.js:649
 msgid "First sheet"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:649
+#: dist/toolbar/toolbar.js:650
 msgid "Previous sheet"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:650
+#: dist/toolbar/toolbar.js:651
 msgid "Next sheet"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:651
+#: dist/toolbar/toolbar.js:652
 msgid "Last sheet"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:661 src/control/Control.Menubar.js:224
+#: dist/toolbar/toolbar.js:662 src/control/Control.Menubar.js:224
 msgid "Fullscreen presentation"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:663
+#: dist/toolbar/toolbar.js:664
 msgid "Insert slide"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:664 src/control/Control.Menubar.js:221
+#: dist/toolbar/toolbar.js:665 src/control/Control.Menubar.js:221
 msgid "Duplicate slide"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:665 src/control/Control.Menubar.js:222
+#: dist/toolbar/toolbar.js:666 src/control/Control.Menubar.js:222
 msgid "Delete slide"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:678
+#: dist/toolbar/toolbar.js:679
 msgid "Search:"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:683
+#: dist/toolbar/toolbar.js:684
 msgid "Search backwards"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:684
+#: dist/toolbar/toolbar.js:685
 msgid "Search forward"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:685
+#: dist/toolbar/toolbar.js:686
 msgid "Cancel the search"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:690
+#: dist/toolbar/toolbar.js:691
 msgid "No users"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:692
+#: dist/toolbar/toolbar.js:693
 msgid "Previous page"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:693
+#: dist/toolbar/toolbar.js:694
 msgid "Next page"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:695 src/control/Control.Menubar.js:44
+#: dist/toolbar/toolbar.js:696 src/control/Control.Menubar.js:44
 #: src/control/Control.Menubar.js:199
 msgid "Reset zoom"
 msgstr ""
 
-#: dist/toolbar/toolbar.js:696 src/control/Control.Menubar.js:43
+#: dist/toolbar/toolbar.js:697 

[Libreoffice-bugs] [Bug 107130] Auto-filter does not work with date

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

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||xiscofa...@libreoffice.org
 Resolution|--- |DUPLICATE

--- Comment #1 from Xisco Faulí  ---
Hi Denis,
It looks like a duplicate of bug 106214.
it will be fixed in LibreOffice 5.3.3.
Thanks for reporting

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

-- 
You are receiving this mail because:
You 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: loleaflet/Makefile.am

2017-04-12 Thread Andras Timar
 loleaflet/Makefile.am |1 +
 1 file changed, 1 insertion(+)

New commits:
commit baa07c0997b86ff88e3fa53ac3c265ec9fe54acf
Author: Andras Timar 
Date:   Wed Apr 12 22:22:49 2017 +0200

loleaflet: src/control/Control.ContextMenu.js contains translatable strings

Change-Id: I4010eb296a1771f0e8fbfa5078b4847193cfc188
Reviewed-on: https://gerrit.libreoffice.org/36491
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/loleaflet/Makefile.am b/loleaflet/Makefile.am
index cd5ac55f..0a1880ae 100644
--- a/loleaflet/Makefile.am
+++ b/loleaflet/Makefile.am
@@ -56,6 +56,7 @@ pot:
src/admin/Util.js \
src/control/Control.CharacterMap.js \
src/control/Control.ColumnHeader.js \
+   src/control/Control.ContextMenu.js \
src/control/Control.DocumentRepair.js \
src/control/Control.Menubar.js \
src/control/Control.MetricInput.js \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-04-12 Thread Szymon Kłos
 include/vcl/IPrioritable.hxx |7 +++
 include/vcl/layout.hxx   |2 --
 sfx2/source/notebookbar/DropdownBox.cxx  |1 +
 sfx2/source/notebookbar/DropdownBox.hxx  |8 +---
 sfx2/source/notebookbar/PriorityHBox.cxx |   17 -
 vcl/source/window/layout.cxx |2 --
 6 files changed, 21 insertions(+), 16 deletions(-)

New commits:
commit 76fbd18a515e531f1d238ab0b405212a032c53f2
Author: Szymon Kłos 
Date:   Mon Apr 10 19:29:59 2017 +0200

Notebookbar: remove dependency between all containers and IPrioritable

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

diff --git a/include/vcl/IPrioritable.hxx b/include/vcl/IPrioritable.hxx
index 11146681ee65..dda8bbd31fa8 100644
--- a/include/vcl/IPrioritable.hxx
+++ b/include/vcl/IPrioritable.hxx
@@ -23,6 +23,10 @@ protected:
 }
 
 public:
+virtual ~IPrioritable()
+{
+}
+
 int GetPriority() const
 {
 return m_nPriority;
@@ -33,6 +37,9 @@ public:
 m_nPriority = nPriority;
 }
 
+virtual void HideContent() = 0;
+virtual void ShowContent() = 0;
+
 private:
 int m_nPriority;
 };
diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx
index f401fcda888c..28c6464c0257 100644
--- a/include/vcl/layout.hxx
+++ b/include/vcl/layout.hxx
@@ -14,7 +14,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -24,7 +23,6 @@
 #include 
 
 class VCL_DLLPUBLIC VclContainer : public vcl::Window,
-   public vcl::IPrioritable,
public vcl::IContext
 {
 public:
diff --git a/sfx2/source/notebookbar/DropdownBox.cxx 
b/sfx2/source/notebookbar/DropdownBox.cxx
index 63aba3f33f70..981a220b0959 100644
--- a/sfx2/source/notebookbar/DropdownBox.cxx
+++ b/sfx2/source/notebookbar/DropdownBox.cxx
@@ -113,6 +113,7 @@ public:
 
 DropdownBox::DropdownBox(vcl::Window *pParent)
 : VclHBox(pParent)
+, IPrioritable()
 , m_bInFullView(true)
 {
 m_pButton = VclPtr::Create(this, WB_FLATBUTTON);
diff --git a/sfx2/source/notebookbar/DropdownBox.hxx 
b/sfx2/source/notebookbar/DropdownBox.hxx
index cabd38f5183b..6a34ae6d7705 100644
--- a/sfx2/source/notebookbar/DropdownBox.hxx
+++ b/sfx2/source/notebookbar/DropdownBox.hxx
@@ -21,6 +21,7 @@
 #define INCLUDED_SFX2_NOTEBOOKBAR_DROPDOWNBOX_HXX
 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -30,7 +31,8 @@
 
 class Popup;
 
-class SFX2_DLLPUBLIC DropdownBox : public VclHBox
+class SFX2_DLLPUBLIC DropdownBox : public VclHBox,
+   public vcl::IPrioritable
 {
 private:
 bool m_bInFullView;
@@ -42,8 +44,8 @@ public:
 virtual ~DropdownBox() override;
 virtual void dispose() override;
 
-void HideContent();
-void ShowContent();
+void HideContent() override;
+void ShowContent() override;
 
 private:
 DECL_LINK(PBClickHdl, Button*, void);
diff --git a/sfx2/source/notebookbar/PriorityHBox.cxx 
b/sfx2/source/notebookbar/PriorityHBox.cxx
index de2e7b9bb201..fde027bb3364 100644
--- a/sfx2/source/notebookbar/PriorityHBox.cxx
+++ b/sfx2/source/notebookbar/PriorityHBox.cxx
@@ -41,7 +41,7 @@ class SFX2_DLLPUBLIC PriorityHBox : public VclHBox
 private:
 bool m_bInitialized;
 
-std::vector m_aSortedChilds;
+std::vector m_aSortedChilds;
 
 public:
 explicit PriorityHBox(vcl::Window *pParent)
@@ -69,8 +69,7 @@ public:
 
 bool bAllwaysExpanded = true;
 
-IPrioritable* pPrioritable = pChild->GetType() == 
WindowType::CONTAINER ?
-dynamic_cast(pChild) : nullptr;
+vcl::IPrioritable* pPrioritable = 
dynamic_cast(pChild);
 if (pPrioritable && pPrioritable->GetPriority() != 
VCL_PRIORITY_DEFAULT)
 bAllwaysExpanded = false;
 
@@ -98,11 +97,12 @@ public:
 auto pChild = m_aSortedChilds.begin();
 while (nCurrentWidth > nWidth && pChild != m_aSortedChilds.end())
 {
-DropdownBox* pBox = static_cast(*pChild);
+// ATM DropdownBox is the only one derived class from IPrioritable
+DropdownBox* pDropdownBox = static_cast(*pChild);
 
-nCurrentWidth -= pBox->GetOutputWidthPixel() + get_spacing();
-pBox->HideContent();
-nCurrentWidth += pBox->GetOutputWidthPixel() + get_spacing();
+nCurrentWidth -= pDropdownBox->GetOutputWidthPixel() + 
get_spacing();
+pDropdownBox->HideContent();
+nCurrentWidth += pDropdownBox->GetOutputWidthPixel() + 
get_spacing();
 
 pChild++;
 }
@@ -154,8 +154,7 @@ public:
 vcl::Window* pChild = GetChild(i);
 
 // Add 

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

2017-04-12 Thread Caolán McNamara
 sw/source/filter/ww8/ww8par.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c5603ba6d9d97d62d68cdbda4e2f06527db7092e
Author: Caolán McNamara 
Date:   Wed Apr 12 21:07:52 2017 +0100

ofz: avoid oom

Change-Id: I64dd130f618ea18b802117b7a2cf0eeb8f271046

diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index 797518cc2ae5..2a52276d6359 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -6002,7 +6002,7 @@ const OUString* 
SwWW8ImplReader::GetAnnotationAuthor(sal_uInt16 nIdx)
 rStrm.Seek( m_pWwFib->m_fcGrpStAtnOwners );
 
 long nRead = 0, nCount = m_pWwFib->m_lcbGrpStAtnOwners;
-while (nRead < nCount)
+while (nRead < nCount && rStrm.good())
 {
 if( m_bVer67 )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-04-12 Thread David Tardon
 configure.ac |   11 ---
 1 file changed, 11 deletions(-)

New commits:
commit 77546ec3587c831846829f6635d91f0d1dd47e27
Author: David Tardon 
Date:   Wed Apr 12 21:58:56 2017 +0200

drop obsolete check for boost/function.hpp

Change-Id: I95b968b7ba13481d246fde7471b02f821372e1fd

diff --git a/configure.ac b/configure.ac
index 505c15d6dd05..21691d71097c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8851,17 +8851,6 @@ if test "$with_system_boost" = "yes"; then
[AC_MSG_ERROR(boost/shared_ptr.hpp not found. install boost)], [])
 AC_CHECK_HEADER(boost/spirit/include/classic_core.hpp, [],
[AC_MSG_ERROR(boost/spirit/include/classic_core.hpp not found. install 
boost >= 1.36)], [])
-AC_CHECK_HEADER(boost/function.hpp, [],
-   [AC_MSG_ERROR(boost/function.hpp not found. install boost)], [])
-CXXFLAGS="$CXXFLAGS -fno-exceptions"
-AC_MSG_CHECKING([whether boost/function.hpp compiles with -fno-exceptions])
-AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include 
-]], 
[[]])],[ac_cv_cxx_boost_no_exceptions_broken=no],[ac_cv_cxx_boost_no_exceptions_broken=yes])
-if test "$ac_cv_cxx_boost_no_exceptions_broken" = "yes"; then
-AC_MSG_ERROR([no, see 
https://bugzilla.redhat.com/show_bug.cgi?id=477131])
-else
-AC_MSG_RESULT([yes])
-fi
 CXXFLAGS=$save_CXXFLAGS
 AC_LANG_POP([C++])
 # this is in m4/ax_boost_base.m4
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107126] Crash on changing page type in document (editing) with many footnotes

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

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #3 from Xisco Faulí  ---
Hello matt,

it seems you're using an old version of LibreOffice.
Could you please try to reproduce it with the latest version of LibreOffice
from https://www.libreoffice.org/download/libreoffice-fresh/ ?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the bug is still present in the latest 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


Re: Clang 5.0 32-bit builds Failing on CppunitTest_vcl_pdfexport

2017-04-12 Thread Michael Stahl
On 12.04.2017 19:35, slacka wrote:
> Here is the backtrace:
> 
> https://pastebin.com/vhYRQDSG
> 
> This was with  clang version 4.0.0 (trunk 287326)
> 
> On Ubuntu 16.04.2 LTS 3 4.4.0-64-generic #85-Ubuntu SMP Mon Feb 20 11:49:39
> UTC 2017 i686 i686 i686 
> 
> I'm not sure if it was timing, ccache. or what but whatever is causing this
> crash started about 1 month ago. I have been building Libreoffice with Clang

CppunitTest_vcl_pdfexport was added quite recently.

> for years and I'm seeing this on 2 different machines(Ubuntu/Fedora).

oh, that is interesting!

> #11 0x403058ad in std::terminate() () from 
> /usr/lib/i386-linux-gnu/libstdc++.so.6
> No symbol table info available.
> #12 0x40305b70 in __cxa_throw () from /usr/lib/i386-linux-gnu/libstdc++.so.6
> No symbol table info available.
> #13 0x458d4ea4 in errorExit (cinfo=0xbfa9beb0) at 
> /core/vcl/source/filter/jpeg/jpegc.cxx:45
> buffer = "Quantization table 0x00 was not 
> defined\000\016\225\261E\260\276\251\277S\v\000\000\230\273\251\277\273\221\261E\b\000\000\000\b\000\000\000\000\260\367E\b\000\000\000\b\000\000\000\000\260\367E\300\245\362\t\260\245\362\t\370\320\362\t@\v\000\000\001\000\000\000\260\276\251\277\001\000\000\000\000\260\367E軩\277\060\227\261E\260\276\251\277\001\000\000\000@\v\000\000\n\000\000\000
>  
> \001\000\000\020\000\000\000`\000\000\000\000\260\367E^\373\064\000\000\000\000\000\n\000\000\000\n\000\000\000\000\261\362\t0\205\362\t\370\320\362\t\n\000\000\000
>  \001\000\000\001\000\000\000\260\276\251\277"
> #14 0x45b052e2 in latch_quant_tables (cinfo=0xbfa9beb0) at jdinput.c:259
> ci = 0
> qtblno = 0
> compptr = 0x9f26620
> qtbl = 0x1
> #15 0x45b04ab7 in start_input_pass (cinfo=0xbfa9beb0) at jdinput.c:281
> No locals.
> #16 0x45b0aa98 in master_selection (cinfo=0xbfa9beb0) at jdmaster.c:575
> master = 0x9e64870
> use_c_buffer = 0
> samplesperrow = 2220
> jd_samplesperrow = 2220
> #17 0x45b0a3ce in jinit_master_decompress (cinfo=0xbfa9beb0) at jdmaster.c:735
> master = 0x9e64870
> #18 0x45b033ca in jpeg_start_decompress (cinfo=0xbfa9beb0) at jdapistd.c:47
> No locals.
> #19 0x458d5738 in ReadJPEG (pJPEGReader=0x9e5e03c, pInputStream=0xbfa9ca30, 
> pLines=0xbfa9c124, previewSize=...) at 
> /core/vcl/source/filter/jpeg/jpegc.cxx:206

an unhandled exception during JPEG import - then i was wrong to blame
the GStreamer thread?

or is this a different problem - this one dies with SIGABRT while your
previous log died with SIGSEGV?  hmm and previously the test printed "OK
(4)" but here it apparently dies in the middle of the test.  oh, and now
i notice that this log is for CppunitTest_vcl_filters_test not the
pdfexport test.


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


[Libreoffice-bugs] [Bug 107130] New: Auto-filter does not work with date

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

Bug ID: 107130
   Summary: Auto-filter does not work with date
   Product: LibreOffice
   Version: 5.3.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: denismod-l...@yahoo.com.br

Created attachment 132528
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132528=edit
database for testing bug

when execute auto-filter with date, results none
in 5.3.0 it works well

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


[Libreoffice-bugs] [Bug 107129] New: notebookbar update priority feature

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

Bug ID: 107129
   Summary: notebookbar update priority feature
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kain...@gmail.com

Created attachment 132527
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132527=edit
example file where priority didn't work within ContextContainer

with priority-x you can define that you can show/hide part's of the
notebookbar. the problem is, that in ContextContainer (sfxlo-DropdownBox) the
priority-x feature didn't work.

In addition the priority-number should define which group will hide first 
 priority-1 (hide first)
 priority-2 (hide after -1)
 ...

and with show it should be the other way arround
 priority-2 (show first)
 priority-1 (show second, last)

thanks

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


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

2017-04-12 Thread Vitaliy Anderson
 writerfilter/source/dmapper/NumberingManager.cxx |   11 ---
 writerfilter/source/dmapper/NumberingManager.hxx |4 
 2 files changed, 15 deletions(-)

New commits:
commit 66f71c7e8b68a3e35e258ff1131f5e3d27fd9e85
Author: Vitaliy Anderson 
Date:   Wed Apr 12 16:05:19 2017 +0300

NumberingManager.cxx: remove unused

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

diff --git a/writerfilter/source/dmapper/NumberingManager.cxx 
b/writerfilter/source/dmapper/NumberingManager.cxx
index 325cef9fd982..3fbc70eb56a1 100644
--- a/writerfilter/source/dmapper/NumberingManager.cxx
+++ b/writerfilter/source/dmapper/NumberingManager.cxx
@@ -41,9 +41,6 @@
 
 using namespace com::sun::star;
 
-#define NUMBERING_MAX_LEVELS10
-
-
 namespace writerfilter {
 namespace dmapper {
 
@@ -295,14 +292,6 @@ uno::Sequence< beans::PropertyValue > 
ListLevel::GetLevelProperties( )
 //2.3
 //3.4
 
-
-if( m_nFWord6 > 0) //Word 6 compatibility
-{
-if( m_nFPrev == 1)
-
aNumberingProperties.push_back(lcl_makePropVal(PROP_PARENT_NUMBERING,
 NUMBERING_MAX_LEVELS));
-//TODO: prefixing space nFPrevSpace; - has not been used in 
WW8 filter
-}
-
 //TODO: sRGBXchNums; array of inherited numbers
 
 //  nXChFollow; following character 0 - tab, 1 - space, 2 - nothing
diff --git a/writerfilter/source/dmapper/NumberingManager.hxx 
b/writerfilter/source/dmapper/NumberingManager.hxx
index f2cb1d2c637e..723ca47fdab2 100644
--- a/writerfilter/source/dmapper/NumberingManager.hxx
+++ b/writerfilter/source/dmapper/NumberingManager.hxx
@@ -45,9 +45,7 @@ class ListLevel : public PropertyMap
 sal_Int32 m_nNFC;
//LN_CT_Lvl_numFmt
 sal_Int32 m_nJC; //LN_JC
 sal_Int32 m_nFLegal; 
//LN_FLEGAL
-sal_Int32 m_nFPrev;  //LN_FPREV
 sal_Int32 m_nFPrevSpace; 
//LN_FPREVSPACE
-sal_Int32 m_nFWord6; 
//LN_FWORD6
 sal_Int16 m_nXChFollow;  
//LN_IXCHFOLLOW
 OUString   m_sBulletChar;
 OUString   m_sGraphicURL;
@@ -66,9 +64,7 @@ public:
 ,m_nNFC(-1)
 ,m_nJC(-1)
 ,m_nFLegal(-1)
-,m_nFPrev(-1)
 ,m_nFPrevSpace(-1)
-,m_nFWord6(-1)
 ,m_nXChFollow(SvxNumberFormat::LISTTAB)
 ,m_nTabstop( 0 )
 ,m_outline(false)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107128] New: Define background color for notebookbar

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

Bug ID: 107128
   Summary: Define background color for notebookbar
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kain...@gmail.com

Created attachment 132526
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132526=edit
different colors for toolbars

the idea is that you can define the background color (with system colors) for
parts of the notebookbar.

attached you will see the result defined with a firefox personas theme.

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


[Libreoffice-bugs] [Bug 107127] insert draw context- for notebookbar instead of open the toolbar

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

andreas_k  changed:

   What|Removed |Added

 CC||kain...@gmail.com

--- Comment #1 from andreas_k  ---
Created attachment 132525
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132525=edit
ui file for tests

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


[Libreoffice-bugs] [Bug 107127] New: insert draw context- for notebookbar instead of open the toolbar

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

Bug ID: 107127
   Summary: insert draw context- for notebookbar instead of open
the toolbar
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kain...@gmail.com

Created attachment 132524
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132524=edit
draw icon will open the insert grapic toolbar but in notebookbar everything
should be available in the notebookbar.

Add context-drawgraphic for notebook bar that you can have a context toolbar
for draw graphic when you click the insert draw toolbar. now with the icon the
insert grapic toolbar was opened.

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


[Libreoffice-bugs] [Bug 39468] translate German comments, removing redundant ones

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

--- Comment #277 from Alexey Vlasov  ---
Hello together,

thanks, it's great to be here! I've submitted my first commit, let's see if it
goes through. Any feedback is appreciated.

Regards

-- 
You are receiving this mail because:
You 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: comphelper/Library_comphelper.mk comphelper/source comphelper/util offapi/com offapi/UnoApi_offapi.mk solenv/bin

2017-04-12 Thread Caolán McNamara
 comphelper/Library_comphelper.mk  |1 
 comphelper/source/misc/documentiologring.cxx  |  151 --
 comphelper/source/misc/documentiologring.hxx  |   69 --
 comphelper/util/comphelp.component|5 
 offapi/UnoApi_offapi.mk   |3 
 offapi/com/sun/star/logging/DocumentIOLogRing.idl |   49 ---
 offapi/com/sun/star/logging/SimpleLogRing.idl |   55 
 offapi/com/sun/star/logging/XSimpleLogRing.idl|   62 -
 solenv/bin/native-code.py |1 
 9 files changed, 396 deletions(-)

New commits:
commit 169bd7718264b0e312052757f9bbd2321e1399c2
Author: Caolán McNamara 
Date:   Wed Apr 12 09:05:17 2017 +0100

[API-CHANGE] drop css.comp.logging.SimpleLogRing

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

diff --git a/comphelper/Library_comphelper.mk b/comphelper/Library_comphelper.mk
index 344e186ba0b1..49347b336756 100644
--- a/comphelper/Library_comphelper.mk
+++ b/comphelper/Library_comphelper.mk
@@ -88,7 +88,6 @@ $(eval $(call gb_Library_add_exception_objects,comphelper,\
 comphelper/source/misc/docpasswordhelper \
 comphelper/source/misc/docpasswordrequest \
 comphelper/source/misc/documentinfo \
-comphelper/source/misc/documentiologring \
 comphelper/source/misc/evtlistenerhlp \
 comphelper/source/misc/evtmethodhelper \
 comphelper/source/misc/fileurl \
diff --git a/comphelper/source/misc/documentiologring.cxx 
b/comphelper/source/misc/documentiologring.cxx
deleted file mode 100644
index e90cd95f0cf8..
--- a/comphelper/source/misc/documentiologring.cxx
+++ /dev/null
@@ -1,151 +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/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-
-#include 
-#include 
-#include 
-#include 
-
-#include "documentiologring.hxx"
-#include 
-
-using namespace ::com::sun::star;
-
-namespace comphelper
-{
-
-
-OSimpleLogRing::OSimpleLogRing()
-: m_aMessages( SIMPLELOGRING_SIZE )
-, m_bInitialized( false )
-, m_bFull( false )
-, m_nPos( 0 )
-{
-}
-
-
-OSimpleLogRing::~OSimpleLogRing()
-{
-}
-
-// XSimpleLogRing
-
-void SAL_CALL OSimpleLogRing::logString( const OUString& aMessage )
-{
-::osl::MutexGuard aGuard( m_aMutex );
-
-m_aMessages[m_nPos] = aMessage;
-if ( ++m_nPos >= (sal_Int32)m_aMessages.size() )
-{
-m_nPos = 0;
-m_bFull = true;
-}
-
-// if used once then default initialized
-m_bInitialized = true;
-}
-
-
-uno::Sequence< OUString > SAL_CALL OSimpleLogRing::getCollectedLog()
-{
-::osl::MutexGuard aGuard( m_aMutex );
-
-sal_Int32 nResLen = m_bFull ? m_aMessages.size() : m_nPos;
-sal_Int32 nStart = m_bFull ? m_nPos : 0;
-uno::Sequence< OUString > aResult( nResLen );
-
-for ( sal_Int32 nInd = 0; nInd < nResLen; nInd++ )
-aResult[nInd] = m_aMessages[ ( nStart + nInd ) % m_aMessages.size() ];
-
-// if used once then default initialized
-m_bInitialized = true;
-
-return aResult;
-}
-
-// XInitialization
-
-void SAL_CALL OSimpleLogRing::initialize( const uno::Sequence< uno::Any >& 
aArguments )
-{
-::osl::MutexGuard aGuard( m_aMutex );
-if ( m_bInitialized )
-throw frame::DoubleInitializationException();
-
-if ( !m_refCount )
-throw uno::RuntimeException(); // the object must be refcounted 
already!
-
-if (aArguments.hasElements())
-{
-sal_Int32 nLen = 0;
-if ( aArguments.getLength() == 1 && ( aArguments[0] >>= nLen ) && nLen 
)
-m_aMessages.resize( nLen );
-else
-throw lang::IllegalArgumentException(
-"Nonnull size is expected as the first argument!",
-uno::Reference< uno::XInterface >(),
-0 );
-}
-
-m_bInitialized = true;
-}
-
-// XServiceInfo
-OUString SAL_CALL OSimpleLogRing::getImplementationName()
-{
-return OUString("com.sun.star.comp.logging.SimpleLogRing");
-}
-

[Libreoffice-bugs] [Bug 100480] Improve the description of the "Match case" check box in the Find and Replace dialog

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

Olivier Hallot  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 107126] Crash on changing page type in document (editing) with many footnotes

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

--- Comment #2 from matt  ---
Created attachment 132523
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132523=edit
Screencast of 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-commits] online.git: Changes to 'refs/tags/2.1-rc1'

2017-04-12 Thread Marco Cecchetti
Tag '2.1-rc1' created by Andras Timar  at 
2017-04-12 18:49 +

2.1-rc1

Changes since 2.1-beta3-81:
---
 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 'refs/tags/2.1-rc1' - 0 commits -

2017-04-12 Thread Unknown
Rebased ref, commits from common ancestor:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-04-12 Thread Gabor Kelemen
 source/text/shared/01/06140400.xhp |   85 ++---
 1 file changed, 61 insertions(+), 24 deletions(-)

New commits:
commit dafaa1c1e89f912513e87c613db7ff23961d3030
Author: Gabor Kelemen 
Date:   Tue Apr 11 00:19:43 2017 +0200

Update Customize - Toolbars page help

Sync with UI and reorder paragraphs to better follow
its structure.
Add bookmarks as needed.

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

diff --git a/source/text/shared/01/06140400.xhp 
b/source/text/shared/01/06140400.xhp
index 757198a99..141e950e9 100644
--- a/source/text/shared/01/06140400.xhp
+++ b/source/text/shared/01/06140400.xhp
@@ -21,7 +21,7 @@
  -->
 
 
-   
+
 
 
 Toolbars
@@ -30,70 +30,107 @@
 
 
 
+
 Toolbars
-Lets you customize $[officename] toolbars.
+Lets you customize $[officename] 
toolbars.
 
 
 
 
-Toolbar
-Select the toolbar you want to edit.
+
+
+Toolbar
+Select the toolbar you want to 
edit.
+
+Style
+Select the 
toolbar style you want to use. 
+
+Icons
+Shows icons only.
+
+
+Icons 
 Text
+Shows icons and text.
+
+
+Text
+Shows text only.
+
 
 New
-Opens the Name dialog, where you 
enter the name of a new toolbar and select the location of the new 
toolbar. Opens the Name dialog, where you enter the name of a new 
toolbar and select the location of the new toolbar.
+Opens the Name dialog, where you can enter the name 
of a new toolbar and select the location of the new toolbar.
 
+
 Enter the name of a new 
toolbar.
+
+
 Select the location of the new 
toolbar.
 
 
 Toolbar
 The Toolbar button opens a submenu with the 
following commands:
 Rename
-Opens the Name dialog, where you enter a new name for 
the selected toolbar.
+Opens the Rename Toolbar dialog, where you enter a new 
name for the selected toolbar.
 New name
 Enter the new name for the selected toolbar.
+
 Delete
-Deletes the selected toolbar after you agree to the question. You 
can only delete custom toolbars, not the built-in toolbars.
+Deletes the selected toolbar without any further question. You can 
only delete custom toolbars, not the built-in toolbars.
+
 Restore Default Settings
 Restores the default settings.
-Icons only
-Shows icons only.
-Text only
-Shows text only.
-Icons  Text
-Shows icons and text.
 
 
 Moves the selected item up in the 
list.
 
 Moves the selected item down in 
the list.
 
-
+
 Commands
-Displays a list of commands for the selected toolbar of the current 
application or document.
+Displays a list of commands for the selected toolbar 
of the current application or document.
+
 
-Add
-Opens the Add Commands dialog. Select any command, 
then click Add or drag-and-drop the command into the 
Customize dialog.
-Modify
+Add Command
+Opens the Add Commands dialog. Select any command, 
then click Add to insert the command into the 
Customize dialog.
+
+
+Add 
Separator
+Inserts a separator line under the current toolbar 
entry.
+
+
+Modify
 The Modify button opens a submenu with the 
following commands:
 Rename
 Opens the Rename dialog, where you enter a new name for 
the selected command.
 New name
 Enter the new name for the selected command.
-Delete
-Deletes the selected command after you agree to the 
question.
+
 Restore Default Settings
 Restores the default settings.
-Begin a Group
-Inserts a separator line under the current toolbar entry.
 Change Icon
-Opens the Change Icon dialog, where you can assign a different icon 
to the current command.
+Opens the Change Icon dialog, where you can assign a different icon to the 
current command.
 Reset Icon
 Resets the icon to the default icon.
-Save In
+
+
+Remove
+Deletes the selected command without any further 
question.
+
+
+Reset
+Restores the selected toolbar to its original state after you agree to 
the question.
+
+
+Save In
 Select the location where to load the configuration 
and where to save it.
 For 
every entry in the list box, an own configuration is maintained. Select one of 
the open documents or select the application to load and edit the associated 
configuration. Edit the configuration and save it back to the location from 
where you loaded it. Editing the configuration in one location does not change 
the configuration in any other location.
 It 
is not possible to load a configuration from one location and save it to 
another location.
+
+
+Description
+Displays a short description of the given command. 
+For this feature 
to work the help content package for the currently used language must be 
installed.
+
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2017-04-12 Thread Gabor Kelemen
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9bd5b6b9855ad11314ec5d00585fc568bb1689fe
Author: Gabor Kelemen 
Date:   Tue Apr 11 00:19:43 2017 +0200

Updated core
Project: help  dafaa1c1e89f912513e87c613db7ff23961d3030

Update Customize - Toolbars page help

Sync with UI and reorder paragraphs to better follow
its structure.
Add bookmarks as needed.

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

diff --git a/helpcontent2 b/helpcontent2
index 15646c9c9d2c..dafaa1c1e89f 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 15646c9c9d2ceab21b8688cbd993a8ee881f7c7f
+Subproject commit dafaa1c1e89f912513e87c613db7ff23961d3030
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107126] Crash on changing page type in document (editing) with many footnotes

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

--- Comment #1 from matt  ---
Steps:

Open document as described above.
Click any page.
Change page type from a type without footers to a type with footers.
Boom.

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


[Libreoffice-bugs] [Bug 107126] New: Crash on changing page type in document (editing) with many footnotes

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

Bug ID: 107126
   Summary: Crash on changing page type in document (editing) with
many footnotes
   Product: LibreOffice
   Version: 4.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...@matts.org

Created attachment 132522
  --> https://bugs.documentfoundation.org/attachment.cgi?id=132522=edit
Backtrace ending at SwFtnBossFrm::RearrangeFtns

Please feel free to email for a test document, I don't want to upload it here.
It is a 13 page document with 51 footnotes. Similar crashes have been happening
as I build the document out, so it is likely reproducible with fewer pages
also.

Attached is the backtrace.

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - 21 commits - cui/source hwpfilter/qa hwpfilter/source include/svl sc/qa sc/source svl/source svx/source sw/qa sw/source vcl/source vc

2017-04-12 Thread Andras Timar
 cui/source/dialogs/postdlg.cxx|7 
 cui/source/options/optjava.cxx|6 
 hwpfilter/qa/cppunit/data/fail/cslist-1.hwp   |binary
 hwpfilter/source/hpara.cxx|  120 +--
 hwpfilter/source/hpara.h  |9 
 hwpfilter/source/hwpfile.cxx  |  103 ---
 hwpfilter/source/hwpfile.h|   17 
 hwpfilter/source/hwpreader.cxx|  684 ++
 hwpfilter/source/hwpreader.hxx|4 
 hwpfilter/source/solver.cxx   |   53 -
 include/svl/zforlist.hxx  |6 
 include/svl/zformat.hxx   |   34 +
 sc/qa/unit/ucalc.cxx  |  156 +
 sc/qa/unit/ucalc.hxx  |4 
 sc/source/core/data/documen4.cxx  |   36 -
 sc/source/ui/condformat/condformatdlg.cxx |5 
 sc/source/ui/view/tabvwshf.cxx|4 
 svl/source/numbers/zforlist.cxx   |   21 
 svl/source/numbers/zformat.cxx|  147 ++--
 svx/source/dialog/crashreportdlg.cxx  |2 
 sw/qa/extras/ooxmlexport/data/tdf106690.docx  |binary
 sw/qa/extras/ooxmlexport/ooxmlexport9.cxx |9 
 sw/qa/extras/rtfimport/data/hexcrlf.rtf   |6 
 sw/source/core/crsr/crstrvl.cxx   |4 
 sw/source/core/frmedt/fews.cxx|7 
 sw/source/filter/ww8/ww8par6.cxx  |  128 ++--
 sw/source/uibase/uiview/view2.cxx |   25 
 vcl/source/window/dialog.cxx  |3 
 vcl/unx/gtk3/gtk3gtkframe.cxx |8 
 vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx |   12 
 writerfilter/source/dmapper/DomainMapper.cxx  |7 
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |   45 +
 writerfilter/source/dmapper/DomainMapper_Impl.hxx |5 
 writerfilter/source/rtftok/rtfdocumentimpl.cxx|6 
 34 files changed, 972 insertions(+), 711 deletions(-)

New commits:
commit 4553bc1bfa72dce55566971e27b94f3a5bfcdc79
Author: Andras Timar 
Date:   Wed Apr 12 20:29:09 2017 +0200

fix previous commit

Change-Id: I204f83aede085bbe4f5bd6937238b2117e51c86a

diff --git a/svx/source/dialog/crashreportdlg.cxx 
b/svx/source/dialog/crashreportdlg.cxx
index 7d94dc40f551..3a9ff75e33fb 100644
--- a/svx/source/dialog/crashreportdlg.cxx
+++ b/svx/source/dialog/crashreportdlg.cxx
@@ -95,7 +95,7 @@ IMPL_LINK(CrashReportDialog, BtnHdl, Button*, pBtn, void)
 mpEditPostUpload->SetText("Error!");
 
 mpBtnClose->Show();
-
mpBugReportMailto->SetURL(mpFtBugReport->GetURL().replaceAll("%CRASHID", 
aCrashID.replaceAll("Crash-ID=","")));
+
mpBugReportMailto->SetURL(mpBugReportMailto->GetURL().replaceAll("%CRASHID", 
aCrashID.replaceAll("Crash-ID=","")));
 mpBugReportMailto->Show();
 mpEditPreUpload->Hide();
 mpEditPostUpload->Show();
commit ca45d2f299634c65406de9920da1dd044b9a3666
Author: Caolán McNamara 
Date:   Sat Apr 8 21:04:45 2017 +0100

ofz#1062 ensure cshape lifecycle matches expectations

Change-Id: I586e9b3546516a0f05d86b2f7dd93e7c292a6795
Reviewed-on: https://gerrit.libreoffice.org/36300
Tested-by: Jenkins 
Reviewed-by: Michael Stahl 
(cherry picked from commit 4e175b7aee7c00c6d0d8449a19b26ebf25446b9d)

diff --git a/hwpfilter/source/hpara.cxx b/hwpfilter/source/hpara.cxx
index 84294c59ed3c..3149d65acf0a 100644
--- a/hwpfilter/source/hpara.cxx
+++ b/hwpfilter/source/hpara.cxx
@@ -75,17 +75,16 @@ HWPPara::HWPPara()
 , etcflag(0)
 , ctrlflag(0)
 , pstyno(0)
+, cshape(new CharShape)
 , linfo(nullptr)
-, cshapep(nullptr)
 {
-memset(, 0, sizeof(cshape));
+memset(cshape.get(), 0, sizeof(cshape));
 memset(, 0, sizeof(pshape));
 }
 
 HWPPara::~HWPPara()
 {
 delete[] linfo;
-delete[] cshapep;
 }
 
 bool HWPPara::Read(HWPFile & hwpf, unsigned char flag)
@@ -102,18 +101,17 @@ bool HWPPara::Read(HWPFile & hwpf, unsigned char flag)
 hwpf.Read4b(, 1);
 hwpf.Read1b(, 1);
 
-
 /* Paragraph representative character */
-cshape.Read(hwpf);
+cshape->Read(hwpf);
 if (nch > 0)
-hwpf.AddCharShape();
+hwpf.AddCharShape(cshape);
 
 /* Paragraph paragraphs shape  */
 if (nch && !reuse_shape)
 {
 pshape.Read(hwpf);
-pshape.cshape = 
-  pshape.pagebreak = etcflag;
+pshape.cshape = cshape.get();
+pshape.pagebreak = etcflag;
 }
 
 linfo = ::comphelper::newArray_null(nline);
@@ -144,23 +142,19 @@ bool HWPPara::Read(HWPFile & hwpf, unsigned char flag)
 
 if (contain_cshape)
 {
-cshapep = ::comphelper::newArray_null(nch);
-if (!cshapep)
-{
-perror("Memory Allocation: cshape\n");

Re: tdf106013 Add-In functions that are also Excel2013 OOXML functions

2017-04-12 Thread Eike Rathke
Hi Winfried,

I'm also mixing in some quotes from your previous mail of this topic

On Sunday, 2017-02-26 14:10:57 +0100, Winfried Donkers wrote:
On Wednesday, 2017-04-12 16:37:54 +0200, Winfried Donkers wrote:

> I'm sort of stuck with tdf106013.
> 
> There is a group of Add-In functions that were newly defined in Excel 2013
> (IMCOSH, IMCOT, IMCSC, IMCSCH, IMSEC, IMSECH, IMSINH and IMTAN, I'll call
> them IMxx).
> 
> In Calc these functions are defined in scaddins and also mentioned in
> sc/source/filter/oox/formulabase.cxx in saFuncTable2013[].
> 
> 
> The problem is that the IMxx functions saved as xlsx by Calc won't open
> correctly by Excel and vice versa.
> 
> Calc writes the IMxx functions in xlsx as =IMxx(...), just as on ods.
> 
> Excel writes the IMxx functions in xlsx as =_xlfn.IMxx(...), and in ods as
> =IMxx(...).
> 
> The other Add-In functions are written by both Calc and Excel as
> =FUNCTIONNAME(...).

This is due to that the functions defined in the Add-In were defined by
Excel long ago and are part of OOXML, and those Add-In functions are
treated accordingly during export. Unfortunately the exceptional IM*
cases don't seem to fit into the XclFunctionInfo tables of
sc/source/filter/excel/xlformula.cxx, only the case of writing an
internal function as Add-In is handled there (those with
EXC_FUNCFLAG_ADDINEQUIV set). But the lookup is done by OpCode in those
tables, so that doesn't work for ocExternal.

> When I define the IMxx functions as regular functions, there are written as
> =_xlfn.IMxx(...) in xlsx, but when written to xls, they give problems when
> opening in Excel.

Where and how did you define them as regular functions? Were they also
written as _xlfn.IMxx to .xls? Or without _xlfn.? As macro calls? Or...?

> Any suggestions for a solution?

I could imagine to define some extra range of OpCode for XclFunctionInfo
starting at 0xFF00 or any other unused high value and for
ocExternal/svExternal do an extra lookup depending on the value of the
XclExpScToken's aTokData.mpScToken->GetExternal() programmatical name,
that for example is "com.sun.star.sheet.addin.Analysis.getImcsch", using
a simple std:map like
opcodevalue["com.sun.star.sheet.addin.Analysis.getImcsch"] = 0xFF00;

The corresponding XclFunctionInfo entry then could be

{ 0xFF00,   255,2,  2, V, { RO_E, RO }, 
EXC_FUNCFLAG_EXPORTONLY, EXC_FUNCNAME( "IMCSCH" ) },

Note that these 255-export-only definitions due to the BIFF .xls macro
call storage use minparam+1 and maxparam+1, so for IMCSCH that expects
one parameter the definition is 2,2

In XclExpFmlaCompImpl::ProcessFunction() there's

maFuncProv.GetFuncInfoFromOpCode( eOpCode )

which for (eOpCode == ocExternal && rTokData.GetType() == svExternal)
would needed to be called with the new eOpCode according to the mapping.

I hope that helps.


> I just noticed that tdf100450 regarding the Add-in function ACCRINT has a 
> similar problem.
> It currently reflects pre-Excel2013 behaviour, but does not comply with 
> ODFF1.2 or with the current Excel.

Probably keep the 7 parameters ACCRINT as Add-In function but name it
ACCRINT_EXCEL or such, and for 8 parameters introduce a new ACCRINT
function that is stored as _xlfn.ACCRINT (or whatever Excel does? OOXML
only defines 7 parameters).

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GPG key "ID" 0x65632D3A - 2265 D7F3 A7B0 95CC 3918  630B 6A6C D5B7 6563 2D3A
Better use 64-bit 0x6A6CD5B765632D3A here is why: https://evil32.com/
Care about Free Software, support the FSFE https://fsfe.org/support/?erack


signature.asc
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 106959] In mail merge if the output document is saved as individual documents the second document is identical to the first one

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

Buovjaga  changed:

   What|Removed |Added

 Blocks||102998


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 102998] [META] Mail merge bugs and enhancements

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

Buovjaga  changed:

   What|Removed |Added

 Depends on||106959


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=106959
[Bug 106959] In mail merge if the output document is saved as individual
documents the second document is identical to the first one
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 106651] PDF/A fails validation using Solid Documents ( something to do with not mapping to Unicode)

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

Buovjaga  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #4 from Buovjaga  ---
NEW per comment 3

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


[Libreoffice-bugs] [Bug 106949] HTML to PDF conversion hangs when called through socket from Liferay

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

Buovjaga  changed:

   What|Removed |Added

   Keywords||needsDevAdvice

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


[Libreoffice-bugs] [Bug 106933] LibO crashes with ntdll.dll on first startup

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

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #3 from Buovjaga  ---
You could try this to get a backtrace:
https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg#Automation

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


[Libreoffice-bugs] [Bug 106989] LibreOffice is not treating dot the same way it does comma when spell checking

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

Kruno  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #5 from Kruno  ---
Just tested in 5.3.2, same: this.is.all.one.big.word. and suggestion for that
word is unrelated to it's components.

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


[Libreoffice-bugs] [Bug 106931] LibreOffice 5.3 installer doesn't honor UI_LANGS property

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

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #1 from Buovjaga  ---
See this:
https://lists.freedesktop.org/archives/libreoffice/2017-April/077536.html

Closing.

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


[Libreoffice-bugs] [Bug 106926] FORMATING: Incorrect padding if border(s) not used

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

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #3 from Buovjaga  ---
"If the check box „Synch“ isenabled" <- this is all perfectly logical. Closing.

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


[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-1' - loolwsd.xml.in wsd/DocumentBroker.cpp wsd/LOOLWSD.cpp wsd/LOOLWSD.hpp wsd/TileCache.cpp wsd/TileCache.hpp

2017-04-12 Thread Marco Cecchetti
 loolwsd.xml.in |2 ++
 wsd/DocumentBroker.cpp |4 
 wsd/LOOLWSD.cpp|4 
 wsd/LOOLWSD.hpp|1 +
 wsd/TileCache.cpp  |9 +++--
 wsd/TileCache.hpp  |3 +++
 6 files changed, 21 insertions(+), 2 deletions(-)

New commits:
commit acfbdfa3d59d3d52feae0f711f9d4af3fd71cd66
Author: Marco Cecchetti 
Date:   Wed Apr 12 12:32:59 2017 +0200

wsd - implemented an option to clean cache on doc close

Includes also the following commit:

Clean the cache even when the document was not modified.

And rename the option, to match better the existing tile cache setting.

Change-Id: I0bdb373efb93546527a168df2ed1c75539e95fe4

diff --git a/loolwsd.xml.in b/loolwsd.xml.in
index 511b5479..5640d08f 100644
--- a/loolwsd.xml.in
+++ b/loolwsd.xml.in
@@ -77,6 +77,8 @@
 
 
 
+true
+
 
 
 
diff --git a/wsd/DocumentBroker.cpp b/wsd/DocumentBroker.cpp
index e041db70..3cac2e70 100644
--- a/wsd/DocumentBroker.cpp
+++ b/wsd/DocumentBroker.cpp
@@ -1198,6 +1198,10 @@ void DocumentBroker::destroyIfLastEditor(const 
std::string& id)
 _markToDestroy = (_sessions.size() <= 1);
 LOG_DBG("startDestroy on session [" << id << "] on docKey [" << _docKey <<
 "], markToDestroy: " << _markToDestroy << ", lastEditableSession: 
" << _lastEditableSession);
+
+// Remove all tiles related to this document from the cache.
+if (_markToDestroy && !LOOLWSD::TileCachePersistent)
+_tileCache->completeCleanup();
 }
 
 void DocumentBroker::setModified(const bool value)
diff --git a/wsd/LOOLWSD.cpp b/wsd/LOOLWSD.cpp
index 57c63523..9d3c62fe 100644
--- a/wsd/LOOLWSD.cpp
+++ b/wsd/LOOLWSD.cpp
@@ -553,6 +553,7 @@ static std::string UnitTestLibrary;
 
 unsigned int LOOLWSD::NumPreSpawnedChildren = 0;
 std::atomic LOOLWSD::NumConnections;
+bool LOOLWSD::TileCachePersistent = true;
 std::unique_ptr LOOLWSD::TraceDumper;
 
 /// This thread polls basic web serving, and handling of
@@ -610,6 +611,7 @@ void LOOLWSD::initialize(Application& self)
 // Add default values of new entries here.
 static const std::map DefAppConfig
 = { { "tile_cache_path", LOOLWSD_CACHEDIR },
+{ "tile_cache_persistent", "true" },
 { "sys_template_path", "systemplate" },
 { "lo_template_path", LO_PATH },
 { "child_root_path", "jails" },
@@ -762,6 +764,8 @@ void LOOLWSD::initialize(Application& self)
 
 LOOLWSD::NumConnections = 0;
 
+TileCachePersistent = getConfigValue(conf, "tile_cache_persistent", 
true);
+
 // Command Tracing.
 if (getConfigValue(conf, "trace[@enable]", false))
 {
diff --git a/wsd/LOOLWSD.hpp b/wsd/LOOLWSD.hpp
index 072a4a88..72c3a9a1 100644
--- a/wsd/LOOLWSD.hpp
+++ b/wsd/LOOLWSD.hpp
@@ -53,6 +53,7 @@ public:
 static std::string FileServerRoot;
 static std::string LOKitVersion;
 static std::atomic NumConnections;
+static bool TileCachePersistent;
 static std::unique_ptr TraceDumper;
 
 /// Flag to shutdown the server.
diff --git a/wsd/TileCache.cpp b/wsd/TileCache.cpp
index b744eded..ff30710f 100644
--- a/wsd/TileCache.cpp
+++ b/wsd/TileCache.cpp
@@ -63,8 +63,7 @@ TileCache::TileCache(const std::string& docURL,
  getTextFile("unsaved.txt", unsaved)))
 {
 // Document changed externally or modifications were not saved after 
all. Cache not useful.
-FileUtil::removeFile(_cacheDir, true);
-LOG_INF("Completely cleared tile cache: " << _cacheDir);
+completeCleanup();
 }
 
 File(_cacheDir).createDirectories();
@@ -77,6 +76,12 @@ TileCache::~TileCache()
 LOG_INF("~TileCache dtor for uri [" << _docURL << "].");
 }
 
+void TileCache::completeCleanup() const
+{
+FileUtil::removeFile(_cacheDir, true);
+LOG_INF("Completely cleared tile cache: " << _cacheDir);
+}
+
 /// Tracks the rendering of a given tile
 /// to avoid duplication and help clock
 /// rendering latency.
diff --git a/wsd/TileCache.hpp b/wsd/TileCache.hpp
index 96b5a5b3..9f86cc72 100644
--- a/wsd/TileCache.hpp
+++ b/wsd/TileCache.hpp
@@ -36,6 +36,9 @@ public:
 TileCache(const std::string& docURL, const Poco::Timestamp& modifiedTime, 
const std::string& cacheDir);
 ~TileCache();
 
+/// Remove the entire cache directory.
+void completeCleanup() const;
+
 TileCache(const TileCache&) = delete;
 
 /// Subscribes if no subscription exists and returns the version number.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: 2 commits - loolwsd.xml.in wsd/DocumentBroker.cpp wsd/LOOLWSD.cpp wsd/LOOLWSD.hpp wsd/TileCache.cpp wsd/TileCache.hpp

2017-04-12 Thread Jan Holesovsky
 loolwsd.xml.in |2 ++
 wsd/DocumentBroker.cpp |4 
 wsd/LOOLWSD.cpp|4 
 wsd/LOOLWSD.hpp|1 +
 wsd/TileCache.cpp  |9 +++--
 wsd/TileCache.hpp  |3 +++
 6 files changed, 21 insertions(+), 2 deletions(-)

New commits:
commit ba3b32aad1f7fa262990a195241067ac7c7745a0
Author: Jan Holesovsky 
Date:   Wed Apr 12 20:04:30 2017 +0200

Clean the cache even when the document was not modified.

And rename the option, to match better the existing tile cache setting.

Change-Id: Iea5c2c5628a403dd2dc3e2943cd858f40e2a2ebc

diff --git a/loolwsd.xml.in b/loolwsd.xml.in
index db871747..5640d08f 100644
--- a/loolwsd.xml.in
+++ b/loolwsd.xml.in
@@ -16,8 +16,6 @@
 4
 
 
-false
-
 loleaflet.html
 
 
@@ -79,6 +77,8 @@
 
 
 
+true
+
 
 
 
diff --git a/wsd/DocumentBroker.cpp b/wsd/DocumentBroker.cpp
index 50fc4fbe..3cac2e70 100644
--- a/wsd/DocumentBroker.cpp
+++ b/wsd/DocumentBroker.cpp
@@ -539,12 +539,6 @@ bool DocumentBroker::saveToStorage(const std::string& 
sessionId,
 // We've saved and can safely destroy.
 removeSessionInternal(sessionId);
 
-// Remove all tiles related to this document from the cache.
-if (LOOLWSD::CleanCacheOnDocClose)
-{
-invalidateTiles("invalidatetiles: EMPTY");
-}
-
 // Stop so we get cleaned up and removed.
 _stop = true;
 }
@@ -1204,6 +1198,10 @@ void DocumentBroker::destroyIfLastEditor(const 
std::string& id)
 _markToDestroy = (_sessions.size() <= 1);
 LOG_DBG("startDestroy on session [" << id << "] on docKey [" << _docKey <<
 "], markToDestroy: " << _markToDestroy << ", lastEditableSession: 
" << _lastEditableSession);
+
+// Remove all tiles related to this document from the cache.
+if (_markToDestroy && !LOOLWSD::TileCachePersistent)
+_tileCache->completeCleanup();
 }
 
 void DocumentBroker::setModified(const bool value)
diff --git a/wsd/LOOLWSD.cpp b/wsd/LOOLWSD.cpp
index cd9a725c..9d3c62fe 100644
--- a/wsd/LOOLWSD.cpp
+++ b/wsd/LOOLWSD.cpp
@@ -553,7 +553,7 @@ static std::string UnitTestLibrary;
 
 unsigned int LOOLWSD::NumPreSpawnedChildren = 0;
 std::atomic LOOLWSD::NumConnections;
-bool LOOLWSD::CleanCacheOnDocClose = false;
+bool LOOLWSD::TileCachePersistent = true;
 std::unique_ptr LOOLWSD::TraceDumper;
 
 /// This thread polls basic web serving, and handling of
@@ -611,6 +611,7 @@ void LOOLWSD::initialize(Application& self)
 // Add default values of new entries here.
 static const std::map DefAppConfig
 = { { "tile_cache_path", LOOLWSD_CACHEDIR },
+{ "tile_cache_persistent", "true" },
 { "sys_template_path", "systemplate" },
 { "lo_template_path", LO_PATH },
 { "child_root_path", "jails" },
@@ -619,7 +620,6 @@ void LOOLWSD::initialize(Application& self)
 { "file_server_root_path", "loleaflet/.." },
 { "num_prespawn_children", "1" },
 { "per_document.max_concurrency", "4" },
-{ "clean_cache_on_doc_close", "false" },
 { "loleaflet_html", "loleaflet.html" },
 { "logging.color", "true" },
 { "logging.level", "trace" },
@@ -764,7 +764,7 @@ void LOOLWSD::initialize(Application& self)
 
 LOOLWSD::NumConnections = 0;
 
-CleanCacheOnDocClose = getConfigValue(conf, 
"clean_cache_on_doc_close", false);
+TileCachePersistent = getConfigValue(conf, "tile_cache_persistent", 
true);
 
 // Command Tracing.
 if (getConfigValue(conf, "trace[@enable]", false))
diff --git a/wsd/LOOLWSD.hpp b/wsd/LOOLWSD.hpp
index 6fb0ff8f..72c3a9a1 100644
--- a/wsd/LOOLWSD.hpp
+++ b/wsd/LOOLWSD.hpp
@@ -53,7 +53,7 @@ public:
 static std::string FileServerRoot;
 static std::string LOKitVersion;
 static std::atomic NumConnections;
-static bool CleanCacheOnDocClose;
+static bool TileCachePersistent;
 static std::unique_ptr TraceDumper;
 
 /// Flag to shutdown the server.
diff --git a/wsd/TileCache.cpp b/wsd/TileCache.cpp
index b744eded..ff30710f 100644
--- a/wsd/TileCache.cpp
+++ b/wsd/TileCache.cpp
@@ -63,8 +63,7 @@ TileCache::TileCache(const std::string& docURL,
  getTextFile("unsaved.txt", unsaved)))
 {
 // Document changed externally or modifications were not saved after 
all. Cache not useful.
-FileUtil::removeFile(_cacheDir, true);
-LOG_INF("Completely cleared tile cache: " << _cacheDir);
+completeCleanup();
 }
 
 File(_cacheDir).createDirectories();
@@ -77,6 +76,12 @@ TileCache::~TileCache()
 LOG_INF("~TileCache dtor for uri [" << _docURL << "].");
 }
 
+void TileCache::completeCleanup() const
+{
+FileUtil::removeFile(_cacheDir, true);
+LOG_INF("Completely cleared tile cache: " << _cacheDir);
+}
+
 /// Tracks the rendering of a given tile
 /// to avoid duplication and 

[Libreoffice-bugs] [Bug 106901] Protected unselectable cells are selectable by using cursor or name box

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

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #1 from Buovjaga  ---
I confirm this in 5.3, but not in 5.4. It seems someone fixed it, but I can't
find who.

Please test with a fresh build:
http://dev-builds.libreoffice.org/daily/master/Win-x86_64@42/current/

Set to NEEDINFO.
Change back to UNCONFIRMED, if the problem persists. Change to RESOLVED
WORKSFORME, if the problem went away.

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


[Libreoffice-bugs] [Bug 60168] Cursor pauses when navigating within unprotected area surrounded by protected region

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

Buovjaga  changed:

   What|Removed |Added

   Priority|medium  |low
Summary|Cursor poses when   |Cursor pauses when
   |navigating within   |navigating within
   |unprotected area surrounded |unprotected area surrounded
   |by protected region |by protected region

--- Comment #5 from Buovjaga  ---
Still repro.

I tried to get a callgrind, but it did not produce anything.

Arch Linux 64-bit, KDE Plasma 5
Version: 5.4.0.0.alpha0+
Build ID: 86eb71c4789dc5ab0200f49f7e5bca512ef4adaf
CPU threads: 8; OS: Linux 4.10; UI render: default; VCL: kde4; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group
Built on April 12th 2016

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


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

2017-04-12 Thread Caolán McNamara
 test/source/setupvcl.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4e0fab219230cc5a35022beb203a014685d8c354
Author: Caolán McNamara 
Date:   Wed Apr 12 18:04:59 2017 +0100

EnableHeadlessMode bool arg doesn't toggle headless

but refers if a dialog is fatal or autocancelled

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

diff --git a/test/source/setupvcl.cxx b/test/source/setupvcl.cxx
index 49bdf7364865..ed090eab62bb 100644
--- a/test/source/setupvcl.cxx
+++ b/test/source/setupvcl.cxx
@@ -74,7 +74,7 @@ void test::setUpVcl() {
 LanguageTag::setConfiguredSystemLanguage(tag.getLanguageType(false));
 InitVCL();
 if (isHeadless()) {
-Application::EnableHeadlessMode(true);
+Application::EnableHeadlessMode(false);
 }
 Application::setDeInitHook(LINK(nullptr, Hook, deinitHook));
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106879] The lines do not adjust automatically

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

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #4 from Buovjaga  ---
(In reply to Zineta from comment #1)
> In version below works fine with
>  Format - AutoFormatStyles - AutoFit with and height,
> no need to adjust line by line.

I can't use this as it is greyed out.

Edu: I got it to work by clicking column B to select everything in it. Then
right-click - Format Cells - Alignment: untick Wrap text.. tick it again, then
click OK.

Arch Linux 64-bit, KDE Plasma 5
Version: 5.4.0.0.alpha0+
Build ID: 86eb71c4789dc5ab0200f49f7e5bca512ef4adaf
CPU threads: 8; OS: Linux 4.10; UI render: default; VCL: kde4; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group
Built on April 12th 2016

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


Re: Clang 5.0 32-bit builds Failing on CppunitTest_vcl_pdfexport

2017-04-12 Thread slacka
Here is the backtrace:

https://pastebin.com/vhYRQDSG

This was with  clang version 4.0.0 (trunk 287326)

On Ubuntu 16.04.2 LTS 3 4.4.0-64-generic #85-Ubuntu SMP Mon Feb 20 11:49:39
UTC 2017 i686 i686 i686 

I'm not sure if it was timing, ccache. or what but whatever is causing this
crash started about 1 month ago. I have been building Libreoffice with Clang
for years and I'm seeing this on 2 different machines(Ubuntu/Fedora).



--
View this message in context: 
http://nabble.documentfoundation.org/MSVC-2015-s-broken-static-initializer-list-causing-build-failure-tp4202928p4212319.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] libmspub.git: 8 commits - build/win32 configure.ac .gitignore m4/ax_cxx_compile_stdcxx_11.m4 m4/ax_cxx_compile_stdcxx.m4 m4/.gitignore src/lib

2017-04-12 Thread David Tardon
 .gitignore |2 
 build/win32/libmspub.dsp   |8 
 build/win32/libmspub.vcproj|8 
 build/win32/libmspub.vcxproj   |2 
 configure.ac   |7 
 m4/.gitignore  |2 
 m4/ax_cxx_compile_stdcxx.m4|  982 +
 m4/ax_cxx_compile_stdcxx_11.m4 |   39 +
 src/lib/MSPUBCollector.cpp |   24 -
 src/lib/MSPUBCollector.h   |7 
 src/lib/MSPUBDocument.cpp  |   13 
 src/lib/MSPUBParser.cpp|   36 -
 src/lib/MSPUBParser.h  |4 
 src/lib/MSPUBParser2k.cpp  |5 
 src/lib/MSPUBParser97.cpp  |5 
 src/lib/MSPUBStringVector.cpp  |   76 ---
 src/lib/PolygonUtils.cpp   |   50 +-
 src/lib/PolygonUtils.h |   12 
 src/lib/ShapeGroupElement.cpp  |   12 
 src/lib/ShapeGroupElement.h|   12 
 src/lib/ShapeInfo.h|   16 
 21 files changed, 1125 insertions(+), 197 deletions(-)

New commits:
commit 9af2873bc114dd81179c580fa4c5993ddbcc45c5
Author: David Tardon 
Date:   Wed Apr 12 19:22:46 2017 +0200

drop forgotten source file

Change-Id: I723886aeb318454c40cf6fde77d1bc95fb6ef8a3

diff --git a/build/win32/libmspub.dsp b/build/win32/libmspub.dsp
index 795af8f..e50e13e 100644
--- a/build/win32/libmspub.dsp
+++ b/build/win32/libmspub.dsp
@@ -123,10 +123,6 @@ SOURCE=..\..\src\lib\MSPUBParser97.cpp
 # End Source File
 # Begin Source File
 
-SOURCE=..\..\src\lib\MSPUBStringVector.cpp
-# End Source File
-# Begin Source File
-
 SOURCE=..\..\src\lib\MSPUBSVGGenerator.cpp
 # End Source File
 # Begin Source File
@@ -159,10 +155,6 @@ SOURCE=..\..\inc\libmspub\MSPUBDocument.h
 # End Source File
 # Begin Source File
 
-SOURCE=..\..\inc\libmspub\MSPUBStringVector.h
-# End Source File
-# Begin Source File
-
 SOURCE=..\..\src\lib\Arrow.h
 # End Source File
 # Begin Source File
diff --git a/build/win32/libmspub.vcproj b/build/win32/libmspub.vcproj
index 5b8a581..aa8f955 100644
--- a/build/win32/libmspub.vcproj
+++ b/build/win32/libmspub.vcproj
@@ -209,10 +209,6 @@
>


-   
-   

@@ -246,10 +242,6 @@
>


-   
-   

diff --git a/build/win32/libmspub.vcxproj b/build/win32/libmspub.vcxproj
index fd24291..3849b77 100644
--- a/build/win32/libmspub.vcxproj
+++ b/build/win32/libmspub.vcxproj
@@ -13,7 +13,6 @@
   
 
 
-
 
 
 
@@ -61,7 +60,6 @@
 
 
 
-
 
 
 
diff --git a/src/lib/MSPUBStringVector.cpp b/src/lib/MSPUBStringVector.cpp
deleted file mode 100644
index 3f1bb75..000
--- a/src/lib/MSPUBStringVector.cpp
+++ /dev/null
@@ -1,76 +0,0 @@
-/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
-/*
- * This file is part of the libmspub 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/.
- */
-
-#include 
-#include 
-
-namespace libmspub
-{
-class MSPUBStringVectorImpl
-{
-public:
-  MSPUBStringVectorImpl() : m_strings() {}
-  ~MSPUBStringVectorImpl() {}
-  std::vector m_strings;
-};
-
-MSPUBStringVector::MSPUBStringVector()
-  : m_pImpl(new MSPUBStringVectorImpl())
-{
-}
-
-MSPUBStringVector::MSPUBStringVector(const MSPUBStringVector )
-  : m_pImpl(new MSPUBStringVectorImpl(*(vec.m_pImpl)))
-{
-}
-
-MSPUBStringVector::~MSPUBStringVector()
-{
-  delete m_pImpl;
-}
-
-MSPUBStringVector ::operator=(const MSPUBStringVector )
-{
-  // Check for self-assignment
-  if (this == )
-return *this;
-  if (m_pImpl)
-delete m_pImpl;
-  m_pImpl = new MSPUBStringVectorImpl(*(vec.m_pImpl));
-  return *this;
-}
-
-unsigned MSPUBStringVector::size() const
-{
-  return (unsigned)(m_pImpl->m_strings.size());
-}
-
-bool MSPUBStringVector::empty() const
-{
-  return m_pImpl->m_strings.empty();
-}
-
-const librevenge::RVNGString ::operator[](unsigned idx) const
-{
-  return m_pImpl->m_strings[idx];
-}
-
-void MSPUBStringVector::append(const librevenge::RVNGString )
-{
-  m_pImpl->m_strings.push_back(str);
-}
-
-void MSPUBStringVector::clear()
-{
-  m_pImpl->m_strings.clear();
-}
-
-}
-
-/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
commit 1182df1076b8f892a18e3c5bb3a3f3dd6ebce24f
Author: David Tardon 
Date:   Wed Apr 12 19:17:44 2017 +0200

boost::bind -> std::bind

Change-Id: Id2fe9b3760add82fa7f13cb00ab0bc1ba5ab4afb

diff --git a/configure.ac b/configure.ac
index c963f8e..a83aedd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -95,7 +95,6 @@ AC_SUBST(ZLIB_LIBS)
 # Find required boost headers
 # ===
 AC_CHECK_HEADERS(
-   boost/bind.hpp \

[Libreoffice-bugs] [Bug 107114] UI not shown after update to 5.3.2

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #3 from V Stuart Foote  ---
Please identify the GPU chip and driver. 

Are you using OpenGL rendering? Please describe effect of enabling/disabling
OpenGL rendering (if supported on your GPU), and also of disabling Hardware
acceleration to use just CPU rendering.

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


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

2017-04-12 Thread Christian Lohmaier
Tag 'libreoffice-5.2.7.1' created by Christian Lohmaier 
 at 2017-04-12 16:55 +

Tag libreoffice-5.2.7.1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJY7lv1AAoJEPQ0oe+v7q6jNLUP/1glpUSejENrJa4/dVLuiKXz
PSW9IDH5o59G3NWPLthIprAR1/E44uqfFBnKJ9+ulunfMnZGFg5fuzXVSGjTLOjg
r3ptaPgntt6tUKQrg3a2WZYcAsa5EK9+uosnbP+Jk0caez/3tSy0X0cdQ6reRVFM
V3yk87oIxbdT7NPSCzWKEHpFZTUyAym6eYQxSHfURuCQ2eLVZ2U1K0kGZ/mBM1ac
NJjrvpZiUHVzUC/+7+C8vbt0fZw4277/AitNOAjuyoS6H8j58h/JAQtiVrnvkHoC
ixqlN0EKK6yabh+AoeoKgQ9z3hCHQJnTw2Kn8cNUbI+qJMjlGOxSljLNNOMTMkdL
Mk4lACMHY2szzOn1G09mx44wBODAch47KQo/9uGZFR7/ytijCvdo4xsfk5p1kHjM
FhLIyG1qMKv35KuLgGGbe4llm5S1gGuOWfXRch5Vo8TrXho8/GINXLqBnwOD1XFf
EueBhIemhWLhZFQhcqD0pq86pF6GPe+IyjdVFEQVgHyKadUHM4cvH+Bbood9q9sZ
aTXEp3oOhEM0zhfSr0oh8hIQRxO66Nys0Tgv1yDncK7YkG1Ikya6R/PIa813Taeo
+D3VYtZ7QYtUis1n10wZ7U2hbo8iILFXRMwpDgGs8q0Xucw8WUba3vUmiGxjF9ou
jaBONTENDRt8A160Zz1/
=Y4CF
-END PGP SIGNATURE-

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


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

2017-04-12 Thread Christian Lohmaier
Tag 'libreoffice-5.2.7.1' created by Christian Lohmaier 
 at 2017-04-12 16:55 +

Tag libreoffice-5.2.7.1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJY7lv5AAoJEPQ0oe+v7q6jFN4P+wdGOkwDcgxLX7Vp7wXb1Zc4
jx7Xt9BKqsMATbIZRIAqKZ8PXk4ZJQJP9e8cMRzg3vjcKzvXdSp1Wke5gkQrZaqf
vWAd5A/7yYqOhe/JaunLd0/Z/nD1qs7/7RRbpr9ldc78eXaDN7G/QQoIUtRsUfBt
Bob3lzW37n0OWCwIM8ylKjaAupP4+kv5nMKuyuIPX6th6GAJK994gxmos6dFWvF+
RXD/Y+haWDb6CLq5+66Lls76cjZ8AyC+19vWKuG/ioPQkV+Hs5/HV2pnjFYTDXGI
vk4AXEQhLtcvbTeYwI3pD9WzdpVRHkEh37DOknOxQQh6R/3vk3oBMuwbdWWEen5O
ODBikyKJfEq65hYMcyVbmbd07PEU7/YKhITCgYiMwYrbi86YByjPE5JbO5CZaq9q
wA4SYHpTjvsnx9NFbGlqKeG3VVlk/EvdclWNu7JTPGfnEMUNYg0eE0DKmo2HvozY
gV8W5smxVsSd+TALe+mYCryyLzhkHUg2rIKc3U/jCeYOskDOuPS3Rl1BQY2RF8lW
4pFb7NdSg8tT5c3Bsdi46WzX5My4jlE3nZBWwgLAGIwj1tdFsTlXclNhJT8ePemg
HqDLwUu2YsvpKBoVbAj3DGf560P3QaEKCj39DCUtF1JIlmg5h8U8M9iF50rz+lwa
Qp2od86Kwkt3+pQ1L9d3
=v6K8
-END PGP SIGNATURE-

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


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

2017-04-12 Thread Christian Lohmaier
Tag 'libreoffice-5.2.7.1' created by Christian Lohmaier 
 at 2017-04-12 16:55 +

Tag libreoffice-5.2.7.1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJY7lv8AAoJEPQ0oe+v7q6jo9UQALyKPwHqM09IfbwweLwtNYCd
qdVS0UnH/JqSwVB+y46jbUbhH5P6logV0DMu7seFoSrZqvRLrec6/kNXDL0AAfjH
WO854n6wc3bM6XFN0W2VZFPcVq18NcojLD+fKkJQQCIL+jKfC1rgFwx56lBZSxzs
QtA5CNVib8yg0bleTiwA5zhJtBjlrS6N33Ev6IVlfUoZypCRrw2wyLsJRGTrBxNE
PNugnsXZx0U0R5TtdWMpe1q1ML5nV6TOJEnkRK74XHljhCaUGHUHjUzlmZl/x1Lw
pFlBBUmJXeOQ0ByVEtMF8kS04+sWMiouVT18lbqP2mVWKsxPJPzMF4xXzq6XJQ1p
GwHri6RxDy1QIU5M6rq6LdV1ruj467mjfP7BFfkMGjRkdCDc9l9Ik1YHdGrhz+f7
SMkW54H8f0tngogSBcs/jgtInb98vgGk9hVoBWfCDWIko3hjUdg28yJlJLPv0lZ4
Ba0FKRB/w9ZDLF/QU5TRSkEsN5dDdyqhWX78sQ+2sswoB9U+dsKplNksfG750u4z
Y1NW/F1ca7ZbzkpnSbAu7E6CbibkU3KCS9kHbu1c50NBasEA1xvrPx8MDdOThSNz
Hmh7+H8xQvm1xh849zc4bmtfSYMj060Od20+nresV9MUWQ3KIM3rl09g5C6+k4xS
DbYOEltc9NA2KB1SW9ks
=Z0Cd
-END PGP SIGNATURE-

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


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

2017-04-12 Thread Christian Lohmaier
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b5b3f870743eaee7aa7b85706cf182849bfcd073
Author: Christian Lohmaier 
Date:   Wed Apr 12 18:56:05 2017 +0200

bump product version to 5.2.7.1.0+

Change-Id: I4efeae17551dbb798c18e4c90fecb4a5fb488de7

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


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

2017-04-12 Thread Christian Lohmaier
Tag 'libreoffice-5.2.7.1' created by Christian Lohmaier 
 at 2017-04-12 16:55 +

Tag libreoffice-5.2.7.1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJY7lv/AAoJEPQ0oe+v7q6ju9MP/2rxaro/t7+uveKPTXxaJZAP
nzHddVD7d72Dvm7Zx0fPGt+XItXcqIavX1l9lG91Ww9h0E4Ya2zOaim+N8ObkCtO
AamqwSYCePSpFniI90nHhubQUFp0w9ZEPt897cFXIBBQ7T+s/5PK32xwZdrC3+nQ
FWPzj9ksZnn+AT6fjbwYy6fM+FaoUYsU6BCmnulD4cgOWBi1FeXqBdk/6dnzf1OI
1L0qtwKFDhF7HwBCP5ggaLQt+pkWgmbekuIZEHENGemkXAEdQ0DSsGO2XExYqm7S
gDwQoE+jA8UH5NCcbNlX2qWfE9khHOXcGv4q2Z2Nm0utwIR+6jnliAzbIyUOn49d
VYOllgAvkr6vyCgeyl7yUNMbviITAiwtljUCwSSMI4cnqWHnsCNP8aLToxk/EV47
SO6r18qPNiwLoZV4N7Z8LWLH1gDIFK5byZqGU9SmEsbGIiPkEfLc+Kydc316nYdw
Nwe5X7aWJKSsznYprLw/+oB1pkN/4L44wSE/hq5pgEiii9oIK2+VfezU7tJlpqle
/WmuHcCFJOdzOGbuX+tIEPsWcOWnjZ2CELw944EY7E7L2Hd49l4lrIadSGfbu7FJ
hD0JlOlnToL8LZj9YU9gQ55/m/VxDdRC865u4Ggvon/0hVdShVbMdK+r0DSX4RYr
YllcFEPmyj58MoFNBSM5
=Otoe
-END PGP SIGNATURE-

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


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

2017-04-12 Thread Christian Lohmaier
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e0b1245d4e715509fa84d50a66b926bbb76fed6f
Author: Christian Lohmaier 
Date:   Wed Apr 12 18:53:44 2017 +0200

bump product version to 5.2.8.0.0+

Change-Id: Ic981e67e4ba8ad1f3f9344c91d6a8338ceb68e3e

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


[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-1' - loleaflet/dist wsd/FileServer.cpp

2017-04-12 Thread Pranav Kant
 loleaflet/dist/loleaflet.html |7 ---
 wsd/FileServer.cpp|   15 ++-
 2 files changed, 14 insertions(+), 8 deletions(-)

New commits:
commit 00af954041c72f00e2813f4102fe22b6f52fa946
Author: Pranav Kant 
Date:   Wed Apr 12 19:23:35 2017 +0530

Make CSP work in older browsers

This cherry-pick consists of following commits:

Move CSP to response headers from meta tag in html
(cherry picked from commit b7eafb1e4a8da6fced02af395581475f0332c2a7)

Use CSP without WOPI host too
(cherry picked from commit 699e8df9a7f99f59a5366e4f2506a69d71e8de9d)

Change-Id: I7f0d7c294e492b3c69ebea6fbd820d6558b9c3b3
Reviewed-on: https://gerrit.libreoffice.org/36480
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 

diff --git a/loleaflet/dist/loleaflet.html b/loleaflet/dist/loleaflet.html
index 8b3f794c..bfa9ad3e 100644
--- a/loleaflet/dist/loleaflet.html
+++ b/loleaflet/dist/loleaflet.html
@@ -3,13 +3,6 @@
 
 Online Editor
 
-
 
 
 

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

2017-04-12 Thread Christian Lohmaier
New branch 'libreoffice-5-2-7' available with the following commits:
commit 5534da0fd961787eb60f2fb5abf0bf7c8f12392e
Author: Christian Lohmaier 
Date:   Wed Apr 12 18:52:07 2017 +0200

Branch libreoffice-5-2-7

This is 'libreoffice-5-2-7' - the stable branch for the 5.2.7 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 5.2.x release,
please use the 'libreoffice-5-2' branch.

If you want to build something cool, unstable, and risky, use master.

Change-Id: Ica8e8c06a9b3e35d3ae8e2548d8de2f9031ea3e8

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


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

2017-04-12 Thread Christian Lohmaier
New branch 'libreoffice-5-2-7' available with the following commits:
commit ea7b04dcbe45a03a10836467d21ef65bc24bbf91
Author: Christian Lohmaier 
Date:   Wed Apr 12 18:51:46 2017 +0200

Branch libreoffice-5-2-7

This is 'libreoffice-5-2-7' - the stable branch for the 5.2.7 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 5.2.x release,
please use the 'libreoffice-5-2' branch.

If you want to build something cool, unstable, and risky, use master.

Change-Id: Ib5370cfeb6fc25bc4b1efdfa79a2d97c05478401

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


  1   2   3   4   >