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

2016-07-18 Thread Jochen Nitschke
 sc/inc/scmod.hxx|5 -
 sc/source/ui/app/drwtrans.cxx   |6 +++---
 sc/source/ui/app/transobj.cxx   |6 +++---
 sc/source/ui/inc/drwtrans.hxx   |7 ---
 sc/source/ui/inc/transobj.hxx   |7 ---
 sc/source/ui/inc/viewdata.hxx   |   11 +++
 sc/source/ui/navipi/content.cxx |8 
 sc/source/ui/view/gridwin.cxx   |   16 
 sc/source/ui/view/tabcont.cxx   |6 +++---
 9 files changed, 40 insertions(+), 32 deletions(-)

New commits:
commit 4306e6600623262964c88c1f8f66188896c3d2a6
Author: Jochen Nitschke 
Date:   Mon Jul 18 22:07:59 2016 +0200

sc: convert SC_DROP_* defines to typed flags

flags are stored by ScTransferObj and ScDrawTransferObj
in members nDragSourceFlags, implemented in the same way by both classes.
set only in ScTabControl::DoDrag() and ScContentTree::DoDrag().

convert to typed_flags ScDragSrc and
move flags closer to users, from sc/inc/scmod.hxx to
sc/source/ui/inc/viewdata.hxx

Change-Id: I15f58a5c828e154114971a1fcf941a3e27acbd56
Reviewed-on: https://gerrit.libreoffice.org/27303
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/sc/inc/scmod.hxx b/sc/inc/scmod.hxx
index e6fa352..bb8df9c 100644
--- a/sc/inc/scmod.hxx
+++ b/sc/inc/scmod.hxx
@@ -73,11 +73,6 @@ class ScMarkData;
 struct ScDragData;
 struct ScClipData;
 
-//  for internal Drag:
-
-#define SC_DROP_NAVIGATOR   1
-#define SC_DROP_TABLE   2
-
 class ScModule: public SfxModule, public SfxListener, public 
utl::ConfigurationListener
 {
 Timer   aIdleTimer;
diff --git a/sc/source/ui/app/drwtrans.cxx b/sc/source/ui/app/drwtrans.cxx
index e602286..b6c1487 100644
--- a/sc/source/ui/app/drwtrans.cxx
+++ b/sc/source/ui/app/drwtrans.cxx
@@ -83,7 +83,7 @@ ScDrawTransferObj::ScDrawTransferObj( SdrModel* pClipModel, 
ScDocShell* pContain
 bGrIsBit( false ),
 bOleObj( false ),
 pDragSourceView( nullptr ),
-nDragSourceFlags( 0 ),
+nDragSourceFlags( ScDragSrc::Undefined ),
 bDragWasInternal( false ),
 nSourceDocID( 0 ),
 maShellID(SfxObjectShell::CreateShellID(pContainerShell))
@@ -599,7 +599,7 @@ void ScDrawTransferObj::ObjectReleased()
 
 void ScDrawTransferObj::DragFinished( sal_Int8 nDropAction )
 {
-if ( nDropAction == DND_ACTION_MOVE && !bDragWasInternal && 
!(nDragSourceFlags & SC_DROP_NAVIGATOR) )
+if ( nDropAction == DND_ACTION_MOVE && !bDragWasInternal && 
!(nDragSourceFlags & ScDragSrc::Navigator) )
 {
 //  move: delete source objects
 
@@ -658,7 +658,7 @@ void ScDrawTransferObj::SetDragSourceObj( SdrObject* pObj, 
SCTAB nTab )
 //! add as listener with document, delete pDragSourceView if document gone
 }
 
-void ScDrawTransferObj::SetDragSourceFlags( sal_uInt16 nFlags )
+void ScDrawTransferObj::SetDragSourceFlags(ScDragSrc nFlags)
 {
 nDragSourceFlags = nFlags;
 }
diff --git a/sc/source/ui/app/transobj.cxx b/sc/source/ui/app/transobj.cxx
index 802533f..4a061f4 100644
--- a/sc/source/ui/app/transobj.cxx
+++ b/sc/source/ui/app/transobj.cxx
@@ -121,7 +121,7 @@ ScTransferObj::ScTransferObj( ScDocument* pClipDoc, const 
TransferableObjectDesc
 nDragHandleY( 0 ),
 nSourceCursorX( MAXCOL + 1 ),
 nSourceCursorY( MAXROW + 1 ),
-nDragSourceFlags( 0 ),
+nDragSourceFlags( ScDragSrc::Undefined ),
 bDragWasInternal( false ),
 bUsedForLink( false ),
 bUseInApi( false )
@@ -498,7 +498,7 @@ void ScTransferObj::ObjectReleased()
 
 void ScTransferObj::DragFinished( sal_Int8 nDropAction )
 {
-if ( nDropAction == DND_ACTION_MOVE && !bDragWasInternal && 
!(nDragSourceFlags & SC_DROP_NAVIGATOR) )
+if ( nDropAction == DND_ACTION_MOVE && !bDragWasInternal && 
!(nDragSourceFlags & ScDragSrc::Navigator) )
 {
 //  move: delete source data
 ScDocShell* pSourceSh = GetSourceDocShell();
@@ -556,7 +556,7 @@ void ScTransferObj::SetDragSource( ScDocShell* 
pSourceShell, const ScMarkData& r
 xDragSourceRanges = new ScCellRangesObj( pSourceShell, aRanges );
 }
 
-void ScTransferObj::SetDragSourceFlags( sal_uInt16 nFlags )
+void ScTransferObj::SetDragSourceFlags(ScDragSrc nFlags)
 {
 nDragSourceFlags = nFlags;
 }
diff --git a/sc/source/ui/inc/drwtrans.hxx b/sc/source/ui/inc/drwtrans.hxx
index e36303b..dd02221 100644
--- a/sc/source/ui/inc/drwtrans.hxx
+++ b/sc/source/ui/inc/drwtrans.hxx
@@ -36,6 +36,7 @@ class SdrObject;
 class SdrView;
 class ScDrawView;
 class SdrOle2Obj;
+enum class ScDragSrc;
 
 class ScDrawTransferObj : public TransferableHelper
 {
@@ -55,7 +56,7 @@ private:
 // source information for drag:
 // (view is needed to handle drawing 
obejcts)
 SdrView*pDragSourceView;
-sal_uInt16  nDragSourceFlags;
+ScDragSrc   nDragSourceFlags;
 bool  

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

2016-07-18 Thread Jochen Nitschke
 sc/source/filter/inc/externallinkbuffer.hxx |5 ---
 sc/source/filter/oox/externallinkbuffer.cxx |   40 
 2 files changed, 45 deletions(-)

New commits:
commit d2ab8f8c33f0eb7c49c6ecb03da7b8616fce8db5
Author: Jochen Nitschke 
Date:   Fri Jul 15 22:28:03 2016 +0200

sc: remove commented out code

this code does not work any more getFilterType() was removed along
with meFilterType in commit c4cb83504faa1d241a116001fd27f7148de300ba

Change-Id: I992a061d4eb6a1349377e6fc35f966999fb57ead
Reviewed-on: https://gerrit.libreoffice.org/27244
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/sc/source/filter/inc/externallinkbuffer.hxx 
b/sc/source/filter/inc/externallinkbuffer.hxx
index b343052..cfc647b 100644
--- a/sc/source/filter/inc/externallinkbuffer.hxx
+++ b/sc/source/filter/inc/externallinkbuffer.hxx
@@ -85,11 +85,6 @@ public:
 /** Imports the DDEITEM_STRING record containing a string in a link 
result. */
 voidimportDdeItemString( SequenceInputStream& rStrm );
 
-#if 0
-/** Returns the sheet cache index if this is a sheet-local external name. 
*/
-sal_Int32   getSheetCacheIndex() const;
-#endif
-
 /** Returns the DDE item info needed by the XML formula parser. */
 boolgetDdeItemInfo(
 css::sheet::DDEItemInfo& orItemInfo ) const;
diff --git a/sc/source/filter/oox/externallinkbuffer.cxx 
b/sc/source/filter/oox/externallinkbuffer.cxx
index 2235906..6d921ca 100644
--- a/sc/source/filter/oox/externallinkbuffer.cxx
+++ b/sc/source/filter/oox/externallinkbuffer.cxx
@@ -169,46 +169,6 @@ void ExternalName::importDdeItemString( 
SequenceInputStream& rStrm )
 appendResultValue( BiffHelper::readString( rStrm ) );
 }
 
-#if 0
-sal_Int32 ExternalName::getSheetCacheIndex() const
-{
-OSL_ENSURE( mrParentLink.getLinkType() == LINKTYPE_DDE, 
"ExternalName::getSheetCacheIndex - unexpected link type" );
-sal_Int32 nCacheIdx = -1;
-switch( getFilterType() )
-{
-case FILTER_OOXML:
-// OOXML/BIFF12: zero-based index into sheet list, -1 means global 
name
-if( maModel.mnSheet >= 0 )
-nCacheIdx = mrParentLink.getSheetIndex( maModel.mnSheet );
-break;
-case FILTER_BIFF:
-switch( getBiff() )
-{
-case BIFF2:
-case BIFF3:
-case BIFF4:
-break;
-case BIFF5:
-if( maModel.mnSheet > 0 )
-if( const ExternalLink* pExtLink = 
getExternalLinks().getExternalLink( maModel.mnSheet ).get() )
-if( pExtLink->getLinkType() == LINKTYPE_EXTERNAL )
-nCacheIdx = pExtLink->getSheetIndex();
-break;
-case BIFF8:
-if( maModel.mnSheet > 0 )
-nCacheIdx = mrParentLink.getSheetIndex( 
maModel.mnSheet - 1 );
-break;
-case BIFF_UNKNOWN:
-break;
-}
-break;
-case FILTER_UNKNOWN:
-break;
-}
-return nCacheIdx;
-}
-#endif
-
 bool ExternalName::getDdeItemInfo( DDEItemInfo& orItemInfo ) const
 {
 if( (mrParentLink.getLinkType() == LINKTYPE_DDE) && 
!maModel.maName.isEmpty() )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-07-18 Thread Jochen Nitschke
 sc/source/filter/excel/xeroot.cxx |4 -
 sc/source/filter/inc/formulabase.hxx  |8 --
 sc/source/filter/inc/workbookhelper.hxx   |8 --
 sc/source/filter/oox/formulabase.cxx  |  112 ++
 sc/source/filter/oox/ooxformulaparser.cxx |2 
 5 files changed, 43 insertions(+), 91 deletions(-)

New commits:
commit 61fc9da45f845ae98d8e0f159bac6a4c2f39ddd7
Author: Jochen Nitschke 
Date:   Fri Jul 15 14:08:12 2016 +0200

sc: FilterType::FILTER_BIFF and FilterType::FILTER_UNKNOWN are never set

only value ever set is FilterType::FILTER_OOXML.
main user is FunctionProviderImpl ctor,
thus used BiffType is always BIFF8, nMaxParam = OOX_MAX_PARAMCOUNT
and bCallerKnowsAboutMacroExport is always true.
so remove these parameters and the FilterType enum.

a follow up should check uses of FUNCFLAG_BIFFEXPORTONLY and
FUNCFLAG_BIFFIMPORTONLY as for such functions
isSupported() returns always false

Change-Id: I0d2941ba10642a86bad36d57b64a2c71517069ab
Reviewed-on: https://gerrit.libreoffice.org/27237
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/sc/source/filter/excel/xeroot.cxx 
b/sc/source/filter/excel/xeroot.cxx
index 05d6fef..e51fa8a 100644
--- a/sc/source/filter/excel/xeroot.cxx
+++ b/sc/source/filter/excel/xeroot.cxx
@@ -240,9 +240,7 @@ void XclExpRoot::InitializeGlobals()
 break;
 }
 uno::Reference< lang::XMultiServiceFactory > xModelFactory( 
xComponent, uno::UNO_QUERY);
-// OOXML is also BIFF8 function-wise
-oox::xls::OpCodeProvider aOpCodeProvider( xModelFactory,
-oox::xls::FILTER_OOXML, oox::xls::BIFF8, false);
+oox::xls::OpCodeProvider aOpCodeProvider(xModelFactory, false);
 // Compiler mocks about non-matching ctor or conversion from
 // Sequence<...> to Sequence if directly created or 
passed,
 // conversion through Any works around.
diff --git a/sc/source/filter/inc/formulabase.hxx 
b/sc/source/filter/inc/formulabase.hxx
index c88d4fb..a5b1e7c 100644
--- a/sc/source/filter/inc/formulabase.hxx
+++ b/sc/source/filter/inc/formulabase.hxx
@@ -554,8 +554,7 @@ struct FunctionProviderImpl;
 class FunctionProvider  // not derived from WorkbookHelper to make it usable 
in file dumpers
 {
 public:
-explicitFunctionProvider( FilterType eFilter, BiffType eBiff, 
bool bImportFilter,
-  bool bCallerKnowsAboutMacroExport );
+explicitFunctionProvider(bool bImportFilter);
 virtual ~FunctionProvider();
 
 /** Returns the function info for an OOXML function name, or 0 on error. */
@@ -594,9 +593,8 @@ struct OpCodeProviderImpl;
 class OpCodeProvider : public FunctionProvider // not derived from 
WorkbookHelper to make it usable as UNO service
 {
 public:
-explicitOpCodeProvider(
-const css::uno::Reference< 
css::lang::XMultiServiceFactory >& rxModelFactory,
-FilterType eFilter, BiffType eBiff, bool 
bImportFilter );
+explicitOpCodeProvider(const 
css::uno::Reference& rxModelFactory,
+   bool bImportFilter);
 virtual ~OpCodeProvider();
 
 /** Returns the structure containing all token op-codes for operators and
diff --git a/sc/source/filter/inc/workbookhelper.hxx 
b/sc/source/filter/inc/workbookhelper.hxx
index 11b17fb..6ea3007 100644
--- a/sc/source/filter/inc/workbookhelper.hxx
+++ b/sc/source/filter/inc/workbookhelper.hxx
@@ -66,14 +66,6 @@ namespace xls {
 
 class ExcelFilter;
 
-/** An enumeration for all supported spreadsheet filter types. */
-enum FilterType
-{
-FILTER_OOXML,   /// MS Excel OOXML (Office Open XML) or BIFF12.
-FILTER_BIFF,/// MS Excel BIFF2-BIFF8 (Binary Interchange File 
Format).
-FILTER_UNKNOWN  /// Unknown filter type.
-};
-
 /** Functor for case-insensitive string comparison, usable in maps etc. */
 struct IgnoreCaseCompare
 {
diff --git a/sc/source/filter/oox/formulabase.cxx 
b/sc/source/filter/oox/formulabase.cxx
index 80c277c..6c5cabc 100644
--- a/sc/source/filter/oox/formulabase.cxx
+++ b/sc/source/filter/oox/formulabase.cxx
@@ -236,21 +236,19 @@ struct FunctionData
 FunctionParamInfo   mpParamInfos[ FUNCINFO_PARAMINFOCOUNT ]; /// 
Information about all parameters.
 sal_uInt16  mnFlags;/// Additional flags.
 
-inline bool isSupported( bool bImportFilter, FilterType eFilter ) 
const;
+inline bool isSupported(bool bImportFilter) const;
 };
 
-inline bool FunctionData::isSupported( bool bImportFilter, FilterType eFilter 
) const
+inline bool FunctionData::isSupported(bool bImportFilter) const
 {
-/*  For import filters: the FUNCFLAG_EXPORTONLY and 

[Libreoffice-commits] core.git: chart2/source compilerplugins/clang cui/source dbaccess/source forms/source framework/inc framework/source reportdesign/source sc/source svx/source xmloff/source

2016-07-18 Thread Noel Grandin
 chart2/source/inc/PolynomialRegressionCurveCalculator.hxx   |   10 --
 chart2/source/tools/PolynomialRegressionCurveCalculator.cxx |   12 
 chart2/source/view/charttypes/AreaChart.cxx |5 -
 chart2/source/view/charttypes/AreaChart.hxx |1 -
 compilerplugins/clang/unnecessaryoverride.cxx   |9 -
 cui/source/customize/eventdlg.cxx   |5 -
 cui/source/customize/eventdlg.hxx   |3 ---
 dbaccess/source/filter/xml/xmlExport.cxx|5 -
 dbaccess/source/filter/xml/xmlExport.hxx|1 -
 dbaccess/source/ui/inc/querycontroller.hxx  |6 --
 dbaccess/source/ui/querydesign/querycontroller.cxx  |5 -
 forms/source/component/FormattedField.cxx   |6 --
 forms/source/component/FormattedField.hxx   |3 ---
 framework/inc/services/layoutmanager.hxx|4 
 framework/source/layoutmanager/layoutmanager.cxx|   10 --
 reportdesign/source/filter/xml/xmlExport.cxx|5 -
 reportdesign/source/filter/xml/xmlExport.hxx|1 -
 sc/source/filter/xml/xmlstyli.cxx   |8 
 sc/source/filter/xml/xmlstyli.hxx   |5 -
 sc/source/ui/vba/vbaformatcondition.cxx |1 +
 svx/source/form/fmobj.cxx   |7 ---
 svx/source/inc/fmobj.hxx|1 -
 xmloff/source/draw/ximpnote.cxx |8 
 xmloff/source/draw/ximpnote.hxx |4 
 24 files changed, 9 insertions(+), 116 deletions(-)

New commits:
commit 36313d93ac6f88bb4b4e4ed7109db583c7ce9886
Author: Noel Grandin 
Date:   Mon Jul 18 09:03:51 2016 +0200

improve unnecessaryoverride plugin

to ignore ImplicitCastExpr when calling superclass method

Change-Id: I76a3068446acfee85aa1baeb216e57f63c7099c1
Reviewed-on: https://gerrit.libreoffice.org/27279
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/chart2/source/inc/PolynomialRegressionCurveCalculator.hxx 
b/chart2/source/inc/PolynomialRegressionCurveCalculator.hxx
index 81b5804..9b0944e 100644
--- a/chart2/source/inc/PolynomialRegressionCurveCalculator.hxx
+++ b/chart2/source/inc/PolynomialRegressionCurveCalculator.hxx
@@ -47,16 +47,6 @@ private:
 const css::uno::Sequence& aYValues )
 throw (css::uno::RuntimeException, std::exception) override;
 
-virtual css::uno::Sequence SAL_CALL 
getCurveValues(
-double min,
-double max,
-sal_Int32 nPointCount,
-const css::uno::Reference& xScalingX,
-const css::uno::Reference& xScalingY,
-sal_Bool bMaySkipPointsInCalculation )
-throw (css::lang::IllegalArgumentException,
-   css::uno::RuntimeException, std::exception) override;
-
 std::vector mCoefficients;
 };
 
diff --git a/chart2/source/tools/PolynomialRegressionCurveCalculator.cxx 
b/chart2/source/tools/PolynomialRegressionCurveCalculator.cxx
index 2a135b1..2134b4f 100644
--- a/chart2/source/tools/PolynomialRegressionCurveCalculator.cxx
+++ b/chart2/source/tools/PolynomialRegressionCurveCalculator.cxx
@@ -221,18 +221,6 @@ double SAL_CALL 
PolynomialRegressionCurveCalculator::getCurveValue( double x )
 return fResult;
 }
 
-uno::Sequence< geometry::RealPoint2D > SAL_CALL 
PolynomialRegressionCurveCalculator::getCurveValues(
-double min, double max, sal_Int32 nPointCount,
-const uno::Reference< chart2::XScaling >& xScalingX,
-const uno::Reference< chart2::XScaling >& xScalingY,
-sal_Bool bMaySkipPointsInCalculation )
-throw (lang::IllegalArgumentException,
-   uno::RuntimeException, std::exception)
-{
-
-return RegressionCurveCalculator::getCurveValues( min, max, nPointCount, 
xScalingX, xScalingY, bMaySkipPointsInCalculation );
-}
-
 OUString PolynomialRegressionCurveCalculator::ImplGetRepresentation(
 const uno::Reference< util::XNumberFormatter >& xNumFormatter,
 sal_Int32 nNumberFormatKey, sal_Int32* pFormulaMaxWidth /* = nullptr */ ) 
const
diff --git a/chart2/source/view/charttypes/AreaChart.cxx 
b/chart2/source/view/charttypes/AreaChart.cxx
index ece6623..440d469 100644
--- a/chart2/source/view/charttypes/AreaChart.cxx
+++ b/chart2/source/view/charttypes/AreaChart.cxx
@@ -101,11 +101,6 @@ double AreaChart::getMaximumX()
 return fMax;
 }
 
-bool AreaChart::isExpandIfValuesCloseToBorder( sal_Int32 nDimensionIndex )
-{
-return VSeriesPlotter::isExpandIfValuesCloseToBorder( nDimensionIndex );
-}
-
 bool AreaChart::isSeparateStackingForDifferentSigns( sal_Int32 
/*nDimensionIndex*/ )
 {
 // no separate stacking in all types of line/area charts

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

2016-07-18 Thread Jochen Nitschke
 sc/inc/filter.hxx   |   17 --
 sc/source/filter/dif/difimp.cxx |  304 +++-
 sc/source/filter/inc/dif.hxx|   29 ---
 sc/source/filter/inc/ftools.hxx |2 
 sc/source/ui/docshell/impex.cxx |2 
 5 files changed, 29 insertions(+), 325 deletions(-)

New commits:
commit a7b5be118191a4e8a6cd422b5b2438a1ac22f36f
Author: Jochen Nitschke 
Date:   Mon Jul 18 09:45:30 2016 +0200

sc dif import: plain number formatter is unused

commit 2cb7d3c13cc55d8ee680fe19d99819529d8b9ba5
revealed DifOptions is always set to DifOptions::Excel,
so DifParser.bPlain is never true.

remove import with plain number formatter and DifOptions enum

Change-Id: I8e214f3fff8ecfc7e03622dd1fe3fb53c2fb1e25
Reviewed-on: https://gerrit.libreoffice.org/27277
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/sc/inc/filter.hxx b/sc/inc/filter.hxx
index aaeb9f3..e51ee3a 100644
--- a/sc/inc/filter.hxx
+++ b/sc/inc/filter.hxx
@@ -20,7 +20,6 @@
 #ifndef INCLUDED_SC_INC_FILTER_HXX
 #define INCLUDED_SC_INC_FILTER_HXX
 
-#include 
 #include 
 #include 
 #include 
@@ -60,20 +59,6 @@ enum EXCIMPFORMAT { EIF_AUTO, EIF_BIFF5, EIF_BIFF8, 
EIF_BIFF_LE4 };
 enum ExportFormatLotus { ExpWK1, ExpWK3, ExpWK4 };
 enum ExportFormatExcel { ExpBiff2, ExpBiff3, ExpBiff4, ExpBiff4W, ExpBiff5, 
ExpBiff8, Exp2007Xml };
 
-// options for DIF im-/export (combine with '|')
-enum class DifOptions
-{
-Plain= 0x,
-Date = 0x0001,
-Time = 0x0002,
-Currency = 0x0004,
-
-Excel= (Date|Time|Currency)
-};
-namespace o3tl {
- template<> struct typed_flags : is_typed_flags {};
-}
-
 // These are implemented inside the scfilt library and lazy loaded
 
 class ScEEAbsImport {
@@ -98,7 +83,7 @@ class SAL_DLLPUBLIC_RTTI ScFormatFilterPlugin {
 // eFormat == EIF_BIFF_LE4 -> only non storage files _might_ be read 
successfully
 virtual FltError ScImportStarCalc10( SvStream&, ScDocument* ) = 0;
 virtual FltError ScImportDif( SvStream&, ScDocument*, const ScAddress& 
rInsPos,
- const rtl_TextEncoding eSrc = RTL_TEXTENCODING_DONTKNOW, 
DifOptions nDifOption = DifOptions::Excel ) = 0;
+ const rtl_TextEncoding eSrc = RTL_TEXTENCODING_DONTKNOW ) = 0;
 virtual FltError ScImportRTF( SvStream&, const OUString& rBaseURL, 
ScDocument*, ScRange& rRange ) = 0;
 virtual FltError ScImportHTML( SvStream&, const OUString& rBaseURL, 
ScDocument*, ScRange& rRange, double nOutputFactor = 1.0,
bool bCalcWidthHeight = true, 
SvNumberFormatter* pFormatter = nullptr, bool bConvertDate = true ) = 0;
diff --git a/sc/source/filter/dif/difimp.cxx b/sc/source/filter/dif/difimp.cxx
index 704bf66..5b5b936 100644
--- a/sc/source/filter/dif/difimp.cxx
+++ b/sc/source/filter/dif/difimp.cxx
@@ -48,11 +48,9 @@ const sal_Unicode pKeyV[]   = { 'V', 0 };
 const sal_Unicode pKey1_0[] = { '1', ',', '0', 0 };
 
 FltError ScFormatFilterPluginImpl::ScImportDif(SvStream& rIn, ScDocument* 
pDoc, const ScAddress& rInsPos,
-const rtl_TextEncoding eVon, DifOptions nDifOption )
+const rtl_TextEncoding eVon )
 {
-DifParser   aDifParser( rIn, nDifOption, *pDoc, eVon );
-
-const bool bPlain = aDifParser.IsPlain();
+DifParser   aDifParser( rIn, *pDoc, eVon );
 
 SCTAB   nBaseTab = rInsPos.Tab();
 
@@ -126,7 +124,7 @@ FltError ScFormatFilterPluginImpl::ScImportDif(SvStream& 
rIn, ScDocument* pDoc,
 
 SCCOL   nColCnt = SCCOL_MAX;
 SCROW   nRowCnt = rInsPos.Row();
-DifAttrCacheaAttrCache( bPlain );
+DifAttrCacheaAttrCache;
 
 DATASET eAkt = D_UNKNOWN;
 
@@ -160,18 +158,14 @@ FltError ScFormatFilterPluginImpl::ScImportDif(SvStream& 
rIn, ScDocument* pDoc,
 if( DifParser::IsV( aData.getStr() ) )
 {
 pDoc->SetValue(aPos, aDifParser.fVal);
-if( !bPlain )
-aAttrCache.SetNumFormat( nColCnt, nRowCnt,
+aAttrCache.SetNumFormat( nColCnt, nRowCnt,
 aDifParser.nNumFormat );
 }
 else if( aData == pKeyTRUE || aData == pKeyFALSE )
 {
 pDoc->SetValue(aPos, aDifParser.fVal);
-if( bPlain )
-aAttrCache.SetLogical( nColCnt, nRowCnt );
-else
-aAttrCache.SetNumFormat( nColCnt, nRowCnt,
-aDifParser.nNumFormat );
+aAttrCache.SetNumFormat( nColCnt, nRowCnt,
+

[Libreoffice-bugs] [Bug 101000] FILESAVE: Images disappear when DOC saved to ODT

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101000

Paul  changed:

   What|Removed |Added

Summary|Images disappear when DOC   |FILESAVE: Images disappear
   |saved to ODT|when DOC saved to ODT

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


[Libreoffice-bugs] [Bug 100977] Something, (long Formulae?) make a file unusable in LO 5 but works in LO4

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100977

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #7 from Aron Budea  ---
Yes, please test with 5.1.5.1, because 5.2.0.2 was released before those fixes.
You can also find current pre-releases here:
http://dev-builds.libreoffice.org/pre-releases/

See this and subsequent comments for details on a similar issue:
https://bugs.documentfoundation.org/show_bug.cgi?id=100545#c15
In short, what should happen is that if something is wrong with the OpenCL
implementation, it should be disabled automatically.

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


[Libreoffice-bugs] [Bug 100545] Calc 5.0.6 crashes with file made in Calc 4

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100545

Aron Budea  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 101000] New: Images disappear when DOC saved to ODT

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101000

Bug ID: 101000
   Summary: Images disappear when DOC saved to ODT
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: paul.jow...@systemic.com.au

Created attachment 126292
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126292=edit
Simplified source doc which triggers the problem

The simplified DOC in the attached zip can be opened in Libre Office and it
looks fine.  When saved as ODT then the ODT is opened, several images are not
visible (no trace at all).  If the saved ODT file is opened with Libre Office
5.0.2.2 and earlier the images are visible.

This is not a problem in release 5.0.2.2 but is present in 5.1.0.3.  It is
still a problem with the current release 5.1.4.2.  The attachment contains
screen shots showing what the document looks like when saved and then reopened
in these versions of Libre Office.

The release notes between 5.0.2.2 and 5.1.0.3 refer to changes to do with image
naming.  This appears to be related.  The failing document imports images with
names like "Picture 4" and several images have the same name (eg
draw:name="Picture 4").  If the saved ODT content.xml is manipulated to name
the images uniquely, they all appear when opened in Libre Office.

Related: The source doc was created as follows:
 a) an image was copied from another DOC file using Word into the source DOC
 b) the copied image is then duplicated (copy paste) in Word to create 4
copies.

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


[Libreoffice-bugs] [Bug 100977] Something, (long Formulae?) make a file unusable in LO 5 but works in LO4

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100977

--- Comment #6 from Laurie  ---
Hmmm. The one I found was 5.2.0.2
I just upgraded to it. It is not that difficult to uninstall and put the older
version back.

5.2.0.2 appears to work very well.
Everything recalculating quickly and correctly.
(I have often had to force recalculation with earlier versions.)

Until I enable openCL again.
Then Windows closes LO as before when I attempt to open the file.

Does that help you?
I can try again with 5.1.5.1 if you think they are different enough to warrant
the effort.

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


[Libreoffice-bugs] [Bug 100999] New: Links to cells in other files corrupted in xlsx documents

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100999

Bug ID: 100999
   Summary: Links to cells in other files corrupted in xlsx
documents
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: and...@amos.gs

Create two files test2.xls and test2.xlsx.  Place value "42" in cell A1.

Create file test1.xls. Paste in cell A1 a link to cell A1 in test2.xls and in
cell A2 a link to cell A1 in test2.xlsx.  Save and close file.  Open it again. 
This works OK.

Save test1.xls as test1.xlsx.  Close test1.xlsx, and then open it again.  The
links get corrupted, e.g.:

='file:///C:/Users/Andrew/Documents/Finance/Andrew/FY16/test2.xls'#$Sheet1.A1

becomes

='file:///C:/Users/Andrew/Documents/Finance/Andrew/FY16/1'#$Sheet1.A1

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


[Libreoffice-bugs] [Bug 99125] Property ParaBackColor in Writer can no longer be set via Basic

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99125

--- Comment #5 from General Kutuzov  ---
This bug cause the background colour feature has been banned in DCM extension.

http://extensions.libreoffice.org/extension-center/dcm-direct-colour-management/releases/1.1.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 100998] Can't disable text drag'n' drop when Editing in Writer Configuration

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100998

Aron Budea  changed:

   What|Removed |Added

   See Also||https://bz.apache.org/ooo/s
   ||how_bug.cgi?id=66315

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


[Libreoffice-bugs] [Bug 100998] Can't disable text drag'n' drop when Editing in Writer Configuration

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100998

Aron Budea  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||ba...@caesar.elte.hu
   Severity|normal  |enhancement

--- Comment #1 from Aron Budea  ---
The suggestion might be worth considering.
In the meantime, select with Alt key pressed, and it won't drag'n'drop.

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


[Libreoffice-bugs] [Bug 100997] Can't restart page numbering and have TOC work properly

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100997

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@caesar.elte.hu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=35
   ||694
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
You can restart page numbering via Format -> Paragraph, then Text Flow tab,
then in Breaks section setting Page number to 1 again after a page break. Does
this help?

There is a long discussion on adjusting page numbering in bug 35694. It's not
exactly straightforward.

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


[Libreoffice-bugs] [Bug 100909] pdf exports has fill artifacts in the hole of a polypolygon shape

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100909

Aron Budea  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
 CC||ba...@caesar.elte.hu
Version|5.1.4.2 release |4.4.0.3 release

--- Comment #2 from Aron Budea  ---
4.3.0.4 does not have the little crosses in the large empty area, 4.4.0.3 does.

4.3.0.4 exhibits a different issue, a tiny rectangle is left empty in the
bottom right corner of the large rectangle, this is gone in 4.4.0.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 100998] New: Can't disable text drag'n' drop when Editing in Writer Configuration

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100998

Bug ID: 100998
   Summary: Can't disable text drag'n'drop when Editing in Writer
Configuration
   Product: LibreOffice
   Version: 5.0.6.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gablewa...@gmail.com

There needs to be a way to disable "Text Drag'n'Drop" in Writer Configuration.

I find myself constantly accidentally drag'n'dropping the current text
selection when I am actually trying to click to change the text selection.

This is a fundamental flaw in "text drag'n'drop". Microsoft Office has an
option in it's configuration to disable it completely across all Microsoft
Office apps.

I believe there was an option in the LibreOffice Configuration to do this at
one time, which I used, but now that option seems to have been removed.

In the OpenOffice Bugzilla there is a bug report of the same 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 100997] New: Can't restart page numbering and have TOC work properly

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100997

Bug ID: 100997
   Summary: Can't restart page numbering and have TOC work
properly
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: wpbal...@gmail.com

I have a document with preface material with one page style and Roman numbering
and the bulk of the document with a different style and Arabic numbering. The
bulk of the document needs to start with page 1, but the automatically
generated Table of Contents insists on starting it with page 2, apparently
because the first page (title page) is counted as page 1 and there is no way to
restart the numbering properly as best I can tell. I've even tried making a new
page style for the cover with different numbering that is suppressed, to no
avail.

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


[Libreoffice-bugs] [Bug 97391] [META] Tracker bug for OpenCL and "Software Interpreter" issues in Calc

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97391

Aron Budea  changed:

   What|Removed |Added

 Depends on||100977


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100977
[Bug 100977] Something, (long Formulae?) make a file unusable in LO 5 but works
in LO4
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100977] Something, (long Formulae?) make a file unusable in LO 5 but works in LO4

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100977

Aron Budea  changed:

   What|Removed |Added

 Blocks||97391

--- Comment #5 from Aron Budea  ---
Great! Would you mind giving it a try with the 5.1.5.1 pre-release version?
(with OpenCL enabled) There have been a couple of fixes in that area.

Here are details on installing different versions in parallel with your
existing installation:
https://wiki.documentfoundation.org/Installing_in_parallel .


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97391
[Bug 97391] [META] Tracker bug for OpenCL and "Software Interpreter" issues in
Calc
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100996] Tools -> Solver... does not display message anymore if no compatible Java installed

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100996

Aron Budea  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 98619] DATALOSS: Calc exits abruptly if Tools -> Solver... is opened with no compatible Java installed

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98619

Aron Budea  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
 Status|NEW |RESOLVED
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||0996
 Resolution|--- |WORKSFORME
   Severity|normal  |critical

--- Comment #5 from Aron Budea  ---
Since this bug is fixed in 5.2.0.1, I'm closing this bug report as RESOLVED,
WORKSFORME.

The fix needs to be identified, and backported to 5.1, so I'm adding
backportRequest:5.1 tag. Since it's a regression, I'm also adding keywords
regression and bibisectRequest.
Since the application aborts, and there can be data loss, raising severity to
critical.

I've opened a new bug report on the new issue that only exists in the master
branch (bug 100996).

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


[Libreoffice-bugs] [Bug 100996] New: Tools -> Solver... does not display message anymore if no compatible Java installed

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100996

Bug ID: 100996
   Summary: Tools -> Solver... does not display message anymore if
no compatible Java installed
   Product: LibreOffice
   Version: 5.3.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu

Bug 98619 was submitted about Calc exiting abruptly after displaying an error
message if Java is not installed, and Tools -> Solver... is opened.

This bug is gone by 5.2, eg. there's the message as expected, and Calc doesn't
quit, but in 5.3 master build (Build ID:
be232a1b76fb263d17d2e52a420b6aba7272f3fd) there's no message at all, which is a
new issue.

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


[Libreoffice-bugs] [Bug 99360] Advanced filter dialog being modal, it is impossible to select filter criteria with the mouse

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99360

Eike Rathke  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |er...@redhat.com
   |desktop.org |
 Whiteboard|target:5.2.0 target:5.3.0   |target:5.3.0

--- Comment #9 from Eike Rathke  ---
Pending review
https://gerrit.libreoffice.org/27308 for 5-2
https://gerrit.libreoffice.org/27309 for 5-2-0

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


[Libreoffice-bugs] [Bug 93889] Extraordinary, un-necessary busy-loop removal ...

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93889

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||jvsg1...@gmail.com
 Resolution|FIXED   |---
 Whiteboard|ToBeReviewed target:5.2.0   |ToBeReviewed
   |target:5.3.0|

--- Comment #9 from Eike Rathke  ---
That simply didn't work, see bug 99360.

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


[Libreoffice-bugs] [Bug 100932] Consider adding logging for command line / shell --headless usage

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100932

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
   Severity|normal  |enhancement

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


[Libreoffice-bugs] [Bug 93889] Extraordinary, un-necessary busy-loop removal ...

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93889

--- Comment #8 from Commit Notification 
 ---
Eike Rathke committed a patch related to this issue.
It has been pushed to "master":

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

Resolves: tdf#99360 Revert "tdf#93889 Remove a busy loop"

It will be available in 5.3.0.

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

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

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


[Libreoffice-bugs] [Bug 99360] Advanced filter dialog being modal, it is impossible to select filter criteria with the mouse

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99360

--- Comment #8 from Commit Notification 
 ---
Eike Rathke committed a patch related to this issue.
It has been pushed to "master":

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

Resolves: tdf#99360 Revert "tdf#93889 Remove a busy loop"

It will be available in 5.3.0.

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

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

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


[Libreoffice-bugs] [Bug 93889] Extraordinary, un-necessary busy-loop removal ...

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93889

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|ToBeReviewed target:5.2.0   |ToBeReviewed target:5.2.0
   ||target:5.3.0

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


[Libreoffice-bugs] [Bug 99360] Advanced filter dialog being modal, it is impossible to select filter criteria with the mouse

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99360

--- Comment #7 from Commit Notification 
 ---
Eike Rathke committed a patch related to this issue.
It has been pushed to "master":

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

Revert "Resolves: tdf#99360 can't select filter criteria with mouse"

It will be available in 5.3.0.

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

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

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


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

2016-07-18 Thread Eike Rathke
 sc/source/ui/dbgui/sfiltdlg.cxx |   54 +---
 sc/source/ui/inc/filtdlg.hxx|5 ++-
 2 files changed, 38 insertions(+), 21 deletions(-)

New commits:
commit 62442d9066ea553a4b68b8a93fa54748cbe96e06
Author: Eike Rathke 
Date:   Tue Jul 19 01:54:36 2016 +0200

Resolves: tdf#99360 Revert "tdf#93889 Remove a busy loop"

This reverts commit 6610ad9aee0c8299880cd1da6cd6a756860ccad9.

It simply doesn't work, the dialog ends up being modal because
bRefInputMode is always false.

Calling SyncFocusState() in ctor doesn't help because
pEdFilterArea->HasFocus() returns false even if we just called
pEdFilterArea->GrabFocus() ... why?

Also manipulating things with

pRefInputEdit = pEdFilterArea;
bRefInputMode = true;

doesn't help. This is odd..

 Conflicts:
sc/source/ui/dbgui/sfiltdlg.cxx

Change-Id: I90fc8cd99a2ab91dd581acfc51d7ca5eea8e1f61

diff --git a/sc/source/ui/dbgui/sfiltdlg.cxx b/sc/source/ui/dbgui/sfiltdlg.cxx
index d990a2f..4cbe66f 100644
--- a/sc/source/ui/dbgui/sfiltdlg.cxx
+++ b/sc/source/ui/dbgui/sfiltdlg.cxx
@@ -18,6 +18,7 @@
  */
 
 #include 
+#include 
 
 #include "uiitems.hxx"
 #include "rangenam.hxx"
@@ -56,7 +57,8 @@ ScSpecialFilterDlg::ScSpecialFilterDlg( SfxBindings* pB, 
SfxChildWindow* pCW, vc
 pViewData   ( nullptr ),
 pDoc( nullptr ),
 pRefInputEdit   ( nullptr ),
-bRefInputMode   ( false )
+bRefInputMode   ( false ),
+pIdle  ( nullptr )
 {
 get(pLbFilterArea,"lbfilterarea");
 get(pEdFilterArea,"edfilterarea");
@@ -82,6 +84,13 @@ ScSpecialFilterDlg::ScSpecialFilterDlg( SfxBindings* pB, 
SfxChildWindow* pCW, vc
 
 Init( rArgSet );
 pEdFilterArea->GrabFocus();
+
+// Hack: RefInput-Kontrolle
+pIdle = new Idle;
+// FIXME: this is an abomination
+pIdle->SetPriority( SchedulerPriority::LOWEST );
+pIdle->SetIdleHdl( LINK( this, ScSpecialFilterDlg, TimeOutHdl ) );
+pIdle->Start();
 }
 
 ScSpecialFilterDlg::~ScSpecialFilterDlg()
@@ -100,6 +109,10 @@ void ScSpecialFilterDlg::dispose()
 
 delete pOutItem;
 
+// Hack: RefInput-Kontrolle
+pIdle->Stop();
+delete pIdle;
+
 pLbFilterArea.clear();
 pEdFilterArea.clear();
 pRbFilterArea.clear();
@@ -212,7 +225,6 @@ bool ScSpecialFilterDlg::Close()
 
 void ScSpecialFilterDlg::SetReference( const ScRange& rRef, ScDocument* pDocP )
 {
-SyncFocusState();
 if ( bRefInputMode && pRefInputEdit )   // Nur moeglich, wenn im 
Referenz-Editmodus
 {
 if ( rRef.aStart != rRef.aEnd )
@@ -232,7 +244,6 @@ void ScSpecialFilterDlg::SetReference( const ScRange& rRef, 
ScDocument* pDocP )
 
 void ScSpecialFilterDlg::SetActive()
 {
-SyncFocusState();
 if ( bRefInputMode )
 {
 if ( pRefInputEdit == pEdCopyArea )
@@ -385,24 +396,30 @@ IMPL_LINK_TYPED( ScSpecialFilterDlg, EndDlgHdl, Button*, 
pBtn, void )
 }
 }
 
-
-void ScSpecialFilterDlg::SyncFocusState()
+IMPL_LINK_TYPED( ScSpecialFilterDlg, TimeOutHdl, Idle*, _pIdle, void )
 {
-if( pEdCopyArea->HasFocus() || pRbCopyArea->HasFocus() )
-{
-pRefInputEdit = pEdCopyArea;
-bRefInputMode = true;
-}
-else if( pEdFilterArea->HasFocus() || pRbFilterArea->HasFocus() )
-{
-pRefInputEdit = pEdFilterArea;
-bRefInputMode = true;
-}
-else if( bRefInputMode )
+// every 50ms check whether RefInputMode is still true
+
+if( (_pIdle == pIdle) && IsActive() )
 {
-pRefInputEdit = nullptr;
-bRefInputMode = false;
+if( pEdCopyArea->HasFocus() || pRbCopyArea->HasFocus() )
+{
+pRefInputEdit = pEdCopyArea;
+bRefInputMode = true;
+}
+else if( pEdFilterArea->HasFocus() || pRbFilterArea->HasFocus() )
+{
+pRefInputEdit = pEdFilterArea;
+bRefInputMode = true;
+}
+else if( bRefInputMode )
+{
+pRefInputEdit = nullptr;
+bRefInputMode = false;
+}
 }
+
+pIdle->Start();
 }
 
 IMPL_LINK_TYPED( ScSpecialFilterDlg, FilterAreaSelHdl, ListBox&, rLb, void )
diff --git a/sc/source/ui/inc/filtdlg.hxx b/sc/source/ui/inc/filtdlg.hxx
index 98f7d4d..2e3e8b9 100644
--- a/sc/source/ui/inc/filtdlg.hxx
+++ b/sc/source/ui/inc/filtdlg.hxx
@@ -64,6 +64,7 @@ public:
 
 virtual boolIsRefInputMode() const override;
 virtual voidSetActive() override;
+
 virtual boolClose() override;
 voidSliderMoved();
 size_t  GetSliderPos();
@@ -167,7 +168,7 @@ public:
 virtual voiddispose() override;
 
 virtual voidSetReference( const ScRange& rRef, ScDocument* pDoc ) 
override;
-voidSyncFocusState();
+
 virtual boolIsRefInputMode() const override;
 virtual voidSetActive() override;
 
@@ -206,6 +207,8 @@ private:
 

[Libreoffice-bugs] [Bug 99360] Advanced filter dialog being modal, it is impossible to select filter criteria with the mouse

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99360

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.2.0|target:5.2.0 target:5.3.0

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


[Libreoffice-bugs] [Bug 95763] FILERECENT Delays while list is populated, Remote files omitted if network down

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95763

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||ba...@caesar.elte.hu
 Resolution|--- |DUPLICATE

--- Comment #1 from Aron Budea  ---
This issue has been fixed, and will be part of 5.1.5 (planned to be released
between Aug 1-7). Please test again with that version once it's out.

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

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


[Libreoffice-bugs] [Bug 89394] FILE MENU and HYPERLINKs: Freeze when UNC path is unavailable aka accessing remote server ( e.g. SMB share) when off-line leads to hang / freeze / crash

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89394

Aron Budea  changed:

   What|Removed |Added

 CC||j...@priorycomputers.com

--- Comment #29 from Aron Budea  ---
*** Bug 95763 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 100977] Something, (long Formulae?) make a file unusable in LO 5 but works in LO4

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100977

--- Comment #4 from Laurie  ---
Thanks Aron.
The first suggestion appears to be working.
OpenCL is now not allowed and no crashes so far.


I copied the up-to-date version of the original file from the other computer.
Loaded it.
Modified it.
Saved it.
Exited LibreOffice.
Restarted LO and opened the file again all with no problems.
Have not yet checked all functionality of the other sheets.

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


[Libreoffice-bugs] [Bug 100895] Recent documents on network share cause continuous hangups

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100895

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@caesar.elte.hu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||394
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
I think the fix to bug 89394 solves this issue. The fix is coming with 5.1.5.
Please test with it when it's out (planned sometimes between Aug 1-7), or you
can try with 5.1.5.1 RC, available as a pre-release version from the download
page.

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


[Libreoffice-bugs] [Bug 89394] FILE MENU and HYPERLINKs: Freeze when UNC path is unavailable aka accessing remote server ( e.g. SMB share) when off-line leads to hang / freeze / crash

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89394

Aron Budea  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 100990] bad example of RATE function

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100990

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ba...@caesar.elte.hu
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
I can't say I understand the example, but it gives Err:523 for me, too.

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


[Libreoffice-bugs] [Bug 100961] Insert Fixed Date Field Inserts Current Date

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100961

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@caesar.elte.hu
 Ever confirmed|0   |1

--- Comment #3 from Aron Budea  ---
I can't reproduce it, either (LibreOffice 5.1.4.2 / Windows 7), I tested with
changing the system date manually. Could you upload a minimal example with a
fixed date? Then we could easily see days later what happens with the date
field.

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


[Libreoffice-bugs] [Bug 100977] Something, (long Formulae?) make a file unusable in LO 5 but works in LO4

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100977

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu

--- Comment #3 from Aron Budea  ---
Not reproduced with LibreOffice 5.1.4.2 x86 / Windows 7 x64.

Please try first with 'Tools -> Options... -> LibreOffice -> OpenCL -> Allow
use of OpenCL' unchecked, if that doesn't help, also uncheck 'Allow use of
Software Interpreter (even when OpenCL is not available)' (restart of
LibreOffice is required in both cases).

If neither helps, could you give the 5.2 pre-release version a try (accessible
from the download page)? It includes a crash reporter function, which catches
and uploads crash dumps, and could provide important details for developers.
If you don't want to disrupt the existing LibreOffice installation, here are
instructions on installing multiple versions separately:
https://wiki.documentfoundation.org/Installing_in_parallel .

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


[Libreoffice-bugs] [Bug 100977] Something, (long Formulae?) make a file unusable in LO 5 but works in LO4

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100977

--- Comment #2 from Laurie  ---
Renamed user profile but no difference. (Except that I had to tell Calc. where
to find the file.)

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


[Libreoffice-bugs] [Bug 99963] UI: Cell-Properties dialog in calc

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99963

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.3.0|target:5.3.0 target:5.2.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 99963] UI: Cell-Properties dialog in calc

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99963

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=b2a3fd8037b6a50ed64c0a6a1dbd1d3e1f2f3575=libreoffice-5-2

Resolves: tdf#99963 line wrap very long checkbox content

It will be available in 5.2.1.

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

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

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - cui/source cui/uiconfig

2016-07-18 Thread Caolán McNamara
 cui/source/tabpages/border.cxx |   10 ++
 cui/uiconfig/ui/borderpage.ui  |2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

New commits:
commit b2a3fd8037b6a50ed64c0a6a1dbd1d3e1f2f3575
Author: Caolán McNamara 
Date:   Mon Jul 18 16:12:23 2016 +0100

Resolves: tdf#99963 line wrap very long checkbox content

Change-Id: I11ab52b8c6600d5d479ac3d4d2cd78d1957d8676
(cherry picked from commit ea3f74ba0a9d291f26a79f2568d59f1a030d0585)
Reviewed-on: https://gerrit.libreoffice.org/27292
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/cui/source/tabpages/border.cxx b/cui/source/tabpages/border.cxx
index c999db8..10e0302 100644
--- a/cui/source/tabpages/border.cxx
+++ b/cui/source/tabpages/border.cxx
@@ -137,6 +137,16 @@ SvxBorderTabPage::SvxBorderTabPage(vcl::Window* pParent, 
const SfxItemSet& rCore
 get(m_pMergeAdjacentBordersCB, "mergeadjacent");
 get(m_pRemoveAdjcentCellBordersCB, "rmadjcellborders");
 
+//tdf#99963, we need height-for-width support here, but for now we can
+//bodge it
+Size aPrefSize(m_pRemoveAdjcentCellBordersCB->get_preferred_size());
+Size 
aSize(m_pRemoveAdjcentCellBordersCB->CalcMinimumSize(36*approximate_char_width()));
+if (aPrefSize.Width() > aSize.Width())
+{
+m_pRemoveAdjcentCellBordersCB->set_width_request(aSize.Width());
+m_pRemoveAdjcentCellBordersCB->set_height_request(aSize.Height());
+}
+
 if ( GetDPIScaleFactor() > 1 )
 {
 for (short i = 0; i < aBorderImgLst.GetImageCount(); i++)
diff --git a/cui/uiconfig/ui/borderpage.ui b/cui/uiconfig/ui/borderpage.ui
index d25dbed..20fe941 100644
--- a/cui/uiconfig/ui/borderpage.ui
+++ b/cui/uiconfig/ui/borderpage.ui
@@ -103,7 +103,7 @@
   
 
 
-  
+  
 Remove 
border from adjacent cells as well
 True
 True
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 99963] UI: Cell-Properties dialog in calc

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99963

Adolfo Jayme  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|

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


[Libreoffice-bugs] [Bug 100995] New: macOS Sierra: UI is scrambled

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100995

Bug ID: 100995
   Summary: macOS Sierra: UI is scrambled
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gehr...@gmail.com

User-Agent:   Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12)
AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Safari/602.1.38
Build Identifier: LibreOffice 5.1.4.2

All Toolbar-/Sidebar-Icons are distorted and cut off.

Reproducible: Always

Steps to Reproduce:
1. Start LO
2. Crete - Writer Document
3.
Actual Results:  
See details

Expected Results:  
Show the right icons ;-)

[Information automatically included from LibreOffice]
Locale: de
Module: TextDocument
[Information guessed from browser]
OS: Mac OS X (All) 
Actually 16A238m
OS is 64bit: no


Reset User Profile?No

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


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

2016-07-18 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/fods/bitxor.fods |  446 +
 1 file changed, 213 insertions(+), 233 deletions(-)

New commits:
commit ab1f6f97e9c27daa405e75862aa25ecce1c0af88
Author: Zdeněk Crhonek 
Date:   Mon Jul 18 19:53:29 2016 +0200

update BITXOR test case

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

diff --git a/sc/qa/unit/data/functions/fods/bitxor.fods 
b/sc/qa/unit/data/functions/fods/bitxor.fods
index fb22cbc..22566d6 100644
--- a/sc/qa/unit/data/functions/fods/bitxor.fods
+++ b/sc/qa/unit/data/functions/fods/bitxor.fods
@@ -1,7 +1,7 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:scr
 ipt="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:form
 x="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
- 
2016-06-25T07:16:38.437590147P0D1LibreOffice/5.1.4.2$Linux_X86_64
 LibreOffice_project/10m0$Build-2
+ 
2016-06-25T07:16:38.437590147P0D1LibreOfficeDev/5.3.0.0.alpha0$Linux_X86_64
 
LibreOffice_project/a2c557d80ac68c06ea59586245a7431e061938f0
  
   
0
@@ -28,10 +28,11 @@
100
60
true
+   false
   
   
4
-   15
+   12
0
0
0
@@ -45,10 +46,11 @@
100
60
true
+   false
   
  
  Sheet2
- 1047
+ 1280
  0
  100
  60
@@ -69,6 +71,7 @@
  1
  1
  true
+ false
 

   
@@ -88,8 +91,6 @@
true
true
true
-   true
-   true
false
12632256
false
@@ -103,12 +104,14 @@
  
 

+   true
+   true
3
1
true
1
true
-   qQH+/0xleG1hcmstRTM1MmRuQ1VQUzpMZXhtYXJrLUUzNTJkbgAWAAMAzwAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1FMzUyZG4Kb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhClBhZ2VTaXplOkE0AElucHV0U2xvdDpUcmF5MQBEdXBsZXg6Tm9uZQAAEgBDT01QQVRfRFVQTEVYX01PREUKAERVUExFWF9PRkY=
+   qQH+/0xleG1hcmstRTM1MmRuQ1VQUzpMZXhtYXJrLUUzNTJkbgAWAAMAzwAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1FMzUyZG4Kb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhCkR1cGxleDpOb25lAElucHV0U2xvdDpUcmF5MQBQYWdlU2l6ZTpBNAAAEgBDT01QQVRfRFVQTEVYX01PREUKAERVUExFWF9PRkY=
false
0
   
@@ -1616,133 +1619,130 @@

   
   
-   
-  
-  
-  

   
-  
+  

   
-  
+  
+  

   
-  
+  

   
-  
+  

   
-  
+  

   
-  
+  

   
-  
+  





   
-  
+  





   
-  
+  





   
-  
+  





   
-  
+  


-   
-   
-   
+   
+   
+   
   
-  
+  



   
-  
+  
   

[Libreoffice-bugs] [Bug 100984] Combobox dropdown stays visible when focus changed to another application

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100984

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv  ---
Hi @Ivan, thanks for reporting.

I can't reproduce.
Win10x64
Version: 5.1.5.1 (x64) Build ID: bb431b2be5fb7772067efc27a3cc98b6927c7b4c
CPU Threads: 1; OS Version: Windows 6.19; UI Render: GL; 
Locale: es-ES (es_ES); Calc: CL

Please test changing the status for 'OpenGL for all rendering' in
Menu/Tools/Options/LibreOffice/View

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


[Libreoffice-bugs] [Bug 100992] Avira antivirus interferes with installation on Windows

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100992

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
I have installed Avira in several computers and never have had an issue with it
and LibreOffice.

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


[Libreoffice-bugs] [Bug 100504] FILEOPEN-LibreOffice Calc crashes when opening spreadsheet

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100504

Aron Budea  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 100985] Calc crashes on opening document

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100985

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||0504

--- Comment #2 from Aron Budea  ---
Unchecking 'Tools -> Options... -> LibreOffice -> OpenCL -> Allow use of
OpenCL' and 'Allow use of Software Interpreter (even when OpenCL is not
available)' might also be worth a try.

I added the earlier bug report in the see also field. You can find your own
bugs via Search/Advanced Search, locate Search by People section, then in one
of the columns have Reporter checked, and add either your e-mail address or
%user% (if you're logged in) in the text field. Also make sure to select all
Resolutions, otherwise only the unresolved bugs will be returned.

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


[Libreoffice-bugs] [Bug 100991] Sort Data

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100991

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv  ---
If I'm not wrong you can get it defining a range in Menu/Data/Define range for
the data to sort.

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


[Libreoffice-bugs] [Bug 100993] Link to external data from url doesn't work

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100993

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Created attachment 126291
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126291=edit
File with link to url

Ciao @Paolo, thanks for reporting.

As I know csv files can not be linked in this way, but you can link it through
'Insert sheet from file' marking the link option, they haven't tables like html
or ranges as can have and ods file.

But you link doesn't seem to have an csv file.

Attached a file with a link to that url.

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


[Libreoffice-bugs] [Bug 100903] Calc hangs when preediting Japanese with Mozc + GTK plugin

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100903

Takeshi Abe  changed:

   What|Removed |Added

   Keywords||regression
Summary|Calc hangs when typing  |Calc hangs when preediting
   |Japanese with IBus + Mozc + |Japanese with Mozc + GTK
   |GTK plugin  |plugin

--- Comment #2 from Takeshi Abe  ---
Changed the title as this is not ibus-specific.
Also, marked as a regression since LibO 5.1.4 does not suffer from this
problem.

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


[Libreoffice-bugs] [Bug 98053] Print preview closes the read-only infobar

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98053

David H. Gutteridge  changed:

   What|Removed |Added

 CC||dhgutteri...@hotmail.com

--- Comment #2 from David H. Gutteridge  ---
Adding myself to the CC list. I've also been bumping into this problem
repeatedly. It's clearly a UI defect.

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


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

2016-07-18 Thread Caolán McNamara
 svx/source/form/fmundo.cxx |   19 +++
 svx/source/form/navigatortreemodel.cxx |   21 ++---
 svx/source/unodraw/unoshtxt.cxx|   10 +++---
 3 files changed, 20 insertions(+), 30 deletions(-)

New commits:
commit 1918546e92ce7a60ecc4fac55f17a0b9dd0a03a0
Author: Caolán McNamara 
Date:   Mon Jul 18 21:25:12 2016 +0100

dynamic_cast followed by static_cast and elide some casts when possible

Change-Id: Ib7d303bc18aebaa562bb380a8f3ab7d9fddcbca9

diff --git a/svx/source/form/fmundo.cxx b/svx/source/form/fmundo.cxx
index e49af1d..db6162f 100644
--- a/svx/source/form/fmundo.cxx
+++ b/svx/source/form/fmundo.cxx
@@ -184,7 +184,6 @@ FmXUndoEnvironment::FmXUndoEnvironment(FmFormModel& _rModel)
 }
 }
 
-
 FmXUndoEnvironment::~FmXUndoEnvironment()
 {
 if ( !m_bDisposed )   // i120746, call FormScriptingEnvironment::dispose 
to avoid memory leak
@@ -194,7 +193,6 @@ FmXUndoEnvironment::~FmXUndoEnvironment()
 delete static_cast(m_pPropertySetCache);
 }
 
-
 void FmXUndoEnvironment::dispose()
 {
 OSL_ENSURE( !m_bDisposed, "FmXUndoEnvironment::dispose: disposed twice?" );
@@ -288,10 +286,9 @@ void FmXUndoEnvironment::ModeChanged()
 
 void FmXUndoEnvironment::Notify( SfxBroadcaster& /*rBC*/, const SfxHint& rHint 
)
 {
-const SdrHint* pSdrHint = dynamic_cast();
-if (pSdrHint)
+if (const SdrHint* pSdrHint = dynamic_cast())
 {
-switch( pSdrHint->GetKind() )
+switch (pSdrHint->GetKind())
 {
 case HINT_OBJINSERTED:
 {
@@ -308,9 +305,9 @@ void FmXUndoEnvironment::Notify( SfxBroadcaster& /*rBC*/, 
const SfxHint& rHint )
 break;
 }
 }
-else if (dynamic_cast())
+else if (const SfxSimpleHint* pSimpleHint = dynamic_cast())
 {
-switch ( static_cast()->GetId() )
+switch (pSimpleHint->GetId())
 {
 case SFX_HINT_DYING:
 dispose();
@@ -321,20 +318,18 @@ void FmXUndoEnvironment::Notify( SfxBroadcaster& /*rBC*/, 
const SfxHint& rHint )
 break;
 }
 }
-else if (dynamic_cast())
+else if (const SfxEventHint* pEventHint = dynamic_cast())
 {
-switch ( static_cast()->GetEventId() )
+switch (pEventHint->GetEventId())
 {
-case SFX_EVENT_CREATEDOC:
+case SFX_EVENT_CREATEDOC:
 case SFX_EVENT_OPENDOC:
 ModeChanged();
 break;
 }
 }
-
 }
 
-
 void FmXUndoEnvironment::Inserted(SdrObject* pObj)
 {
 if (pObj->GetObjInventor() == FmFormInventor)
diff --git a/svx/source/form/navigatortreemodel.cxx 
b/svx/source/form/navigatortreemodel.cxx
index fbfbeb6..88bb2ac 100644
--- a/svx/source/form/navigatortreemodel.cxx
+++ b/svx/source/form/navigatortreemodel.cxx
@@ -672,9 +672,9 @@ namespace svxform
 if (rText == aEntryText)
 return pEntryData;
 
-if( bRecurs && dynamic_cast( pEntryData) !=  
nullptr )
+if (FmFormData* pFormData = bRecurs ? 
dynamic_cast(pEntryData) : nullptr)
 {
-pChildData = FindData( rText, 
static_cast(pEntryData) );
+pChildData = FindData(rText, pFormData);
 if( pChildData )
 return pChildData;
 }
@@ -683,11 +683,10 @@ namespace svxform
 return nullptr;
 }
 
-
 void NavigatorTreeModel::Notify( SfxBroadcaster& /*rBC*/, const SfxHint& 
rHint )
 {
 const SdrHint* pSdrHint = dynamic_cast();
-if( pSdrHint )
+if (pSdrHint)
 {
 switch( pSdrHint->GetKind() )
 {
@@ -702,18 +701,18 @@ namespace svxform
 }
 }
 // is shell gone?
-else if ( dynamic_cast() && 
static_cast()->GetId() == SFX_HINT_DYING)
-UpdateContent(nullptr);
-
+else if (const SfxSimpleHint* pSimpleHint = dynamic_cast())
+{
+if (pSimpleHint->GetId() == SFX_HINT_DYING)
+UpdateContent(nullptr);
+}
 // changed mark of controls?
-else if (dynamic_cast())
+else if (const FmNavViewMarksChanged* pvmcHint = dynamic_cast())
 {
-const FmNavViewMarksChanged* pvmcHint = static_cast();
-BroadcastMarkedObjects( 
pvmcHint->GetAffectedView()->GetMarkedObjectList() );
+
BroadcastMarkedObjects(pvmcHint->GetAffectedView()->GetMarkedObjectList());
 }
 }
 
-
 void NavigatorTreeModel::InsertSdrObj( const SdrObject* pObj )
 {
 const FmFormObj* pFormObject = FmFormObj::GetFormObject( pObj );
diff --git a/svx/source/unodraw/unoshtxt.cxx b/svx/source/unodraw/unoshtxt.cxx
index 8d1d382..1569807 100644
--- a/svx/source/unodraw/unoshtxt.cxx
+++ b/svx/source/unodraw/unoshtxt.cxx
@@ -317,11 +317,7 @@ void SvxTextEditSourceImpl::Notify(SfxBroadcaster& rBC, 
const 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - extras/source

2016-07-18 Thread Marco A . G . Pinto
 extras/source/autocorr/lang/pt/DocumentList.xml |  133 
 1 file changed, 93 insertions(+), 40 deletions(-)

New commits:
commit 7d50b617f1324d31c86a2f6667281ed56c74dc37
Author: Marco A. G. Pinto 
Date:   Mon Jul 18 12:48:33 2016 -0500

tdf#100960 Add new Portuguese AutoCorrect entries

Change-Id: Ia7f6f6be6e008cce2e997df9f2b94f7acc849a83
(cherry picked from commit 5e455d5d0c55f63ba39c3337b24460398f195d3c)
Reviewed-on: https://gerrit.libreoffice.org/27295
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/extras/source/autocorr/lang/pt/DocumentList.xml 
b/extras/source/autocorr/lang/pt/DocumentList.xml
index c7de099..43ec730 100644
--- a/extras/source/autocorr/lang/pt/DocumentList.xml
+++ b/extras/source/autocorr/lang/pt/DocumentList.xml
@@ -25,6 +25,7 @@
 
 
 
+
 
 
 
@@ -32,6 +33,8 @@
 
 
 
+
+
 
 
 
@@ -42,23 +45,32 @@
 
 
 
+
 
 
-
-
 
+
 
 
+
 
 
+
+
+
+
 
 
+
 
 
 
+
 
 
 
+
+
 
 
 
@@ -66,18 +78,22 @@
 
 
 
-
-
 
 
 
 
+
+
 
 
+
+
 
 
 
 
+
+
 
 
 
@@ -87,23 +103,20 @@
 
 
 
+
+
 
 
 
 
-
 
 
+
 
 
-
-
-
-
-
-
 
 
+
 
 
 
@@ -112,6 +125,7 @@
 
 
 
+
 
 
 
@@ -120,9 +134,10 @@
 
 
 
+
+
 
 
-
 
 
 
@@ -147,9 +162,13 @@
 
 
 
+
+
 
 
 
+
+
 
 
 
@@ -161,6 +180,9 @@
 
 
 
+
+
+
 
 
 
@@ -168,22 +190,26 @@
 
 
 
+
+
 
 
+
 
 
 
-
-
+
 
 
 
 
 
 
-
+
+
 
 
+
 
 
 
@@ -192,23 +218,27 @@
 
 
 
-
-
 
 
 
 
+
 
 
 
 
+
+
 
 
 
 
+
 
 
 
+
+
 
 
 
@@ -223,15 +253,16 @@
 
 
 
+
 
+
 
+
 
 
 
 
-
-
-
+
 
 
 
@@ -240,38 +271,63 @@
 
 
 
+
 
+
+
+
+
+
+
+
+
+
 
 
 
 
 
+
 
 
 
 
 
+
+
+
 
 
 
 
 
 
+
+
 
+
+
 
 
+
+
 
 
+
+
 
 
-
 
 
 
 
+
 
 
 
+
+
+
 
 
 
@@ -280,9 +336,12 @@
 
 
 
+
+
 
 
 
+
 
 
 
@@ -290,29 +349,31 @@
 
 
 
+
 
 
 
-
 
+
 
-
 
 
 
 
 
 
+
 
 
+
 
 
 
-
 
 
 
 
+
 
 
 
@@ -323,30 +384,23 @@
 
 
 
+
+
+
+
+
 
 
 
 
 
 
+
+
+
 
 
-
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
 
 
 
@@ -355,7 +409,6 @@
 
 
 
-
   
   
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100985] Calc crashes on opening document

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100985

V Stuart Foote  changed:

   What|Removed |Added

Summary|FILEOPEN|Calc crashes on opening
   ||document

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


[Libreoffice-bugs] [Bug 100985] FILEOPEN

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100985

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #1 from V Stuart Foote  ---
As is we can not do anything with this issue because it is not reproducible for
anyone else.

But, if you can install the 5.2.0.2 rc2 build of LibreOffice, that should
automatically catch the crash of Calc with correct debug detials. It will give
you the option of uploading the crash report and allow us to see of what is
happening.

Other than that--if you prefer to stay with a 5.1.x build, you need to clear
your user profile and check stability with and without OpenGL support enabled
(done from Tools -> Options -> View:  check box "Enable OpenGL for all
rendering (on restart)"

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


[Libreoffice-bugs] [Bug 100900] [Enhancement] inform user when a font style doesn't exist ( bold, italic, ...)

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100900

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
   Severity|normal  |enhancement

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


[Libreoffice-bugs] [Bug 100992] Avira antivirus interferes with installation on Windows

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100992

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |NOTABUG
Summary|After finishing the |Avira antivirus interferes
   |5.1.4.2. release, I |with installation on
   |restarted my computer and   |Windows
   |was unable to get into my   |
   |spreadsheets or documents.  |
   |Something was corrupted |
   |during the installation.  I |
   |had to walk the computer|
   |back to the pre-update  |
   |status for everything to|
   |run proper  |

--- Comment #1 from V Stuart Foote  ---
"After finishing the 5.1.4.2. release, I restarted my computer and was unable
to get into my spreadsheets or documents.  Something was corrupted during the
installation.  I had to walk the computer back to the pre-update status for
everything to run proper"

Adjusting the title...

Well, you've answered your own question. Disable your AV prior to attempting an
installation. Then download the installer and check its HASH value against its
MirrorBrain data sheet, or verify its Digital signature if that makes you more
comfortable.

Also, rather than the LibreOffice -> Download page, you can download directly
from the LibreOffice project archive here:
http://downloadarchive.documentfoundation.org/libreoffice/old/

The "details" page for each build installer contains the MirrorBrain data for
the executable--check the HASH value against that.

Then when you proceed with the installation be sure to "Run as Administrator".

If you do that and still have issues, we'll need you to run the installation
from the command line and capture an installation log.

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


[Libreoffice-bugs] [Bug 98984] Mailmerge ignores 'Exchange database'

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98984

royerjy  changed:

   What|Removed |Added

   Keywords||regression
   Priority|medium  |high
   Hardware|All |x86-64 (AMD64)
Version|5.2.0.0.alpha0+ |5.2.0.1 rc
 OS|All |Linux (All)
   Severity|normal  |major

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


[Libreoffice-bugs] [Bug 100994] New: LO freezes when first action after launch

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100994

Bug ID: 100994
   Summary: LO freezes when first action after launch
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gehr...@gmail.com

Created attachment 126290
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126290=edit
LO screen after freezing in Create - Writer Document

Hi,
I'm using macOS Sierra Public Beta (16A238m).
Launch LO (5.1.4 or newer).
First action* after launch will freeze LO.

* Like LibreOffice - About; LibreOffice - Preferences; Create - Writer
Document; Open File
Every time after every program launch.

Gerald

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


[Libreoffice-bugs] [Bug 98984] Mailmerge ignores 'Exchange database'

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98984

royerjy  changed:

   What|Removed |Added

 CC||roye...@wanadoo.fr

--- Comment #3 from royerjy  ---
Created attachment 126289
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126289=edit
After changing database the old one continue to be visible

With French 5.2.0 rc2 on Linux, after changing database the old one continue to
appeared and mailmerge don't works correctly. It is necessary to repeat the
operation once again to change the database.

LibO crash frequently when closing the document.

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


[Libreoffice-bugs] [Bug 100918] Pulldown menus blank

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100918

--- Comment #2 from Richard Dawson  ---
A slight correction:  I am running Linux Mint KDE 17.1.  When 18 comes out for
KDE, I may give it a try.

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


[Libreoffice-bugs] [Bug 100885] LO Basic Editor gets stuck in F8 Step Mode

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100885

--- Comment #2 from Paul  ---
Hi Cor,

Thanks for taking a look at this. Since reporting this bug I have not had a
reoccurrence. I had been working on some fairly involved macros, so maybe
something broke temporarily? Not sure, but it hasn't happened since. Since
there has been no confirmation perhaps it would be best to close this?

Be well,
Paul

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


[Libreoffice-bugs] [Bug 100961] Insert Fixed Date Field Inserts Current Date

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100961

MM  changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from MM  ---
Unconfirmed with v5.1.5.1 under windows 7 x64.

Fixed date stays fixed. Maybe you wanna try a newer version and let us know if
it's fixed or not

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


[Libreoffice-bugs] [Bug 100993] New: Link to external data from url doesn't work

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100993

Bug ID: 100993
   Summary: Link to external data from url doesn't work
   Product: LibreOffice
   Version: 5.1.3.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: paolo_debort...@yahoo.com

Created attachment 126288
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126288=edit
screenshots of dialog boxes

I want to link actively data from the url: 
https://finance.google.com/finance/info?q=BIT%3aENEL  in a cell in calc.  Then
I use the menu (I use Italian, don't know exactly the english/german menu):   
sheet-> link external data;  it open a first dialog box, I insert the url and
press enter; then it goes to a second dialog box, asking for definitions,
reading the data;  then I press ok and  it goes back to the first dialog box,
without data, options or whatelse...  I made different attempts, with different
definitions, but it returns always to an empty first dialog box.

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


[Libreoffice-bugs] [Bug 100977] Something, (long Formulae?) make a file unusable in LO 5 but works in LO4

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100977

--- Comment #1 from MM  ---
Unconfirmed with v5.1.5.1 under windows 7 x64.

Try resetting the userprofile and see if it helps:
https://wiki.documentfoundation.org/UserProfile#Resolving_corruption_in_the_user_profile

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


[Libreoffice-bugs] [Bug 100992] New: After finishing the 5.1.4.2. release, I restarted my computer and was unable to get into my spreadsheets or documents. Something was corrupted during the installat

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100992

Bug ID: 100992
   Summary: After finishing the 5.1.4.2. release, I restarted my
computer and was unable to get into my spreadsheets or
documents.  Something was corrupted during the
installation.  I had to walk the computer back to the
pre-update status for everything to run proper
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: contad...@pacbell.net

I use Avira and was unable to get it to allow an install of Libre from your
website, so I got the computer back to pre-update status.  This never happened
before, and I am afraid to retry this update.

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


[Libreoffice-bugs] [Bug 58585] IRR / MIRR functions should accept an array argument

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58585

--- Comment #4 from raal  ---
MIRR fixed in bug 100767

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


[Libreoffice-bugs] [Bug 100877] After closing of LO documents, .lock files sometimes do not get deleted

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100877

Buovjaga  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 100857] Animations only "appear". Don't work as described.

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100857

--- Comment #4 from Buovjaga  ---
(In reply to Adolfo Jayme from comment #3)
> Have you identified the fixing commit? Only if so, you should add a
> backportRequest keyword.

That is a bit different from what we agreed in a QA meeting:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/RESOLVED#Fixed_in_a_newer_version

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


[Libreoffice-bugs] [Bug 64914] FILEOPEN: Libreoffice freezes or even crashes importing a file containing a chart with large data source

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64914

Buovjaga  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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


[Libreoffice-bugs] [Bug 64914] FILEOPEN: Libreoffice freezes or even crashes importing a file containing a chart with large data source

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64914

--- Comment #6 from Buovjaga  ---
Created attachment 126287
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126287=edit
Callgrind with 5.3

Callgrind of opening the file an scrolling just a little bit.

Arch Linux 64-bit, KDE Plasma 5
Version: 5.3.0.0.alpha0+
Build ID: ab1b351840160655a9f0caedbb35e9fdf203c5a0
CPU Threads: 8; OS Version: Linux 4.6; UI Render: default; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group
Built on July 16th 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-bugs] [Bug 100863] Storing of a big file is impossible

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100863

--- Comment #10 from Buovjaga  ---
(In reply to Wilfried Koch from comment #9)
> I installed 5.1.3.2.(32) It shows problems with the sanitized file. "bad
> allocation" error about every 2nd time. The size of this file is nearly 50
> MB. So I cannot send it here. For a realistic test I think you need such a
> big file. Can I send it to you using dropbox?

If you can share it publicly, just tell us the Dropbox link in a comment.

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


[Libreoffice-bugs] [Bug 100989] [EDITING] "Block position not found!" error and crash on copying cells (drag'n'drop)

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100989

MM  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
Version|5.1.4.2 release |4.2.8.2 release
 Ever confirmed|0   |1

--- Comment #1 from MM  ---
Unconfirmed with v5.1.5.1 under windows 7 x64.
Unconfirmed with v5.2.0.1 under ubuntu 14.04 x64.
Confirmed with v5.1.4.2 under ubuntu 14.04 x64.

Seems already fixed. Could you try a newer version and see if it is ?!

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


[Libreoffice-bugs] [Bug 94090] User Interface shown in multiple languages

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94090

--- Comment #11 from Marian Baca  ---
Complete uninstall, profile removal, cleaned registry and then clean install of
LO fixed issue for me. Still I have no idea what caused it. I did not
experience the issue during 5.0.* upgrades, only after upgrade to 5.1.* as it
is described in duplicate bug report no 100955.

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


[Libreoffice-bugs] [Bug 100904] User Interface Look Horrible when using Global Dark Theme on Gnome

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100904

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

--- Comment #1 from Adolfo Jayme  ---
Change your icon 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 100858] Installer will not download correctly (Win10) freezes other browser (Mozilla) functions

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100858

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

--- Comment #2 from Adolfo Jayme  ---
Closing due to OP not responding.

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


[Libreoffice-bugs] [Bug 100857] Animations only "appear". Don't work as described.

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100857

--- Comment #3 from Adolfo Jayme  ---
Have you identified the fixing commit? Only if so, you should add a
backportRequest keyword.

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


[Libreoffice-bugs] [Bug 79787] Normal cell borders are showing dashed/ dotted when export to xlsx/xls and reopen in MSO

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79787

Roeland  changed:

   What|Removed |Added

 CC||79045_79...@mail.ru

--- Comment #24 from Roeland  ---
*** Bug 88743 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 88743] type of border lines of cells changes when saved in .xls format

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88743

Roeland  changed:

   What|Removed |Added

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

--- Comment #10 from Roeland  ---


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

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


[Libreoffice-ux-advise] [Bug 79787] Normal cell borders are showing dashed/ dotted when export to xlsx/xls and reopen in MSO

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79787

Roeland  changed:

   What|Removed |Added

 CC||79045_79...@mail.ru

--- Comment #24 from Roeland  ---
*** Bug 88743 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 86860] Border thickness 1.50 reverts to 0.75 when saved/reopened ( .xls and .xlsx only)

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86860

--- Comment #12 from Roeland  ---
This is a duplicate of  Bug 61148.

Comment 1 and 4 over there are relevant:

Steps to reproduce:
1. Create a file in LibreOffice Calc. Specify the line thickness of framing any
cell 0.4pt, 0.5pt, 0.8pt, 2.0pt. Save the file as test_1.ods. Save the file as
test_1.xls (Excel 97/2000/XP/2003) and close it.
2. Reopen test_1.xls in LibreOffice Calc. The thickness of the lines will not
match the test_1.ods.

Tested with xls and xlsx and in both the border thickness is mostly changed:
0.75 stays 0.75 
1.00 changed to 0.75
1.25 changed to 0.75
1.50 changed to 0.75
1.75 stays 1.75
2.00 changed to 1.75

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


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

2016-07-18 Thread Marco A . G . Pinto
 extras/source/autocorr/lang/pt/DocumentList.xml |  133 
 1 file changed, 93 insertions(+), 40 deletions(-)

New commits:
commit 5e455d5d0c55f63ba39c3337b24460398f195d3c
Author: Marco A. G. Pinto 
Date:   Mon Jul 18 12:48:33 2016 -0500

tdf#100960 Add new Portuguese AutoCorrect entries

Change-Id: Ia7f6f6be6e008cce2e997df9f2b94f7acc849a83

diff --git a/extras/source/autocorr/lang/pt/DocumentList.xml 
b/extras/source/autocorr/lang/pt/DocumentList.xml
index c7de099..43ec730 100644
--- a/extras/source/autocorr/lang/pt/DocumentList.xml
+++ b/extras/source/autocorr/lang/pt/DocumentList.xml
@@ -25,6 +25,7 @@
 
 
 
+
 
 
 
@@ -32,6 +33,8 @@
 
 
 
+
+
 
 
 
@@ -42,23 +45,32 @@
 
 
 
+
 
 
-
-
 
+
 
 
+
 
 
+
+
+
+
 
 
+
 
 
 
+
 
 
 
+
+
 
 
 
@@ -66,18 +78,22 @@
 
 
 
-
-
 
 
 
 
+
+
 
 
+
+
 
 
 
 
+
+
 
 
 
@@ -87,23 +103,20 @@
 
 
 
+
+
 
 
 
 
-
 
 
+
 
 
-
-
-
-
-
-
 
 
+
 
 
 
@@ -112,6 +125,7 @@
 
 
 
+
 
 
 
@@ -120,9 +134,10 @@
 
 
 
+
+
 
 
-
 
 
 
@@ -147,9 +162,13 @@
 
 
 
+
+
 
 
 
+
+
 
 
 
@@ -161,6 +180,9 @@
 
 
 
+
+
+
 
 
 
@@ -168,22 +190,26 @@
 
 
 
+
+
 
 
+
 
 
 
-
-
+
 
 
 
 
 
 
-
+
+
 
 
+
 
 
 
@@ -192,23 +218,27 @@
 
 
 
-
-
 
 
 
 
+
 
 
 
 
+
+
 
 
 
 
+
 
 
 
+
+
 
 
 
@@ -223,15 +253,16 @@
 
 
 
+
 
+
 
+
 
 
 
 
-
-
-
+
 
 
 
@@ -240,38 +271,63 @@
 
 
 
+
 
+
+
+
+
+
+
+
+
+
 
 
 
 
 
+
 
 
 
 
 
+
+
+
 
 
 
 
 
 
+
+
 
+
+
 
 
+
+
 
 
+
+
 
 
-
 
 
 
 
+
 
 
 
+
+
+
 
 
 
@@ -280,9 +336,12 @@
 
 
 
+
+
 
 
 
+
 
 
 
@@ -290,29 +349,31 @@
 
 
 
+
 
 
 
-
 
+
 
-
 
 
 
 
 
 
+
 
 
+
 
 
 
-
 
 
 
 
+
 
 
 
@@ -323,30 +384,23 @@
 
 
 
+
+
+
+
+
 
 
 
 
 
 
+
+
+
 
 
-
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
 
 
 
@@ -355,7 +409,6 @@
 
 
 
-
   
   
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100863] Storing of a big file is impossible

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100863

--- Comment #9 from Wilfried Koch  ---
I installed 5.1.3.2.(32) It shows problems with the sanitized file. "bad
allocation" error about every 2nd time. The size of this file is nearly 50 MB.
So I cannot send it here. For a realistic test I think you need such a big
file. Can I send it to you using dropbox?

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


[Libreoffice-bugs] [Bug 100991] New: Sort Data

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100991

Bug ID: 100991
   Summary: Sort Data
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fdimich...@live.ca

Under the DATA heading when doing a SORT,  the program does not remember what
your choices were if you close and reopen Libre Office.  It would be nice to
have a little check box that states REMEMBER CHOICE.

In this way when you do a sort next time you open Libre Office you can sort
again without having to reinput all your choices.

Frank

fdimich...@live.ca

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


[Libreoffice-bugs] [Bug 100937] Description: LO Freezed when I insert a very long text in the Description box

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100937

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #2 from Buovjaga  ---
It does not freeze forever. For the test I just copied your description and
pasted it dozens of 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 100937] Description: LO Freezed when I insert a very long text in the Description box

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100937

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #1 from Buovjaga  ---
Created attachment 126286
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126286=edit
Callgrind with 5.3

Arch Linux 64-bit, KDE Plasma 5
Version: 5.3.0.0.alpha0+
Build ID: ab1b351840160655a9f0caedbb35e9fdf203c5a0
CPU Threads: 8; OS Version: Linux 4.6; UI Render: default; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group
Built on July 16th 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: Changes to 'aoo/aw080'

2016-07-18 Thread Armin Le Grand
New branch 'aoo/aw080' available with the following commits:
commit 3c1d4742e649fe9c8aed8c2817fe3e1f3364f298
Author: Armin Le Grand 
Date:   Mon Jul 14 19:09:11 2014 +

Resync to trunk, windows non-pro build

commit c5c31e2aeaedbdf76e1f38d3c385e34f5ed875ca
Author: Regina Henschel 
Date:   Tue Apr 22 11:49:38 2014 +

missing includes, needed for pro build on Windows

commit 4cff340fbe1f20a3a05cc5e541cfcbd735287e2d
Author: Armin Le Grand 
Date:   Thu Apr 10 14:08:57 2014 +

in-between results/corrections/improvemnts

commit 6ca3a9faca825e0e3c44de9f47f4c684d31f86b1
Author: Armin Le Grand 
Date:   Sun Mar 23 17:33:53 2014 +

aw080 resync to trunk, win build working, no checks yet

commit 812e2a8bf64274e47db572b8ca592f49b1263ad7
Author: Armin Le Grand 
Date:   Wed Nov 27 16:25:40 2013 +

resync to trunk (after accessibility integration)

commit 9818d8d1c64bd93adfaacb8a2f824a9db1f4987d
Author: Armin Le Grand 
Date:   Thu Nov 21 11:16:41 2013 +

further gluepoint and connector refinements - move one-side connected ones, 
im/export, relayout on bestconnection and others

commit 98d1a4e5542940f7d6c39252c4987da84e4fd95f
Author: Armin Le Grand 
Date:   Tue Nov 19 16:47:11 2013 +

More connector refinements

commit 3e7d04fab78e5cc0aabd545283acc0dfe60ef86e
Author: Armin Le Grand 
Date:   Mon Nov 18 17:20:49 2013 +

Continued connector and gluepoint cleanup, further reworks

commit e9a2d5e2889fe43565fcf453fa9db3875187d20b
Author: Armin Le Grand 
Date:   Thu Nov 7 13:29:41 2013 +

resync to trunk

commit 016bb3894dcc2e3a9cfb6324f1a9f389c192426d
Author: Armin Le Grand 
Date:   Wed Oct 30 15:13:41 2013 +

save adaptions to aw080 due to fixes done on trunk

commit 6b40671cdcb58fcf8f0c7af4b49cb94a7b53cd97
Author: Armin Le Grand 
Date:   Fri Oct 25 15:25:48 2013 +

in-between commit with changes to MS binary format stuff, Calc overlay, 
circle type cleanup, rotated obejct export for word

commit eeef513fcae5d1986ca8b710058f8ce93a3f7b57
Author: Armin Le Grand 
Date:   Fri Oct 18 14:25:16 2013 +

filter and build adaptions

commit 93801573703fec0f40d8e0b42129d5c5b573f813
Author: Armin Le Grand 
Date:   Thu Oct 17 17:39:11 2013 +

Removed no longer needed files

commit a3452f1b587b0da117edf355d3c6430f791ffe66
Author: Armin Le Grand 
Date:   Thu Oct 17 17:36:03 2013 +

GluePoint rework done and checked

commit cfc0a1aaae0ee8454d0f84c7307228a0f6f959f5
Author: Armin Le Grand 
Date:   Fri Oct 4 16:20:25 2013 +

GluePoint reworks (all in unit coordinates), needs more checks

commit 14a9ddcf6966a9c49e188189051968f5f01f01b3
Author: Armin Le Grand 
Date:   Fri Sep 27 11:20:23 2013 +

in-between co with recent changes to have an anchor point for a critical 
change, not complete

commit dbd1dea45083d76235568f6b93e86a8ac15f2b97
Author: Armin Le Grand 
Date:   Fri Sep 13 11:52:57 2013 +

selection rework, fixes for virtual function warnings

commit ff6a9f07d740c9a15c4d498db4cec6b99b4c14b4
Author: Armin Le Grand 
Date:   Thu Sep 12 11:17:45 2013 +

in-between work commit

commit bcb0630dd609dbf890558a719f77d3da44bcbcac
Author: Armin Le Grand 
Date:   Thu Aug 8 14:01:55 2013 +

adaptions, changes, warnings reviewed

commit d9804cd7c4f01ac54dc5947bfefea2bc0296b414
Author: Armin Le Grand 
Date:   Fri Aug 2 12:55:37 2013 +

corrected first PolyPolygon handling stuff in xmloff

commit 269719ba0422aaf8f49cf3d579972ef2070716be
Author: Armin Le Grand 
Date:   Thu Aug 1 16:14:31 2013 +

commit to safe ongoing work

commit 8a6f84ce896f41a7a1f97b06d1e053c51cbba95e
Author: Armin Le Grand 
Date:   Sat Jul 27 11:40:32 2013 +

resync to trunk (close to AOO400)

commit 59ee09f905e86724a2ba5cdccab9210d16686820
Author: Joe Schaefer 
Date:   Mon Nov 26 02:32:20 2012 +

mv ooo to top-level

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


[Libreoffice-bugs] [Bug 100872] Crash in: com::sun::star::datatransfer::DataFormatTranslator: :create(com::sun::star::uno::Reference const &)

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100872

Adolfo Jayme  changed:

   What|Removed |Added

 Whiteboard|target:5.3.0 target:5.2.1   |target:5.3.0 target:5.2.0
   |target:5.2.0|

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


[Libreoffice-bugs] [Bug 100917] LibreOffice has wrong icon theme, when opening file with double-click

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100917

Buovjaga  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #3 from Buovjaga  ---
Thanks, changing to WFM.

-- 
You are receiving this mail because:
You 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.1' - vcl/inc vcl/unx

2016-07-18 Thread Chris Sherlock
 vcl/inc/unx/gtk/gtkprintwrapper.hxx |  126 
 vcl/unx/gtk/gtkinst.cxx |2 
 vcl/unx/gtk/gtkprintwrapper.cxx |2 
 vcl/unx/gtk/gtkprintwrapper.hxx |  126 
 vcl/unx/gtk/salprn-gtk.cxx  |2 
 5 files changed, 129 insertions(+), 129 deletions(-)

New commits:
commit 03d5a294f3e5eedb6e7eb3bbc2af6512df471d4d
Author: Chris Sherlock 
Date:   Mon Jan 25 19:51:27 2016 +1100

vcl: gtkprintwrapper is a private gtk only header

(cherry picked from commit ea60011a5aa36a8f13067b8acb152e927fddf621)

Change-Id: I12d7b59c5e307403715865411993119ccbc291ec

diff --git a/vcl/unx/gtk/gtkprintwrapper.hxx 
b/vcl/inc/unx/gtk/gtkprintwrapper.hxx
similarity index 100%
rename from vcl/unx/gtk/gtkprintwrapper.hxx
rename to vcl/inc/unx/gtk/gtkprintwrapper.hxx
diff --git a/vcl/unx/gtk/gtkinst.cxx b/vcl/unx/gtk/gtkinst.cxx
index f073635..6bb7bb8 100644
--- a/vcl/unx/gtk/gtkinst.cxx
+++ b/vcl/unx/gtk/gtkinst.cxx
@@ -42,7 +42,7 @@
 #include 
 #include 
 
-#include "gtkprintwrapper.hxx"
+#include "unx/gtk/gtkprintwrapper.hxx"
 
 extern "C"
 {
diff --git a/vcl/unx/gtk/gtkprintwrapper.cxx b/vcl/unx/gtk/gtkprintwrapper.cxx
index e552042..b7f4668 100644
--- a/vcl/unx/gtk/gtkprintwrapper.cxx
+++ b/vcl/unx/gtk/gtkprintwrapper.cxx
@@ -11,7 +11,7 @@
 
 #include 
 
-#include "gtkprintwrapper.hxx"
+#include "unx/gtk/gtkprintwrapper.hxx"
 
 namespace vcl
 {
diff --git a/vcl/unx/gtk/salprn-gtk.cxx b/vcl/unx/gtk/salprn-gtk.cxx
index 7679494..b073272 100644
--- a/vcl/unx/gtk/salprn-gtk.cxx
+++ b/vcl/unx/gtk/salprn-gtk.cxx
@@ -7,7 +7,7 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
-#include "gtkprintwrapper.hxx"
+#include "unx/gtk/gtkprintwrapper.hxx"
 
 #include "unx/gtk/gtkdata.hxx"
 #include "unx/gtk/gtkframe.hxx"
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100990] New: bad example of RATE function

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100990

Bug ID: 100990
   Summary: bad example of RATE function
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: r...@post.cz

help
http://vm173.documentfoundation.org/text/scalc/01/04060118.xhp#bm_id3154267

Example
What is the constant interest rate for a payment period of 3 periods if 10
currency units are paid regularly and the present cash value is 900 currency
units.
=RATE(3;10;900) = -121% The interest rate is therefore 121%.


Formula =RATE(3;10;900) throws error in Calc.

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


[GSoC] Weekly Report #8 - Toolbars infrastructure via .ui files

2016-07-18 Thread Szymon Kłos
Hello,

Last week I implemented mechanism for notebookbar to show hidden
content in the popup. Next step is creating possibility to determine
one widget for each section which will be shown always. Then user will
be aware of what kind of controls could find in this section.

I also reduced empty space between tab labels in the notebookbar (that
was visible after choosing one of context dependent tabs).

Next I'm going to add file menu. I will add also an icon to show/hide
menubar what was proposed once on a hangout.

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


[Libreoffice-bugs] [Bug 100917] LibreOffice has wrong icon theme, when opening file with double-click

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100917

matthia...@web.de changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from matthia...@web.de ---
Thanks for the hint!
The problem is resolved.
Best regards
Matthias

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


[Libreoffice-bugs] [Bug 100914] Webdateien - add Google Drive error

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100914

--- Comment #6 from Peter Grimm  ---
Windows 10 Home 64bit
No speciale characters
Local Drive and Dropbox buttons are working
I'm using the same id and password to logon to Google Drive and Dropbox

mfG Peter

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


[Libreoffice-bugs] [Bug 100987] Hide Row and Show Row operations lose cell-anchored images

2016-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100987

--- Comment #2 from m.a.riosv  ---
Not exactly the same behavior but it never works fine, for 4.1 and before.

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


GSoC Week 8 Report

2016-07-18 Thread Rosemary Sebastian
Hello everyone

This week I've been working on import of the redlines of text type. I'm
currently trying to fix some faults during import such as the redline on
the first paragraph not showing up, the redline text being followed by a
new line on import and the redline positions getting altered during
roundtrip.

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


  1   2   3   4   >