[Bug 79641] LibreOffice 4.4 most annoying bugs

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79641
Bug 79641 depends on bug 86055, which changed state.

Bug 86055 Summary: size and window placement (aka screen position) of LO is not 
remembered on OSX 10.10
https://bugs.freedesktop.org/show_bug.cgi?id=86055

   What|Removed |Added

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

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


[Bug 79641] LibreOffice 4.4 most annoying bugs

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79641

foss f...@openmailbox.org changed:

   What|Removed |Added

 Depends on||75644

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


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

2014-12-20 Thread Michael Weghorn
 sax/source/tools/converter.cxx   |2 +-
 sc/source/core/data/attarray.cxx |   13 -
 sc/source/core/data/documen7.cxx |3 +--
 sc/source/core/data/fillinfo.cxx |3 +--
 sc/source/core/tool/callform.cxx |3 +--
 sc/source/core/tool/chgtrack.cxx |5 ++---
 sc/source/core/tool/interpr2.cxx |   10 +-
 sc/source/core/tool/interpr3.cxx |   22 ++
 sc/source/core/tool/interpr5.cxx |   36 
 sc/source/core/tool/interpr6.cxx |   12 
 10 files changed, 41 insertions(+), 68 deletions(-)

New commits:
commit 8abd002240e8d7666300bf6fa832a28988e9ed0a
Author: Michael Weghorn m.wegh...@posteo.de
Date:   Fri Dec 19 13:06:58 2014 +0100

fdo#39440 sax, sc: reduce scope of local variables

This addresses some cppcheck warnings.

Change-Id: I589e13ee086cffee481954215a97960db656e633
Reviewed-on: https://gerrit.libreoffice.org/13548
Reviewed-by: Noel Grandin noelgran...@gmail.com
Tested-by: Noel Grandin noelgran...@gmail.com

diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx
index a831269..e4d3c96 100644
--- a/sax/source/tools/converter.cxx
+++ b/sax/source/tools/converter.cxx
@@ -84,10 +84,10 @@ bool Converter::convertMeasure( sal_Int32 rValue,
 nVal += (rString[nPos] - '0');
 nPos++;
 }
-double nDiv = 1.;
 if( nPos  nLen  '.' == rString[nPos] )
 {
 nPos++;
+double nDiv = 1.;
 
 while( nPos  nLen 
'0' = rString[nPos] 
diff --git a/sc/source/core/data/attarray.cxx b/sc/source/core/data/attarray.cxx
index 65af7f6..0f7683c 100644
--- a/sc/source/core/data/attarray.cxx
+++ b/sc/source/core/data/attarray.cxx
@@ -107,14 +107,13 @@ void ScAttrArray::TestData() const
 void ScAttrArray::Reset( const ScPatternAttr* pPattern )
 {
 ScDocumentPool*  pDocPool = pDocument-GetPool();
-const ScPatternAttr* pOldPattern;
 ScAddressaAdrStart( nCol, 0, nTab );
 ScAddressaAdrEnd  ( nCol, 0, nTab );
 
 for (SCSIZE i=0; inCount; i++)
 {
 // ensure that attributing changes text width of cell
-pOldPattern = pData[i].pPattern;
+const ScPatternAttr* pOldPattern = pData[i].pPattern;
 bool bNumFormatChanged;
 if ( ScGlobal::CheckWidthInvalidate( bNumFormatChanged,
 pPattern-GetItemSet(), pOldPattern-GetItemSet() ) )
@@ -180,7 +179,6 @@ bool ScAttrArray::Search( SCROW nRow, SCSIZE nIndex ) const
 bool bFound = (nCount == 1);
 long nLo = 0;
 long nStartRow = 0;
-long nEndRow = 0;
 while ( !bFound  nLo = nHi )
 {
 i = (nLo + nHi) / 2;
@@ -188,7 +186,7 @@ bool ScAttrArray::Search( SCROW nRow, SCSIZE nIndex ) const
 nStartRow = (long) pData[i - 1].nRow;
 else
 nStartRow = -1;
-nEndRow = (long) pData[i].nRow;
+const long nEndRow = (long) pData[i].nRow;
 if (nEndRow  (long) nRow)
 nLo = ++i;
 else
@@ -1606,8 +1604,6 @@ bool ScAttrArray::RemoveFlags( SCROW nStartRow, SCROW 
nEndRow, sal_Int16 nFlags
 
 void ScAttrArray::ClearItems( SCROW nStartRow, SCROW nEndRow, const 
sal_uInt16* pWhich )
 {
-const ScPatternAttr* pOldPattern;
-
 SCSIZE  nIndex;
 SCROW   nRow;
 SCROW   nThisRow;
@@ -1618,7 +1614,7 @@ void ScAttrArray::ClearItems( SCROW nStartRow, SCROW 
nEndRow, const sal_uInt16*
 
 while ( nThisRow = nEndRow )
 {
-pOldPattern = pData[nIndex].pPattern;
+const ScPatternAttr* pOldPattern = pData[nIndex].pPattern;
 if ( pOldPattern-HasItemsSet( pWhich ) )
 {
 ScPatternAttr aNewPattern(*pOldPattern);
@@ -2147,7 +2143,6 @@ void ScAttrArray::DeleteArea(SCROW nStartRow, SCROW 
nEndRow)
 void ScAttrArray::DeleteHardAttr(SCROW nStartRow, SCROW nEndRow)
 {
 const ScPatternAttr* pDefPattern = pDocument-GetDefPattern();
-const ScPatternAttr* pOldPattern;
 
 SCSIZE  nIndex;
 SCROW   nRow;
@@ -2159,7 +2154,7 @@ void ScAttrArray::DeleteHardAttr(SCROW nStartRow, SCROW 
nEndRow)
 
 while ( nThisRow = nEndRow )
 {
-pOldPattern = pData[nIndex].pPattern;
+const ScPatternAttr* pOldPattern = pData[nIndex].pPattern;
 
 if ( pOldPattern-GetItemSet().Count() )  // hard attributes ?
 {
diff --git a/sc/source/core/data/documen7.cxx b/sc/source/core/data/documen7.cxx
index af7337e..1871a24 100644
--- a/sc/source/core/data/documen7.cxx
+++ b/sc/source/core/data/documen7.cxx
@@ -589,13 +589,12 @@ void ScDocument::TrackFormulas( sal_uLong nHintId )
 {
 // outside the loop, check if any sheet has a calculate event script
 bool bCalcEvent = HasAnySheetEventScript( SC_SHEETEVENT_CALCULATE, 
true );
-SvtBroadcaster* pBC;
 ScFormulaCell* pTrack;
 ScFormulaCell* pNext;
 pTrack = pFormulaTrack;
 do
 {
-pBC = GetBroadcaster(pTrack-aPos);
+

[Bug 39440] cppcheck cleanliness

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39440

--- Comment #39 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Michael Weghorn committed a patch related to this issue.
It has been pushed to master:

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

fdo#39440 sax, sc: reduce scope of local variables

It will be available in 4.5.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 on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: include/svtools include/svx

2014-12-20 Thread Michael Weghorn
 include/svtools/parhtml.hxx  |  111 
 include/svtools/rtfkeywd.hxx |6 -
 include/svx/svddrgv.hxx  |  196 +--
 3 files changed, 157 insertions(+), 156 deletions(-)

New commits:
commit 1ac3ad7743c7c98b83f7a8a4c3e03a83721b46b9
Author: Michael Weghorn m.wegh...@posteo.de
Date:   Fri Dec 19 16:16:28 2014 +0100

fdo#39468 translate German comments

Change-Id: I36e3d7950d64a927ac6f081cf4b163fccd2f4786
Reviewed-on: https://gerrit.libreoffice.org/13549
Reviewed-by: Noel Grandin noelgran...@gmail.com
Tested-by: Noel Grandin noelgran...@gmail.com

diff --git a/include/svtools/parhtml.hxx b/include/svtools/parhtml.hxx
index 920c3b2..8ba1182 100644
--- a/include/svtools/parhtml.hxx
+++ b/include/svtools/parhtml.hxx
@@ -74,44 +74,44 @@ enum HTMLScriptLanguage
 
 struct HTMLOptionEnum
 {
-const sal_Char *pName;  // Wert einer HTML-Option
-sal_uInt16 nValue;  // und der dazugehoerige Wert eines Enums
+const sal_Char *pName;  // value of an HTML option
+sal_uInt16 nValue;  // and corresponding value of an enum
 };
 
-// Repraesentation einer HTML-Option (=Atrribut in einem Start-Tag)
-// Die Werte der Optionen werden immer als String gespeichert.
-// Die Methoden GetNumber, ... duerfen nur aufgerufen werden, wenn
-// die Option auch numerisch, ... ist.
-
+/** Representation of an HTML option (=attribute in a start tag).
+ * The values of the options are always stored as strings.
+ * The methods GetNumber,... may only be called if the option
+ * is actually numerical,...
+ */
 class SVT_DLLPUBLIC HTMLOption
 {
-OUString aValue;  // der Wert der Option (immer als String)
-OUString aToken;  // der Name der Option als String
-sal_uInt16 nToken;// und das entsprechende Token
+OUString aValue;  // value of the option (always as string)
+OUString aToken;  // name of the option as string
+sal_uInt16 nToken;// and respective token
 
 public:
 
 HTMLOption( sal_uInt16 nTyp, const OUString rToken, const OUString 
rValue );
 
-// der Name der Option ...
-sal_uInt16 GetToken() const { return nToken; }  // ... als Enum
-const OUString GetTokenString() const { return aToken; } // ... als String
+// name of the option...
+sal_uInt16 GetToken() const { return nToken; }  // ... as enum
+const OUString GetTokenString() const { return aToken; } // ... as string
 
-// der Wert der Option ...
-const OUString GetString() const { return aValue; }  // ... als String
+// value of the option ...
+const OUString GetString() const { return aValue; }  // ... as string
 
-sal_uInt32 GetNumber() const;   // ... als Zahl
-sal_Int32 GetSNumber() const;   // ... als Zahl
-void GetNumbers( std::vectorsal_uInt32 rNumbers,  // 
... als Zahlen
+sal_uInt32 GetNumber() const;   // ... as number
+sal_Int32 GetSNumber() const;   // ... as number
+void GetNumbers( std::vectorsal_uInt32 rNumbers,  // 
... as numbers
  bool bSpaceDelim=false ) const;
-void GetColor( Color ) const;  // ... als Farbe
+void GetColor( Color ) const;  // ... as color
 
-// ... als Enum pOptEnums ist ein HTMLOptionEnum-Array
+// ... as enum; pOptEnums is an HTMLOptionEnum array
 sal_uInt16 GetEnum( const HTMLOptionEnum *pOptEnums,
 sal_uInt16 nDflt=0 ) const;
 bool GetEnum( sal_uInt16 rEnum, const HTMLOptionEnum *pOptEnums ) const;
 
-// ... und als ein par spezielle Enums
+// ... and as a few special enums
 HTMLInputType GetInputType() const; // INPUT TYPE=...
 HTMLTableFrame GetTableFrame() const;   // TABLE FRAME=...
 HTMLTableRules GetTableRules() const;   // TABLE RULES=...
@@ -123,37 +123,37 @@ typedef ::boost::ptr_vectorHTMLOption HTMLOptions;
 class SVT_DLLPUBLIC HTMLParser : public SvParser
 {
 private:
-mutable HTMLOptions maOptions; // die Optionen des Start-Tags
+mutable HTMLOptions maOptions; // options of the start tag
 
-bool bNewDoc: 1;// neues Doc lesen ?
-bool bIsInHeader: 1;// scanne Header-Bereich
-bool bIsInBody  : 1;// scanne Body-Bereich
-bool bReadListing   : 1;// Lese Listings
-bool bReadXMP   : 1;// Lese XMP
-bool bReadPRE   : 1;// Lese preformatted Text
-bool bReadTextArea  : 1;// Lese TEXTAREA
-bool bReadScript: 1;// Lesen von SCRIPT
-bool bReadStyle : 1;// Lesen von STYLE
-bool bEndTokenFound : 1;// /SCRIPT oder /STYLE gefunden
+bool bNewDoc: 1;// read new Doc?
+bool bIsInHeader: 1;// scan header section
+bool 

[Bug 39468] translate German comments, removing redundant ones

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39468

--- Comment #160 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Michael Weghorn committed a patch related to this issue.
It has been pushed to master:

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

fdo#39468 translate German comments

It will be available in 4.5.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 on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: ios/experimental

2014-12-20 Thread Tor Lillqvist
 ios/experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj/project.pbxproj | 
   8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 6446688fc9965fa55bf8cd253f0476b9fffe1dc3
Author: Tor Lillqvist t...@collabora.com
Date:   Sat Dec 20 11:25:25 2014 +0200

Bump ICU version

Change-Id: I7e871a6a4f538598d0af8bf3e5638292034c7349

diff --git 
a/ios/experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj/project.pbxproj 
b/ios/experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj/project.pbxproj
index 1805751..1b418bb 100644
--- 
a/ios/experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj/project.pbxproj
+++ 
b/ios/experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj/project.pbxproj
@@ -7,7 +7,7 @@
objects = {
 
 /* Begin PBXBuildFile section */
-   BE03BF9318F9A7CC00620DC7 /* icudt53l.dat in Resources */ = {isa 
= PBXBuildFile; fileRef = BE03BF9218F9A7CC00620DC7 /* icudt53l.dat */; };
+   BE03BF9318F9A7CC00620DC7 /* icudt54l.dat in Resources */ = {isa 
= PBXBuildFile; fileRef = BE03BF9218F9A7CC00620DC7 /* icudt54l.dat */; };
BE55B06D18D87CC600950228 /* DocumentTableViewController.m in 
Sources */ = {isa = PBXBuildFile; fileRef = BE55B06C18D87CC600950228 /* 
DocumentTableViewController.m */; };
BE82BD7618218E2E00A447B5 /* Foundation.framework in Frameworks 
*/ = {isa = PBXBuildFile; fileRef = BE82BD7518218E2E00A447B5 /* 
Foundation.framework */; };
BE82BD7818218E2E00A447B5 /* CoreGraphics.framework in 
Frameworks */ = {isa = PBXBuildFile; fileRef = BE82BD7718218E2E00A447B5 /* 
CoreGraphics.framework */; };
@@ -39,7 +39,7 @@
 
 /* Begin PBXFileReference section */
BE03BF9118F9648F00620DC7 /* udata.cpp */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = udata.cpp; 
path = ../../../workdir/UnpackedTarball/icu/source/common/udata.cpp; sourceTree 
= group; };
-   BE03BF9218F9A7CC00620DC7 /* icudt53l.dat */ = {isa = 
PBXFileReference; lastKnownFileType = file; name = icudt53l.dat; path = 
../../../../workdir/UnpackedTarball/icu/source/data/in/icudt53l.dat; sourceTree 
= group; };
+   BE03BF9218F9A7CC00620DC7 /* icudt54l.dat */ = {isa = 
PBXFileReference; lastKnownFileType = file; name = icudt54l.dat; path = 
../../../../workdir/UnpackedTarball/icu/source/data/in/icudt54l.dat; sourceTree 
= group; };
BE03BF9518FC1A1C00620DC7 /* xdictionary.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = 
xdictionary.cxx; path = ../../../i18npool/source/breakiterator/xdictionary.cxx; 
sourceTree = group; };
BE0898E81860D42B0021A679 /* brand.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brand.cxx; 
path = ../../../vcl/source/app/brand.cxx; sourceTree = group; };
BE0898E91860D42B0021A679 /* dbggui.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbggui.cxx; 
path = ../../../vcl/source/app/dbggui.cxx; sourceTree = group; };
@@ -2241,7 +2241,7 @@
BEEEFDFE1860A82C00FBDE67 /* unorc */,
BEEE02D01860ABB700FBDE67 /* ure */,
BEEEF9691860A25400FBDE67 /* test1.odt */,
-   BE03BF9218F9A7CC00620DC7 /* icudt53l.dat */,
+   BE03BF9218F9A7CC00620DC7 /* icudt54l.dat */,
);
name = Resources;
path = TiledLibreOffice;
@@ -2307,7 +2307,7 @@
BEEEFE041860A89100FBDE67 /* rc in Resources */,
BEEEFE051860A89100FBDE67 /* services.rdb in 
Resources */,
BEEE02D21860ABDB00FBDE67 /* share in Resources 
*/,
-   BE03BF9318F9A7CC00620DC7 /* icudt53l.dat in 
Resources */,
+   BE03BF9318F9A7CC00620DC7 /* icudt54l.dat in 
Resources */,
BEEEFE061860A89100FBDE67 /* types.rdb in 
Resources */,
BEEEFE071860A89100FBDE67 /* unorc in Resources 
*/,
BEEE02D31860ABDB00FBDE67 /* ure in Resources */,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - sc/inc sc/source

2014-12-20 Thread Eike Rathke
 sc/inc/scmatrix.hxx  |2 
 sc/source/core/tool/scmatrix.cxx |   96 +--
 2 files changed, 53 insertions(+), 45 deletions(-)

New commits:
commit b5ab92248e80a3ff8869a7e731ab70a948531280
Author: Eike Rathke er...@redhat.com
Date:   Thu Dec 11 16:39:58 2014 +0100

resolved fdo#87237 propagate error values through matrix comparisons

Apparently introduced with 8e8b43a03e77dd251876c1de0ac06eeeb09192cd the
comparison results were stored as boolean values, effectively discarding
any infinite double values and error values encoded as NaN values.

(cherry picked from commit 3c405ff82fcc9f8f044833420485c54658064636)

Change-Id: I1fb6f46894a0bee02a37e28b7e6cc84f8c051f28
Reviewed-on: https://gerrit.libreoffice.org/13441
Reviewed-by: Markus Mohrhard markus.mohrh...@googlemail.com
Tested-by: Markus Mohrhard markus.mohrh...@googlemail.com

diff --git a/sc/inc/scmatrix.hxx b/sc/inc/scmatrix.hxx
index 1db1641..0833c4d 100644
--- a/sc/inc/scmatrix.hxx
+++ b/sc/inc/scmatrix.hxx
@@ -202,7 +202,7 @@ public:
 ScMatrix(SCSIZE nC, SCSIZE nR);
 ScMatrix(SCSIZE nC, SCSIZE nR, double fInitVal);
 
-ScMatrix( size_t nC, size_t nR, const std::vectorbool rInitVals );
+ScMatrix( size_t nC, size_t nR, const std::vectordouble rInitVals );
 
 /** Clone the matrix. */
 ScMatrix* Clone() const;
diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx
index 4f210a8..2e31ec8 100644
--- a/sc/source/core/tool/scmatrix.cxx
+++ b/sc/source/core/tool/scmatrix.cxx
@@ -69,51 +69,63 @@ typedef mdds::multi_type_matrixcustom_string_trait 
MatrixImplType;
 
 namespace {
 
-struct ElemEqualZero : public unary_functiondouble, bool
+struct ElemEqualZero : public unary_functiondouble, double
 {
-bool operator() (double val) const
+double operator() (double val) const
 {
-return val == 0.0;
+if (!::rtl::math::isFinite(val))
+return val;
+return val == 0.0 ? 1.0 : 0.0;
 }
 };
 
-struct ElemNotEqualZero : public unary_functiondouble, bool
+struct ElemNotEqualZero : public unary_functiondouble, double
 {
-bool operator() (double val) const
+double operator() (double val) const
 {
-return val != 0.0;
+if (!::rtl::math::isFinite(val))
+return val;
+return val != 0.0 ? 1.0 : 0.0;
 }
 };
 
-struct ElemGreaterZero : public unary_functiondouble, bool
+struct ElemGreaterZero : public unary_functiondouble, double
 {
-bool operator() (double val) const
+double operator() (double val) const
 {
-return val  0.0;
+if (!::rtl::math::isFinite(val))
+return val;
+return val  0.0 ? 1.0 : 0.0;
 }
 };
 
-struct ElemLessZero : public unary_functiondouble, bool
+struct ElemLessZero : public unary_functiondouble, double
 {
-bool operator() (double val) const
+double operator() (double val) const
 {
-return val  0.0;
+if (!::rtl::math::isFinite(val))
+return val;
+return val  0.0 ? 1.0 : 0.0;
 }
 };
 
-struct ElemGreaterEqualZero : public unary_functiondouble, bool
+struct ElemGreaterEqualZero : public unary_functiondouble, double
 {
-bool operator() (double val) const
+double operator() (double val) const
 {
-return val = 0.0;
+if (!::rtl::math::isFinite(val))
+return val;
+return val = 0.0 ? 1.0 : 0.0;
 }
 };
 
-struct ElemLessEqualZero : public unary_functiondouble, bool
+struct ElemLessEqualZero : public unary_functiondouble, double
 {
-bool operator() (double val) const
+double operator() (double val) const
 {
-return val = 0.0;
+if (!::rtl::math::isFinite(val))
+return val;
+return val = 0.0 ? 1.0 : 0.0;
 }
 };
 
@@ -122,7 +134,7 @@ class CompareMatrixElemFunc : 
std::unary_functionMatrixImplType::element_block_
 {
 static _Comp maComp;
 
-std::vectorbool maNewMatValues;
+std::vectordouble maNewMatValues; // double instead of bool to 
transport error values
 size_t mnRow;
 size_t mnCol;
 public:
@@ -144,13 +156,6 @@ public:
 for (; it != itEnd; ++it)
 {
 double fVal = *it;
-if (!rtl::math::isFinite(fVal))
-{
-/* FIXME: this silently skips an error instead of 
propagating it! */
-maNewMatValues.push_back(false);
-continue;
-}
-
 maNewMatValues.push_back(maComp(fVal));
 }
 }
@@ -172,7 +177,7 @@ public:
 case mdds::mtm::element_empty:
 default:
 // Fill it with false.
-maNewMatValues.resize(maNewMatValues.size() + node.size, 
false);
+maNewMatValues.resize(maNewMatValues.size() + node.size, 0.0);
 }
 

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

2014-12-20 Thread Adolfo Jayme Barrientos
 sc/source/ui/src/condformatdlg.src |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 210976082b2b2eea2db680d9dd8b49f4a0400319
Author: Adolfo Jayme Barrientos fit...@ubuntu.com
Date:   Sat Dec 13 16:28:53 2014 -0600

fix typo in translatable string

Change-Id: Idf13d1dd35811a94100aa824f310006c2fd1b82f
Reviewed-on: https://gerrit.libreoffice.org/13467
Reviewed-by: Markus Mohrhard markus.mohrh...@googlemail.com
Tested-by: Markus Mohrhard markus.mohrh...@googlemail.com

diff --git a/sc/source/ui/src/condformatdlg.src 
b/sc/source/ui/src/condformatdlg.src
index 4fe90cd..68e91e9 100644
--- a/sc/source/ui/src/condformatdlg.src
+++ b/sc/source/ui/src/condformatdlg.src
@@ -236,7 +236,7 @@ Control RID_COND_ENTRY
 {
 Pos = MAP_APPFONT( 120, 62 );
 Size = MAP_APPFONT( 60, 14 );
-Text [ en-US ] = More options ...;
+Text [ en-US ] = More Options...;
 };
 ListBox LB_DATE_TYPE
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - solenv/gbuild

2014-12-20 Thread Christian Lohmaier
 solenv/gbuild/Extension.mk |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 4ddd39181a9bc75eb63e47903a4c7b23eb3ab6bd
Author: Christian Lohmaier lohmaier+libreoff...@googlemail.com
Date:   Thu Dec 18 15:59:51 2014 +0100

avoid exceeding commandline limits

don't use zip -@ to read from stdin, as that expects one file per line
also zip doesn't like the dos-lineend, so strip that using tr

Change-Id: Ib5c9040a66390119aa7a46225f2d0c8f635bf39a
(cherry picked from commit d1cf36265d25ddee11e787c4c83692163b66b06b)
Reviewed-on: https://gerrit.libreoffice.org/13526
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Tested-by: Miklos Vajna vmik...@collabora.co.uk

diff --git a/solenv/gbuild/Extension.mk b/solenv/gbuild/Extension.mk
index fc6e6b7..a314003 100644
--- a/solenv/gbuild/Extension.mk
+++ b/solenv/gbuild/Extension.mk
@@ -104,9 +104,10 @@ $(call gb_Extension_get_target,%) : \
$(if $(LICENSE),cp -f $(LICENSE) $(call 
gb_Extension_get_rootdir,$*)/registration ) \
$(if $(and $(gb_Extension_TRANS_LANGS),$(DESCRIPTION)),cp 
$(foreach lang,$(gb_Extension_TRANS_LANGS),$(call 
gb_Extension_get_workdir,$*)/description-$(lang).txt) $(call 
gb_Extension_get_rootdir,$*) ) \
cd $(call gb_Extension_get_rootdir,$*)  \
+   ZIPFILES=$(call var2file,$(shell $(gb_MKTEMP)),500,$(sort 
$(FILES)))  \
$(gb_Extension_ZIPCOMMAND) -rX --filesync --must-match \
$(call gb_Extension_get_target,$*) \
-   $(sort $(FILES)))
+   `cat $${ZIPFILES} | tr -d '\r'`  rm $${ZIPFILES})
 
 # set file list and location of manifest and description files
 # register target and clean target
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: undefined reference to non-virtual thunk

2014-12-20 Thread Miklos Vajna
Hi Kostas,

On Tue, Dec 16, 2014 at 09:22:33AM +0200, Kostas Tamateas 
ktamat...@dataways.gr wrote:
 Hello everyone,
 
 I'm trying to build libreoffice-4.3.41 sources.
 My system is a Debian distribution 32-bit with gcc 4.9.1 and my configure is 
 this:
 
 ./autogen.sh --enable-release-build --enable-mergelibs=yes --without-java 
 --without-junit --without-doxygen --disable-gconf --disable-firebird-sdbc 
 --disable-postgresql-sdbc --disable-collada --disable-dbus --disable-gtk 
 --disable-randr --disable-gltf --disable-liblangtag --disable-gstreamer 
 --disable-kdeab --disable-tdeab  --disable-systray --disable-coinmp 
 --disable-lpsolve --disable-sdremote --disable-cve-tests --disable-orcus 
 --disable-graphite --disable-odk --disable-cups --with-system-libs 
 --without-boost-date-time --without-boost-iostreams --disable-pdfimport 
 --disable-opengl --disable-opencl --disable-gstreamer-0-10 --with-webdav=neon
 
 After long time I get this message:
 
 /libreoffice-4.3.4.1/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
 In function 
 `FmXGridControl::createPeer(com::sun::star::uno::Referencecom::sun::star::awt::XToolkit
  const, com::sun::star::uno::Referencecom::sun::star::awt::XWindowPeer 
 const)':
 fmgridif.cxx:(.text+0x87dc): undefined reference to `non-virtual thunk to 
 WindowListenerMultiplexer::acquire()'
 fmgridif.cxx:(.text+0x8837): undefined reference to `non-virtual thunk to 
 FocusListenerMultiplexer::acquire()'
 fmgridif.cxx:(.text+0x8892): undefined reference to `non-virtual thunk to 
 KeyListenerMultiplexer::acquire()'
 fmgridif.cxx:(.text+0x88ed): undefined reference to `non-virtual thunk to 
 MouseListenerMultiplexer::acquire()'
 fmgridif.cxx:(.text+0x8948): undefined reference to `non-virtual thunk to 
 MouseMotionListenerMultiplexer::acquire()'
 fmgridif.cxx:(.text+0x89a3): undefined reference to `non-virtual thunk to 
 PaintListenerMultiplexer::acquire()'
 collect2: error: ld returned 1 exit status
 
 Is a possible way to fix that problem ?

Is there a reason you use custom autogen switches? Can you try without
them, especially without --enable-mergelibs=yes? The more custom
switches you use, the more you're on your own.

Regards,

Miklos


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


internal openldap build fails when exporting FLAGS

2014-12-20 Thread Maarten Hoes
Hi,


For lcov code coverage purposes, I have to build libreoffice with the
following FLAGS set and exported :

LDFLAGS='-fprofile-arcs' CFLAGS='-fprofile-arcs -ftest-coverage'
CXXFLAGS='-fprofile-arcs -ftest-coverage' CPPFLAGS='-fprofile-arcs
-ftest-coverage'
export LDFLAGS CFLAGS CXXFLAGS CPPFLAGS

And then proceed with

./autogen.sh --enable-python=internal --disable-online-update
--without-system-libs --without-system-headers
make build-nocheck

I run into a build error of the internal openldap version, with undefined
references to  '__gcov_'. This shouldnt happen when setting
FLAGS+='-fprofile-arcs -ftest-coverage' ... But it looks like '-lgcov' isnt
passed to the linker properly (which should happen by setting
LDFLAGS='-fprofile-arcs'). It appears that the FLAGS arent being passed
down correctly in here :

external/openldap/ExternalProject_openldap.mk

Where at multiple points it appears that all current
CFLAGS/CPPFLAGS/LDFLAGS are overwritten with entries like this:

LDFLAGS = foo
CPPFLAGS= bar

instead of something like this

LDFLAGS=$(LDFLAGS) foo
CPPFLAGS=$(CPPFLAGS) bar

It seems easy enough to modify, but I cant figure out if this was done on
purpose for some reason, or if it can be modified without causing issues ?
Perhaps only the (last) line with LDFLAGS can/needs to be changed, and the
other FLAGS need to be left as they are ? For me, internal openldap builds
without issues when making the modifications (see attached diff).


All thoughts and comments are more than appreciated,



- Maarten
Configuring OpenLDAP 2.4.31-Release ...
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking configure arguments... configure: WARNING: slapd disabled, ignoring 
--enable-bdb argument
configure: WARNING: slapd disabled, ignoring --enable-hdb argument
configure: WARNING: slapd disabled, ignoring --enable-mdb argument
configure: WARNING: slapd disabled, ignoring --enable-monitor argument
configure: WARNING: slapd disabled, ignoring --enable-relay argument
configure: WARNING: slapd disabled, ignoring --enable-syncprov argument
done
checking for style of include used by make... GNU
checking for gcc... /usr/bin/ccache gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /usr/bin/ccache gcc accepts -g... yes
checking for /usr/bin/ccache gcc option to accept ISO C89... none needed
checking dependency style of /usr/bin/ccache gcc... none
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ld used by /usr/bin/ccache gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... nm
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking how to run the C preprocessor... /usr/bin/ccache gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking the maximum length of command line arguments... 32768
checking command to parse nm output from /usr/bin/ccache gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if /usr/bin/ccache gcc static flag  works... yes
checking if /usr/bin/ccache gcc supports -fno-rtti -fno-exceptions... no
checking for /usr/bin/ccache gcc option to produce PIC... -fPIC
checking if /usr/bin/ccache gcc PIC flag -fPIC works... yes
checking if /usr/bin/ccache gcc supports -c -o file.o... yes
checking whether the /usr/bin/ccache gcc linker (/usr/bin/ld -m elf_x86_64) 
supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... no
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... 

[Libreoffice-commits] libvisio.git: src/test

2014-12-20 Thread Miklos Vajna
 src/test/importtest.cpp |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 9f3264e596c9ffb9d690e69cfe8c86bc103885b1
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Dec 20 12:48:25 2014 +0100

VSD: test Creation/ModifiedTime import

Change-Id: I5e0726cf8fecd7ec88beb4f338b3fad5c656fb5c

diff --git a/src/test/importtest.cpp b/src/test/importtest.cpp
index 445bfe8..0e83ed2 100644
--- a/src/test/importtest.cpp
+++ b/src/test/importtest.cpp
@@ -157,6 +157,9 @@ void ImportTest::testVsdMetadataTitleUtf8()
   m_doc = parse(fdo86729-utf8.vsd, m_buffer);
   // Test the case when the string is UTF-8 encoded already in the file.
   assertXPath(m_doc, /document/setDocumentMetaData, title, 
mytitle\xC3\xA9\xC3\xA1\xC5\x91\xC5\xB1);
+  // Test dcterms:created and dcterms:modified.
+  assertXPath(m_doc, /document/setDocumentMetaData, creation-date, 
2014-11-26T09:24:56Z);
+  assertXPath(m_doc, /document/setDocumentMetaData, date, 
2014-11-26T09:24:56Z);
 }
 
 CPPUNIT_TEST_SUITE_REGISTRATION(ImportTest);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 4 commits - include/svx svx/source sw/inc sw/source

2014-12-20 Thread Miklos Vajna
 include/svx/svdobj.hxx  |2 +-
 include/svx/svdogrp.hxx |2 ++
 include/svx/svdpage.hxx |4 ++--
 svx/source/svdraw/svdogrp.cxx   |   12 
 svx/source/svdraw/svdpage.cxx   |   30 +++---
 sw/inc/fmtfsize.hxx |2 ++
 sw/source/core/docnode/nodedump.cxx |   11 +++
 sw/source/core/layout/atrfrm.cxx|   19 +++
 8 files changed, 56 insertions(+), 26 deletions(-)

New commits:
commit dc08157dff6d997b4e5b19c9496ddf54727ba26f
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Dec 20 12:41:03 2014 +0100

Factor out SwFmtFrmSize::dumpAsXml() from nodedump

Change-Id: Idcf24d40876230a0e34f2f816dfe414b4a143f53

diff --git a/sw/inc/fmtfsize.hxx b/sw/inc/fmtfsize.hxx
index 6bb75da..29598be 100644
--- a/sw/inc/fmtfsize.hxx
+++ b/sw/inc/fmtfsize.hxx
@@ -97,6 +97,8 @@ public:
 voidSetHeightPercentRelation ( sal_Int16 n ) { 
m_eHeightPercentRelation  = n; }
 voidSetWidthPercent ( sal_uInt8 n ) { m_nWidthPercent  = n; }
 voidSetWidthPercentRelation ( sal_Int16 n ) { m_eWidthPercentRelation  
= n; }
+
+void dumpAsXml(struct _xmlTextWriter* pWriter) const;
 };
 
 inline const SwFmtFrmSize SwAttrSet::GetFrmSize(bool bInP) const
diff --git a/sw/source/core/docnode/nodedump.cxx 
b/sw/source/core/docnode/nodedump.cxx
index c0cda75..7d18b65 100644
--- a/sw/source/core/docnode/nodedump.cxx
+++ b/sw/source/core/docnode/nodedump.cxx
@@ -426,6 +426,9 @@ void lcl_dumpSfxItemSet(WriterHelper writer, const 
SfxItemSet* pSet)
 case RES_CNTNT:
 static_castconst SwFmtCntnt*(pItem)-dumpAsXml(writer);
 break;
+case RES_FRM_SIZE:
+static_castconst SwFmtFrmSize*(pItem)-dumpAsXml(writer);
+break;
 default: bDone = false; break;
 }
 if (bDone)
@@ -440,14 +443,6 @@ void lcl_dumpSfxItemSet(WriterHelper writer, const 
SfxItemSet* pSet)
 boost::optionalOString oValue;
 switch (pItem-Which())
 {
-case RES_FRM_SIZE:
-{
-pWhich = frame size;
-const SwFmtFrmSize* pSize = static_castconst 
SwFmtFrmSize*(pItem);
-oValue = height size type:  + 
OString::number(pSize-GetHeightSizeType()) + , height:  + 
OString::number(pSize-GetHeight())
-+ , width size type:  + 
OString::number(pSize-GetWidthSizeType()) + , width:  + 
OString::number(pSize-GetWidth());
-break;
-}
 case RES_VERT_ORIENT:
 {
 pWhich = frame vertical orientation;
diff --git a/sw/source/core/layout/atrfrm.cxx b/sw/source/core/layout/atrfrm.cxx
index dbf0caa..79517f2 100644
--- a/sw/source/core/layout/atrfrm.cxx
+++ b/sw/source/core/layout/atrfrm.cxx
@@ -411,6 +411,25 @@ bool SwFmtFrmSize::PutValue( const uno::Any rVal, 
sal_uInt8 nMemberId )
 return bRet;
 }
 
+void SwFmtFrmSize::dumpAsXml(xmlTextWriterPtr pWriter) const
+{
+xmlTextWriterStartElement(pWriter, BAD_CAST(swFmtFrmSize));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(whichId), 
BAD_CAST(OString::number(Which()).getStr()));
+
+std::stringstream aSize;
+aSize  m_aSize;
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(size), 
BAD_CAST(aSize.str().c_str()));
+
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(eFrmHeightType), 
BAD_CAST(OString::number(m_eFrmHeightType).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(eFrmWidthType), 
BAD_CAST(OString::number(m_eFrmWidthType).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(nWidthPercent), 
BAD_CAST(OString::number(m_nWidthPercent).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(eWidthPercentRelation), 
BAD_CAST(OString::number(m_eWidthPercentRelation).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(nHeightPercent), 
BAD_CAST(OString::number(m_nHeightPercent).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(eHeightPercentRelation), 
BAD_CAST(OString::number(m_eHeightPercentRelation).getStr()));
+
+xmlTextWriterEndElement(pWriter);
+}
+
 // Partially implemented inline in hxx
 SwFmtFillOrder::SwFmtFillOrder( SwFillOrder nFO )
 : SfxEnumItem( RES_FILL_ORDER, sal_uInt16(nFO) )
commit b1e0d30e6adaa1bef2b0e923354ce4e5f82ae707
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Dec 20 12:20:50 2014 +0100

Add SdrObjGroup::dumpAsXml() to show contents of group shapes

Change-Id: I8b713cbd64f91ad62d06ef57d790ac4e54e37315

diff --git a/include/svx/svdobj.hxx b/include/svx/svdobj.hxx
index 1502a4f..fd1f56f 100644
--- a/include/svx/svdobj.hxx
+++ b/include/svx/svdobj.hxx
@@ -966,7 +966,7 @@ public:
 
 OString stringify() const;
 
-void dumpAsXml(struct _xmlTextWriter* pWriter) const;
+virtual void dumpAsXml(struct _xmlTextWriter* pWriter) const;
 
 protected:
 // Sets a new UNO shape
diff --git 

[Bug 83795] Add UI for Wearable devices to the Impress Remote for Android

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83795

--- Comment #2 from foo.stra...@gmail.com ---
I'm interested at working on that.It would be my first involvement on both
LibreOffice and Android wear so I'm not very confident,am I supposed to assign
it to my self and start working or should I first check if i am able to handle
it and then assign?

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


[Bug 83795] Add UI for Wearable devices to the Impress Remote for Android

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83795

--- Comment #3 from foo.stra...@gmail.com ---
(In reply to foo.stratos from comment #2)
 I'm interested at working on that.It would be my first involvement on both
 LibreOffice and Android wear so I'm not very confident,am I supposed to
 assign it to my self and start working or should I first check if i am able
 to handle it and then assign?

I researched it and I believe I can handle it.Working on it.

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


[Bug 83795] Add UI for Wearable devices to the Impress Remote for Android

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83795

foo.stra...@gmail.com changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |foo.stra...@gmail.com
   |desktop.org |

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


[ANN] libabw 0.1.1 has been released

2014-12-20 Thread David Tardon
List of changes:

- Use symbol visibility on Linux. The library only exports the two public
  functions now.
- Handle text language.
- Honor global setting of writing mode.
- Handle basic document metadata.
- Handle headings.
- Fix the loss of text formatting attributes that would happen in certain
  cases.
- Several other smaller changes and improvements.

Home page: https://wiki.documentfoundation.org/DLP/Libraries/libabw
Download from: http://dev-www.libreoffice.org/src/libabw/

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


[Bug 87003] Kill BOOST_FOREACH on master and use C++11s range-based for() loops instead

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87003

Pieter Adriaensen pieter...@gmail.com changed:

   What|Removed |Added

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

--- Comment #3 from Pieter Adriaensen pieter...@gmail.com ---
Assigned it to myself

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


[Libreoffice-commits] core.git: dtrans/source filter/source include/osl include/rtl offapi/com sal/osl sal/qa svtools/source vcl/inc vcl/source

2014-12-20 Thread Julien Nabet
 dtrans/source/win32/dnd/source.cxx   |2 +-
 filter/source/graphicfilter/idxf/dxfgrprd.cxx|2 +-
 include/osl/thread.h |4 ++--
 include/rtl/process.h|4 ++--
 offapi/com/sun/star/deployment/XExtensionManager.idl |2 +-
 sal/osl/unx/thread.cxx   |2 +-
 sal/qa/helper/gcov/deprecated.txt|4 ++--
 sal/qa/osl/process/osl_Thread.cxx|2 +-
 svtools/source/contnr/fileview.cxx   |2 +-
 vcl/inc/sft.hxx  |6 +++---
 vcl/source/filter/wmf/wmfwr.hxx  |2 +-
 11 files changed, 16 insertions(+), 16 deletions(-)

New commits:
commit b63571f510793376a334d346974d4d0d73b9a0ff
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat Dec 20 16:39:24 2014 +0100

Typos

Change-Id: I3475be796cf2655d9b619b86c9686aeef4b97b82

diff --git a/dtrans/source/win32/dnd/source.cxx 
b/dtrans/source/win32/dnd/source.cxx
index d7907f5..2728aed 100644
--- a/dtrans/source/win32/dnd/source.cxx
+++ b/dtrans/source/win32/dnd/source.cxx
@@ -99,7 +99,7 @@ void DragSource::StartDragImpl(
 
 // The SourceContext class administers the XDragSourceListener s and
 // fires events to them. An instance only exists in the scope of this
-// functions. However, the drag and drop operation causes callbacks
+// function. However, the drag and drop operation causes callbacks
 // to the IDropSource interface implemented in this class (but only
 // while this function executes). The source context is also used
 // in DragSource::QueryContinueDrag.
diff --git a/filter/source/graphicfilter/idxf/dxfgrprd.cxx 
b/filter/source/graphicfilter/idxf/dxfgrprd.cxx
index 0d79682..ecba39f 100644
--- a/filter/source/graphicfilter/idxf/dxfgrprd.cxx
+++ b/filter/source/graphicfilter/idxf/dxfgrprd.cxx
@@ -27,7 +27,7 @@
 
 
 // we use an own ReadLine function, because Stream::ReadLine stops if
-// a 0-sign occurs; this functions converts 0-signs to blanks and reads
+// a 0-sign occurs; this function converts 0-signs to blanks and reads
 // a complete line until a cr/lf is found
 
 OString DXFReadLine(SvStream rIStm)
diff --git a/include/osl/thread.h b/include/osl/thread.h
index 7c2dd3c..0a8eb4c 100644
--- a/include/osl/thread.h
+++ b/include/osl/thread.h
@@ -62,7 +62,7 @@ typedef sal_uInt32 oslThreadIdentifier;
 typedef void* oslThreadKey;
 
 /** Create the thread, using the function-ptr pWorker as
-its main (worker) function. This functions receives in
+its main (worker) function. This function receives in
 its void* parameter the value supplied by pThreadData.
 Once the OS-structures are initialized,the thread starts
 running.
@@ -71,7 +71,7 @@ typedef void* oslThreadKey;
 SAL_DLLPUBLIC oslThread SAL_CALL osl_createThread(oslWorkerFunction pWorker, 
void* pThreadData);
 
 /** Create the thread, using the function-ptr pWorker as
-its main (worker) function. This functions receives in
+its main (worker) function. This function receives in
 its void* parameter the value supplied by pThreadData.
 The thread will be created, but it won't start running.
 To wake-up the thread, use resume().
diff --git a/include/rtl/process.h b/include/rtl/process.h
index bd55a3a..d393b5c 100644
--- a/include/rtl/process.h
+++ b/include/rtl/process.h
@@ -46,7 +46,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_getGlobalProcessId( sal_uInt8 
*pTargetUUID );
 
 /** Get the nArg-th command-line argument passed to the main-function of this 
process.
 
-This functions differs from osl_getCommandArg() in filtering any bootstrap 
values
+This function differs from osl_getCommandArg() in filtering any bootstrap 
values
 given by command args, that means that all arguments starting with -env: 
will be
 ignored by this function.
 
@@ -60,7 +60,7 @@ SAL_DLLPUBLIC oslProcessError SAL_CALL 
rtl_getAppCommandArg(sal_uInt32 nArg, rtl
 
 /** Returns the number of command line arguments at process start.
 
-This functions differs from osl_getCommandArg() in filtering any bootstrap 
values
+This function differs from osl_getCommandArg() in filtering any bootstrap 
values
 given by command args, that means that all arguments starting with -env: 
will be
 ignored by this function.
 
diff --git a/offapi/com/sun/star/deployment/XExtensionManager.idl 
b/offapi/com/sun/star/deployment/XExtensionManager.idl
index d6c92ce..f7bb93f 100644
--- a/offapi/com/sun/star/deployment/XExtensionManager.idl
+++ b/offapi/com/sun/star/deployment/XExtensionManager.idl
@@ -304,7 +304,7 @@ interface XExtensionManager
 need to be displayed, and which are installed with the corresponding 
option,
 are also not returned.
 
-Extensions returned by this functions are not returned by
+Extensions returned by these functions are not returned by
 

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

2014-12-20 Thread Julien Nabet
 include/svx/view3d.hxx|2 +-
 include/tools/pathutils.hxx   |2 +-
 sw/source/ui/vba/vbafield.cxx |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 26f4e226dad0e7776b7243d9c7ef354ca9dfd50a
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat Dec 20 16:42:04 2014 +0100

Typo: paremeter/paramater=parameter

Change-Id: I26993b9cf01408803e0353e93079e56d1f57f589

diff --git a/include/svx/view3d.hxx b/include/svx/view3d.hxx
index faf43db..6cb641e 100644
--- a/include/svx/view3d.hxx
+++ b/include/svx/view3d.hxx
@@ -43,7 +43,7 @@ class SVX_DLLPUBLIC E3dView : public SdrView
 protected:
 E3dDefaultAttributesa3DDefaultAttr;
 MouseEvent  aMouseEvent;// The 
parameters of the last Events (Mouse, Keyboard)
-Color   aDefaultLightColor; // The 
paramaters for the last colors
+Color   aDefaultLightColor; // The 
parameters for the last colors
 Color   aDefaultAmbientColor;
 
 double  fDefaultScaleX; // Scaling
diff --git a/include/tools/pathutils.hxx b/include/tools/pathutils.hxx
index 6e61a29..666a250 100644
--- a/include/tools/pathutils.hxx
+++ b/include/tools/pathutils.hxx
@@ -50,7 +50,7 @@ WCHAR * filename(WCHAR * path);
 x might denote different directories).
 
 @param path
-An output paremeter taking the resulting path; must point at a valid
+An output parameter taking the resulting path; must point at a valid
 range of memory of size at least MAX_PATH.  If NULL is returned, the
 content is unspecified.
 @param frontBegin, frontEnd
diff --git a/sw/source/ui/vba/vbafield.cxx b/sw/source/ui/vba/vbafield.cxx
index 4c59b40..0011ea7 100644
--- a/sw/source/ui/vba/vbafield.cxx
+++ b/sw/source/ui/vba/vbafield.cxx
@@ -161,7 +161,7 @@ long SwVbaReadFieldParams::SkipToNextToken()
 
 // Output ppNext (if ppNext != 0) beginning of the search for the next 
parameter or 0
 
-// Return value: 0 if String-End reached, otherwise begin of the paramater or 
the string
+// Return value: 0 if String-End reached, otherwise begin of the parameter or 
the string
 
 sal_Int32 SwVbaReadFieldParams::FindNextStringPiece(const sal_Int32 nStart)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: offapi/com

2014-12-20 Thread Julien Nabet
 offapi/com/sun/star/deployment/XExtensionManager.idl |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit a57eb20ae9755c6cfb3e7b0308c47ecb6ae4a5fa
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat Dec 20 16:45:53 2014 +0100

Typo: XExtensionManger=XExtensionManager

Change-Id: I00a07684a7d6a533c4a3f80ec738a8ce02117d0a

diff --git a/offapi/com/sun/star/deployment/XExtensionManager.idl 
b/offapi/com/sun/star/deployment/XExtensionManager.idl
index f7bb93f..930c318 100644
--- a/offapi/com/sun/star/deployment/XExtensionManager.idl
+++ b/offapi/com/sun/star/deployment/XExtensionManager.idl
@@ -305,10 +305,10 @@ interface XExtensionManager
 are also not returned.
 
 Extensions returned by these functions are not returned by
-XExtensionManger::getDeployedExtension()
-XExtensionManger::getDeployedExtensions()
-XExtensionManger::getAllExtensions()
-XExtensionManger::getExtensionsWithSameIdentifier()
+XExtensionManager::getDeployedExtension()
+XExtensionManager::getDeployedExtensions()
+XExtensionManager::getAllExtensions()
+XExtensionManager::getExtensionsWithSameIdentifier()
 */
 sequenceXPackage getExtensionsWithUnacceptedLicenses(
 [in] string repository,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-12-20 Thread Julien Nabet
 include/jvmfwk/framework.h |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c1f4afcbf5a4eac22d330c7302ef5447d1e71dbf
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat Dec 20 16:50:40 2014 +0100

Typo: bootrap=bootstrap

Change-Id: Icf3202c3f3f733bf65c15503063903cb5322d593

diff --git a/include/jvmfwk/framework.h b/include/jvmfwk/framework.h
index 8421134..59ffb20 100644
--- a/include/jvmfwk/framework.h
+++ b/include/jvmfwk/framework.h
@@ -77,7 +77,7 @@ extern C {
 jar file then it can be referenced in the manifest file of the first jar. 
However,
 a user may add jars to the class path by using this API. If it becomes 
necessary
 to add files to the class path which is to be used by all users then one 
can use
-the bootrap parameter UNO_JAVA_JFW_CLASSPATH_URLS. The value contains of 
file URLs
+the bootstrap parameter UNO_JAVA_JFW_CLASSPATH_URLS. The value contains of 
file URLs
 which must be separated by spaces./p
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] libvisio.git: src/lib

2014-12-20 Thread David Tardon
 src/lib/libvisio_utils.cpp |1 +
 src/lib/libvisio_utils.h   |1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1ec587cab878f55b4552181f6a291e1b7c8d64e9
Author: David Tardon dtar...@redhat.com
Date:   Sat Dec 20 17:23:30 2014 +0100

use the right form of c header

Change-Id: I6cc11f41c84e47c1a49f5e553f1d067abd7ce79a

diff --git a/src/lib/libvisio_utils.cpp b/src/lib/libvisio_utils.cpp
index 90f1510..bd03e75 100644
--- a/src/lib/libvisio_utils.cpp
+++ b/src/lib/libvisio_utils.cpp
@@ -11,6 +11,7 @@
 #include string
 #include algorithm // std::count
 #include cstdarg
+#include cstdio
 #include VSDInternalStream.h
 #include libvisio_utils.h
 
diff --git a/src/lib/libvisio_utils.h b/src/lib/libvisio_utils.h
index ae84764..0836f4b 100644
--- a/src/lib/libvisio_utils.h
+++ b/src/lib/libvisio_utils.h
@@ -10,7 +10,6 @@
 #ifndef __LIBVISIO_UTILS_H__
 #define __LIBVISIO_UTILS_H__
 
-#include stdio.h
 #include VSDTypes.h
 
 #ifdef _MSC_VER
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [documentliberation-discuss] [ANN] libabw 0.1.1 has been released

2014-12-20 Thread David Tardon
Hi,

On Sat, Dec 20, 2014 at 05:44:50PM +0100, Hanno Böck wrote:
 Hi,
 
 I did a quick run with american fuzzy lop on libabw and it found the
 attached crasher.
 Attached both sample exposing segfault and asan/valgrind output. It's
 an invalid memory read access.

This has already been found by coverity, but thanks anyway.

 
 As here are a lot of people working on import filters: These are very
 suspectible to these type of memory access errors and they can often
 easily be found with fuzzing. You may wanna have a look at
 https://fuzzing-project.org

I know... I used zzuf on some of our libs in the past. And I have been
using afl since I discovered it 4-5 weeks ago. I have already fixed over
20 crashes/hangs in various libraries, but I still have got more to go
through.

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


Crash test update

2014-12-20 Thread Crashtest VM
New crashtest update available at 
http://dev-builds.libreoffice.org/crashtest/5537bb28ec2667018c101ad25bbbc9c52daaffb0/


exportCrashes.csv
Description: Binary data


importCrash.csv
Description: Binary data


validationErrors.csv
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 79641] LibreOffice 4.4 most annoying bugs

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79641

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 Depends on|75644   |

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


Minutes of the Design Hangout: 2014-12-17

2014-12-20 Thread Jan Holesovsky
* Present: Heiko, Jay, Kendy Steve, Stuart
 
* Completed Action Items:

+ Jay: Create a blog post to collect templates that we could
  pre-install.
  [ collected the categories, wrote up 2 paragraph for initial
announcement, awaiting feedback now ]
+ Thursday - feedback + send to the marketing ML
+ Monday / Tuesday - go live with the announcement
+ please feel free to update (Jay)
+ pending on the Marketing now - too many announcements ATM
 
* Pending Action Items:
 
+ Jay: Ask what is the plan with the templates on the new Extensions
  site
+ Jay: Send a mail to documentat...@global.libreoffice.org with the
  wiki page that collects changes in menus
+ Kendy: Collecting of the user information should be incremental,
  somewhere in the user's profile
+ Ahmed: Push the new Sifr icons he's done recently
+ Kendy: Talk to Milos wrt. 
https://bugs.freedesktop.org/show_bug.cgi?id=48622
+ Alex: Gnome 2.20-style 'a' icons  Gnome 3-style text line icons
+ Kendy: try to do a link to the Templates site for 4.4 - not too
  probable
  https://bugs.freedesktop.org/show_bug.cgi?id=85420
  https://bugs.freedesktop.org/attachment.cgi?id=108377
+ Samuel: Formulas and Navigator should open in the sidebar, not as
  a special window
  https://bugs.freedesktop.org/show_bug.cgi?id=85897
  
* UI changes integrated the last week:
 
+ Made (all) the dialogs that contain edit boxes resizable (Kendy)
+ Context menu crop activates interactive crop rather than crop
  dialog (Joel)
  https://bugs.freedesktop.org/show_bug.cgi?id=86627
+ Enable start from current slide and add its tango icons (Jay)
+ Swapping Yes/No order on Windows (Adolfo)
+ Icon / context menu entry for Format - Image (Jay)
 
* Last week's discussions that need a resolution:
 
+ Reassigning F11 to full screen (Jay)
  https://bugs.freedesktop.org/show_bug.cgi?id=83467
+ wanted to have this resolved - old report (Jay)
+ many people seem to be against that (Kendy)
+ let's not change it (Stuart)
+ it's a bit different to full-screen in Firefox anyway (Stuart)
+ consensus: close as WONTFIX

+ Start center not using last window size (Qubit)
  https://bugs.freedesktop.org/show_bug.cgi?id=75644
+ would need to check the code (Kendy)
+ I recall there is some forcing of size (at least) but not
  100% sure (Kendy)
+ the user expected that it would open according to the last
  edit of that document (Stuart)
+ unclear if the proposed change brings enough better usability (Kendy)
+ but definitely it's quite a lot of work (Kendy)
+ suggest to keep as it is (Kendy)
+ room for improvement (Stuart)
+ but would be invasive (Stuart)
+ cannot have the configuration in the file format (Stuart)
+ maybe only in the recent documents (Kendy)
+ conclusion: WONTFIX probably, patches to improve situation
  won't be rejected though :-)

+ INDEX function returns #VALUE error when optional arguments are
  omitted (Qubit)
  https://bugs.freedesktop.org/show_bug.cgi?id=71325
+ Calc guys taking over - more a technical problem (Jay)

+ Instant tooltips in start center (Jay)
  https://bugs.freedesktop.org/show_bug.cgi?id=73327
 + should be the system setting (Heiko)
 + there is a setting that also hides the tooltip (for
   accessibility) (Stuart)
 + wow - a stupid option - should be system's setting (Heiko)
 + we should remove that, and use whatever is in the system (Heiko)
 + but the start center should be visually appealing (Steve)
 + actually it would be possible to shorten the paths in some
   clever way (Kendy)
 + evaluate if the documents have different names, etc. (Kendy)
 + not many places where you can get the entire URL (Stuart)
 + so it is useful to have the URL there (Stuart)
 + agreed (Jay)
 + conclusion: Let's keep it as it is, because:
 + not good to mess with the system settings / do something
   different than what are the system's settings
 + URL's are useful

+ Was the colored 'X' button in start center replaced with grayscale
  ones on purpose (Jay)
  In 4.4 and master, the start center 'X' button seems suitable for
  sifr
 + probably Adolfo changed that? (Stuart)
 + the red cross was there because I did not have a better
   icon :-) (Kendy)
 + actually red means danger! stop! (Jay)
 + ah right, Firefox uses red too (Kendy)
AI   + conclusion: Sync with Adolfo if he's OK with using red (but
   the same style) (Jay)

+ Should addition of border around an image have padding or not (Jay, Joel)

[Libreoffice-commits] core.git: 4 commits - configure.ac writerfilter/inc writerfilter/source

2014-12-20 Thread Miklos Vajna
 configure.ac|2 +-
 writerfilter/inc/dmapper/DomainMapperFactory.hxx|8 ++--
 writerfilter/source/dmapper/DomainMapper.cxx|9 +++--
 writerfilter/source/dmapper/DomainMapper.hxx|7 ++-
 writerfilter/source/dmapper/domainmapperfactory.cxx |   15 +--
 writerfilter/source/filter/ImportFilter.cxx |   18 +-
 writerfilter/source/filter/RtfFilter.cxx|   16 +---
 7 files changed, 35 insertions(+), 40 deletions(-)

New commits:
commit 98a8553b4f4a9af6b985b7e9ea2ed45bc496a543
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Dec 20 20:24:02 2014 +0100

configure: repor - repo

Change-Id: I2b0d29f1fab7e81bb80f9023d609cde46d47ebe1

diff --git a/configure.ac b/configure.ac
index 276fe1c..02f5892 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12839,7 +12839,7 @@ place yourself in a working directory of you choice.
  [go to Start menu, click All Programs, click Visual Studio 2013, click 
Visual Studio Tools, double-click VS2013 x86 Native Tools Command Prompt or 
VS2013 x64 Native Tools Comand Prompt]
  set PATH=%PATH%;C:\Cygwin\bin
  [or Cygwin64, if that is what you have]
- cd path-to-make-repor-you-cloned-above
+ cd path-to-make-repo-you-cloned-above
  build_w32.bat --without-guile
 
 should result in a WinRel/gnumake.exe.
commit e02b2adbbff46678eb03c69ed36be2b47e512c71
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Dec 20 20:23:31 2014 +0100

Unused enumeration value

Change-Id: I82a1f902311fb5b1cb18460c40169cd93234bc88

diff --git a/writerfilter/inc/dmapper/DomainMapperFactory.hxx 
b/writerfilter/inc/dmapper/DomainMapperFactory.hxx
index 9fcd542..05cb9b5 100644
--- a/writerfilter/inc/dmapper/DomainMapperFactory.hxx
+++ b/writerfilter/inc/dmapper/DomainMapperFactory.hxx
@@ -27,7 +27,6 @@ namespace dmapper
 
 enum SourceDocumentType
 {
-DOCUMENT_DOC,
 DOCUMENT_OOXML,
 DOCUMENT_RTF
 };
commit 27992df5f3c1c51de667e21e6122246c20d4c235
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Dec 20 16:47:23 2014 +0100

writerfilter: clean up copypasted dmapper_logger start / end

Change-Id: Iacae41a32acec153b1db1e1a03b2f2913d114d9b

diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index 14c8c5f..e6cf4fe 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -192,6 +192,10 @@ DomainMapper::~DomainMapper()
 }
 
 delete m_pImpl;
+
+#ifdef DEBUG_WRITERFILTER
+dmapper_logger-endDocument();
+#endif
 }
 
 void DomainMapper::lcl_attribute(Id nName, Value  val)
diff --git a/writerfilter/source/dmapper/domainmapperfactory.cxx 
b/writerfilter/source/dmapper/domainmapperfactory.cxx
index bc59c4e..c39ede1 100644
--- a/writerfilter/source/dmapper/domainmapperfactory.cxx
+++ b/writerfilter/source/dmapper/domainmapperfactory.cxx
@@ -23,6 +23,16 @@ Stream::Pointer_t 
DomainMapperFactory::createMapper(css::uno::Referencecss::uno
 css::uno::Referencecss::text::XTextRange const xInsertTextRange,
 utl::MediaDescriptor rMediaDesc)
 {
+#ifdef DEBUG_WRITERFILTER
+OUString sURL = rMediaDesc.getUnpackedValueOrDefault( 
utl::MediaDescriptor::PROP_URL(), OUString() );
+::std::string sURLc = OUStringToOString(sURL, 
RTL_TEXTENCODING_ASCII_US).getStr();
+
+writerfilter::TagLogger::Pointer_t 
dmapper_logger(writerfilter::TagLogger::getInstance(DOMAINMAPPER));
+if (getenv(SW_DEBUG_WRITERFILTER))
+dmapper_logger-setFileName(sURLc);
+dmapper_logger-startDocument();
+#endif
+
 return Stream::Pointer_t(new DomainMapper(xContext, xInputStream, xModel, 
bRepairStorage, eDocumentType, xInsertTextRange, rMediaDesc));
 }
 
diff --git a/writerfilter/source/filter/ImportFilter.cxx 
b/writerfilter/source/filter/ImportFilter.cxx
index 474b79e..ed9e57d 100644
--- a/writerfilter/source/filter/ImportFilter.cxx
+++ b/writerfilter/source/filter/ImportFilter.cxx
@@ -34,7 +34,6 @@
 #include osl/process.h
 #endif
 
-#include resourcemodel/TagLogger.hxx
 #include oox/ole/olestorage.hxx
 #include oox/ole/vbaproject.hxx
 #include oox/helper/graphichelper.hxx
@@ -77,17 +76,6 @@ sal_Bool WriterFilter::filter( const uno::Sequence 
beans::PropertyValue  aDes
 if ( !xInputStream.is() )
 return sal_False;
 
-#ifdef DEBUG_WRITERFILTER
-OUString sURL = aMediaDesc.getUnpackedValueOrDefault( 
utl::MediaDescriptor::PROP_URL(), OUString() );
-::std::string sURLc = OUStringToOString(sURL, 
RTL_TEXTENCODING_ASCII_US).getStr();
-
-writerfilter::TagLogger::Pointer_t dmapper_logger
-(writerfilter::TagLogger::getInstance(DOMAINMAPPER));
-if (getenv(SW_DEBUG_WRITERFILTER))
-dmapper_logger-setFileName(sURLc);
-dmapper_logger-startDocument();
-#endif
-
 writerfilter::dmapper::SourceDocumentType eType = 

[Libreoffice-commits] core.git: download.lst external/libabw

2014-12-20 Thread David Tardon
 download.lst  |4 ++--
 external/libabw/UnpackedTarball_libabw.mk |4 
 external/libabw/libabw_quote.patch.1  |   11 ---
 3 files changed, 2 insertions(+), 17 deletions(-)

New commits:
commit bc4bbf802fd2729ec70cd33a143d7c4c856fa317
Author: David Tardon dtar...@redhat.com
Date:   Sat Dec 20 20:45:45 2014 +0100

upload libabw 0.1.1

Change-Id: Idbe25949adab4ac20613a4c14885d4b1a4c40775

diff --git a/download.lst b/download.lst
index 2bb91ca..fc2941a 100644
--- a/download.lst
+++ b/download.lst
@@ -1,5 +1,5 @@
-export ABW_MD5SUM := 9317e967c8fa8ff50e049744c4b33c87
-export ABW_TARBALL := libabw-0.1.0.tar.bz2
+export ABW_MD5SUM := 7a3815b506d064313ba309617b6f5a0b
+export ABW_TARBALL := libabw-0.1.1.tar.bz2
 export APACHE_COMMONS_CODEC_TARBALL := $(if $(filter TRUE,$(HAVE_JAVA6))\
   ,048751f3271906db5126ab76870444c4-commons-codec-1.9-src.zip\
   ,2e482c7567908d334785ce7d69ddfff7-commons-codec-1.6-src.tar.gz\
diff --git a/external/libabw/UnpackedTarball_libabw.mk 
b/external/libabw/UnpackedTarball_libabw.mk
index 70ac11f..6288b0e 100644
--- a/external/libabw/UnpackedTarball_libabw.mk
+++ b/external/libabw/UnpackedTarball_libabw.mk
@@ -11,8 +11,4 @@ $(eval $(call gb_UnpackedTarball_UnpackedTarball,libabw))
 
 $(eval $(call gb_UnpackedTarball_set_tarball,libabw,$(ABW_TARBALL)))
 
-$(eval $(call gb_UnpackedTarball_add_patches,libabw,\
-   external/libabw/libabw_quote.patch.1 \
-))
-
 # vim: set noet sw=4 ts=4:
diff --git a/external/libabw/libabw_quote.patch.1 
b/external/libabw/libabw_quote.patch.1
deleted file mode 100644
index 619351f..000
--- a/external/libabw/libabw_quote.patch.1
+++ /dev/null
@@ -1,11 +0,0 @@
 libabw/src/lib/Makefile.in.orig2014-06-01 21:15:14.64720 +0200
-+++ libabw/src/lib/Makefile.in 2014-06-01 21:15:24.86520 +0200
-@@ -716,7 +716,7 @@
- 
- $(top_builddir)/src/lib/tokenhash.h : $(top_builddir)/src/lib/tokens.gperf
-   $(GPERF) --compare-strncmp -C -m 20 
$(top_builddir)/src/lib/tokens.gperf \
--  | $(SED) -e s/(char\*)0/(char\*)0, 0/g  
$(top_builddir)/src/lib/tokenhash.h
-+  | $(SED) -e 's/(char\*)0/(char\*)0, 0/g'  
$(top_builddir)/src/lib/tokenhash.h
- 
- $(top_builddir)/src/lib/tokens.gperf : $(top_srcdir)/src/lib/tokens.txt 
gentoken.pl
-   perl $(top_srcdir)/src/lib/gentoken.pl $(top_srcdir)/src/lib/tokens.txt 
\
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: ucb/source uui/uiconfig

2014-12-20 Thread Adolfo Jayme Barrientos
 ucb/source/ucp/cmis/auth_provider.cxx |6 -
 uui/uiconfig/ui/authfallback.ui   |  122 --
 2 files changed, 76 insertions(+), 52 deletions(-)

New commits:
commit 7af4592c1dadbd960453289a94a6156d5c5d76bc
Author: Adolfo Jayme Barrientos fit...@ubuntu.com
Date:   Tue Dec 16 22:27:26 2014 -0600

onedrive: Improve fallback dialog and instructions

Reviewed on:
https://gerrit.libreoffice.org/13500

Change-Id: I95df1d1b5589f89bfaa48c0833d92e3225b497a6

diff --git a/ucb/source/ucp/cmis/auth_provider.cxx 
b/ucb/source/ucp/cmis/auth_provider.cxx
index 63e742f..97414f1 100644
--- a/ucb/source/ucp/cmis/auth_provider.cxx
+++ b/ucb/source/ucp/cmis/auth_provider.cxx
@@ -70,9 +70,9 @@ namespace cmis
 const char* /*username*/,
 const char* /*password*/ )
 {
-OUString instructions = Please open the following link in your 
browser and\n
-paste the code from the URL you have been redirected to\n
-in the box bellow. For example:\n
+OUString instructions = Open the following link in your browser and 
+paste the code from the URL you have been redirected to in the 
+box below. For example:\n
 
https://login.live.com/oauth20_desktop.srf?code=YOUR_CODElc=1033;;
 OUString url_oustr( url, strlen( url ), RTL_TEXTENCODING_UTF8 );
 const com::sun::star::uno::Reference 
diff --git a/uui/uiconfig/ui/authfallback.ui b/uui/uiconfig/ui/authfallback.ui
index 6e79a4c..a947ad4 100644
--- a/uui/uiconfig/ui/authfallback.ui
+++ b/uui/uiconfig/ui/authfallback.ui
@@ -1,80 +1,89 @@
 ?xml version=1.0 encoding=UTF-8?
+!-- Generated with glade 3.18.3 --
 interface
-  !-- interface-requires gtk+ 3.0 --
+  requires lib=gtk+ version=3.0/
   object class=GtkDialog id=AuthFallbackDlg
 property name=can_focusFalse/property
-property name=title translatable=yesOneDrive authentication 
code/property
+property name=border_width6/property
+property name=title translatable=yesOneDrive Authentication 
Code/property
 property name=default_width400/property
 property name=default_height270/property
-child
-  object class=GtkBox id=box
-property name=visibleTrue/property
+property name=type_hintdialog/property
+property name=skip_taskbar_hintTrue/property
+child internal-child=vbox
+  object class=GtkBox id=messagedialog-vbox
 property name=can_focusFalse/property
 property name=orientationvertical/property
-child
-  object class=GtkTextView id=instructions
-property name=visibleTrue/property
+property name=spacing12/property
+child internal-child=action_area
+  object class=GtkButtonBox id=messagedialog-action_area
 property name=can_focusFalse/property
-property name=pixels_below_lines4/property
-property name=editableFalse/property
-property name=cursor_visibleFalse/property
+property name=layout_styleend/property
+child
+  object class=GtkButton id=ok
+property name=labelgtk-ok/property
+property name=visibleTrue/property
+property name=can_focusTrue/property
+property name=can_defaultTrue/property
+property name=has_defaultTrue/property
+property name=receives_defaultTrue/property
+property name=use_stockTrue/property
+  /object
+  packing
+property name=expandFalse/property
+property name=fillTrue/property
+property name=position0/property
+  /packing
+/child
+child
+  object class=GtkButton id=cancel
+property name=labelgtk-cancel/property
+property name=visibleTrue/property
+property name=can_focusTrue/property
+property name=receives_defaultTrue/property
+property name=use_stockTrue/property
+  /object
+  packing
+property name=expandFalse/property
+property name=fillTrue/property
+property name=position1/property
+  /packing
+/child
   /object
   packing
 property name=expandFalse/property
 property name=fillTrue/property
+property name=pack_typeend/property
 property name=position0/property
   /packing
 /child
 child
-  object class=GtkEntry id=url
-property name=visibleTrue/property
-property name=can_focusFalse/property
-property name=invisible_char●/property
-property name=editableFalse/property
-  /object
-  packing
-property name=expandFalse/property
-property 

Re: internal openldap build fails when exporting FLAGS

2014-12-20 Thread Maarten Hoes
Hi,


I made the minimum amount of change I needed, and submitted a patch to
gerrit for review.

https://gerrit.libreoffice.org/13568

- Maarten



On Sat, Dec 20, 2014 at 12:23 PM, Maarten Hoes hoes.maar...@gmail.com
wrote:

 Hi,


 For lcov code coverage purposes, I have to build libreoffice with the
 following FLAGS set and exported :

 LDFLAGS='-fprofile-arcs' CFLAGS='-fprofile-arcs -ftest-coverage'
 CXXFLAGS='-fprofile-arcs -ftest-coverage' CPPFLAGS='-fprofile-arcs
 -ftest-coverage'
 export LDFLAGS CFLAGS CXXFLAGS CPPFLAGS

 And then proceed with

 ./autogen.sh --enable-python=internal --disable-online-update
 --without-system-libs --without-system-headers
 make build-nocheck

 I run into a build error of the internal openldap version, with undefined
 references to  '__gcov_'. This shouldnt happen when setting
 FLAGS+='-fprofile-arcs -ftest-coverage' ... But it looks like '-lgcov' isnt
 passed to the linker properly (which should happen by setting
 LDFLAGS='-fprofile-arcs'). It appears that the FLAGS arent being passed
 down correctly in here :

 external/openldap/ExternalProject_openldap.mk

 Where at multiple points it appears that all current
 CFLAGS/CPPFLAGS/LDFLAGS are overwritten with entries like this:

 LDFLAGS = foo
 CPPFLAGS= bar

 instead of something like this

 LDFLAGS=$(LDFLAGS) foo
 CPPFLAGS=$(CPPFLAGS) bar

 It seems easy enough to modify, but I cant figure out if this was done on
 purpose for some reason, or if it can be modified without causing issues ?
 Perhaps only the (last) line with LDFLAGS can/needs to be changed, and the
 other FLAGS need to be left as they are ? For me, internal openldap builds
 without issues when making the modifications (see attached diff).


 All thoughts and comments are more than appreciated,



 - Maarten


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


[Bug 47302] Adding a new field in Insert-Fields

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47302

Mike §chinagl librele...@gmx.de changed:

   What|Removed |Added

 CC||librele...@gmx.de

--- Comment #8 from Mike §chinagl librele...@gmx.de ---
This bug fix comes with LibreOffice 4.4 (release notes
https://wiki.documentfoundation.org/ReleaseNotes/4.4) 

New field: Page Title in Insert ▸ Field ▸ Page Title.

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


[no subject]

2014-12-20 Thread Gunther Weber

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


Re: [documentliberation-discuss] [ANN] libabw 0.1.1 has been released

2014-12-20 Thread alfieri morillo
|Excelent!!

 https://github.com/cyberthrone/
  https://launchpad.net/~alfierimorillo
  Ubuntu User number is # 35087
  Public profile linux for user #97
  alfieri.mori...@libreoffice-ve.net
  Web Master libreoffice-ve http://libreoffice-ve.org/ y Gimp-ve
http://gimp-ve.com/
  https://wiki.ubuntu.com/Alfierimorillo https://wiki.ubuntu.com/Alfieri
Morillo
 La universidad es el refugio donde reprimen las ideas. Prohibido pensar,
solo a repetir lo establecido sin pataleo.

2014-12-20 13:04 GMT-04:30 David Tardon dtar...@redhat.com:

 Hi,

 On Sat, Dec 20, 2014 at 05:44:50PM +0100, Hanno Böck wrote:
  Hi,
 
  I did a quick run with american fuzzy lop on libabw and it found the
  attached crasher.
  Attached both sample exposing segfault and asan/valgrind output. It's
  an invalid memory read access.

 This has already been found by coverity, but thanks anyway.

 
  As here are a lot of people working on import filters: These are very
  suspectible to these type of memory access errors and they can often
  easily be found with fuzzing. You may wanna have a look at
  https://fuzzing-project.org

 I know... I used zzuf on some of our libs in the past. And I have been
 using afl since I discovered it 4-5 weeks ago. I have already fixed over
 20 crashes/hangs in various libraries, but I still have got more to go
 through.

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

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


Re: undefined reference to non-virtual thunk

2014-12-20 Thread Chris Sherlock
Hi Kostas,

I can see you've got quite a few configure options set there.

Can you take them out one by one and run make svx.all

Chris

Sent from my iPhone

 On 16 Dec 2014, at 6:22 pm, Kostas Tamateas ktamat...@dataways.gr wrote:
 
 Hello everyone,
 
 I'm trying to build libreoffice-4.3.41 sources.
 My system is a Debian distribution 32-bit with gcc 4.9.1 and my configure is 
 this:
 
 ./autogen.sh --enable-release-build --enable-mergelibs=yes --without-java 
 --without-junit --without-doxygen --disable-gconf --disable-firebird-sdbc 
 --disable-postgresql-sdbc --disable-collada --disable-dbus --disable-gtk 
 --disable-randr --disable-gltf --disable-liblangtag --disable-gstreamer 
 --disable-kdeab --disable-tdeab  --disable-systray --disable-coinmp 
 --disable-lpsolve --disable-sdremote --disable-cve-tests --disable-orcus 
 --disable-graphite --disable-odk --disable-cups --with-system-libs 
 --without-boost-date-time --without-boost-iostreams --disable-pdfimport 
 --disable-opengl --disable-opencl --disable-gstreamer-0-10 --with-webdav=neon
 After long time I get this message:
 /libreoffice-4.3.4.1/workdir/CxxObject/svx/source/fmcomp/fmgridif.o: 
 In function 
 `FmXGridControl::createPeer(com::sun::star::uno::Referencecom::sun::star::awt::XToolkit
  const, com::sun::star::uno::Referencecom::sun::star::awt::XWindowPeer 
 const)':
 fmgridif.cxx:(.text+0x87dc): undefined reference to `non-virtual thunk to 
 WindowListenerMultiplexer::acquire()'
 fmgridif.cxx:(.text+0x8837): undefined reference to `non-virtual thunk to 
 FocusListenerMultiplexer::acquire()'
 fmgridif.cxx:(.text+0x8892): undefined reference to `non-virtual thunk to 
 KeyListenerMultiplexer::acquire()'
 fmgridif.cxx:(.text+0x88ed): undefined reference to `non-virtual thunk to 
 MouseListenerMultiplexer::acquire()'
 fmgridif.cxx:(.text+0x8948): undefined reference to `non-virtual thunk to 
 MouseMotionListenerMultiplexer::acquire()'
 fmgridif.cxx:(.text+0x89a3): undefined reference to `non-virtual thunk to 
 PaintListenerMultiplexer::acquire()'
 collect2: error: ld returned 1 exit status
 Is a possible way to fix that problem ?
 
 -- 
 Με εκτίμηση ,
 
 
 Κώστας Ταματέας 
 iNODE Systems Engineer
 
 Σταθερό: +30 2310953953 
 
 Image1Image3 
 
 Image5
 Dataways A.E. 
 Κανάρη 75, 544 53 Θεσσαλονίκη
 
 Image6
 
 Image7
 Image8 Think before using ink.
 ΓΝΩΣΤΟΠΟΙΗΣΗ - ΔΗΛΩΣΗ ΠΡΟΣ ΤΟΥΣ ΠΑΡΑΛΗΠΤΕΣ Αυτό το μήνυμα περιέχει 
 εμπιστευτικές και απόρρητες πληροφορίες. Σε περίπτωση που περιέλθει σε σας 
 από λάθος χωρίς να είσθε ο σκοπούμενος παραλήπτης, παρακαλούμε να το 
 διαγράψετε άμεσα από το σύστημά σας και να ειδοποιήσετε τον αποστολέα. Η 
 αντιγραφή, χρήση ή κοινοποίηση σε τρίτους του μηνύματος αυτού από μη 
 κατονομαζόμενο παραλήπτη, αντίκειται στο νόμο. Το Internet δεν είναι ασφαλές 
 περιβάλλον και ο αποστολέας δεν θα ευθύνεται για οποιαδήποτε απώλεια 
 δεδομένων ή άλλη ζημία του παραλήπτη ή τρίτων, οφειλόμενη είτε σε χρήση είτε 
 σε καθυστερημένη διαβίβαση, υποκλοπή, αλλοίωση ή μόλυνση με ιούς του παρόντος 
 μηνύματος. Στον παραλήπτη εναπόκειται αποκλειστικά η ευθύνη για προστασία του 
 συστήματός του από ιούς και για επιβεβαίωση του περιεχομένου του παρόντος.
 
 Αυτό το μήνυμα έχει ελεγχθεί από το σύστημα iNODE ™ Email Content Filtering 
 και είναι καθαρό από γνωστούς ιούς.
 
 
 
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: internal openldap build fails when exporting FLAGS

2014-12-20 Thread Chris Sherlock
That does look an error. 

I've rebased and started a build - can't see any issues though!

Chris

Sent from my iPhone

 On 21 Dec 2014, at 7:41 am, Maarten Hoes hoes.maar...@gmail.com wrote:
 
 Hi,
 
 
 I made the minimum amount of change I needed, and submitted a patch to gerrit 
 for review.
 
 https://gerrit.libreoffice.org/13568
 
 - Maarten
 
 
 
 On Sat, Dec 20, 2014 at 12:23 PM, Maarten Hoes hoes.maar...@gmail.com 
 wrote:
 Hi,
 
 
 For lcov code coverage purposes, I have to build libreoffice with the 
 following FLAGS set and exported :
 
 LDFLAGS='-fprofile-arcs' CFLAGS='-fprofile-arcs -ftest-coverage' 
 CXXFLAGS='-fprofile-arcs -ftest-coverage' CPPFLAGS='-fprofile-arcs 
 -ftest-coverage'
 export LDFLAGS CFLAGS CXXFLAGS CPPFLAGS
 
 And then proceed with 
 
 ./autogen.sh --enable-python=internal --disable-online-update 
 --without-system-libs --without-system-headers
 make build-nocheck
 
 I run into a build error of the internal openldap version, with undefined 
 references to  '__gcov_'. This shouldnt happen when setting 
 FLAGS+='-fprofile-arcs -ftest-coverage' ... But it looks like '-lgcov' isnt 
 passed to the linker properly (which should happen by setting 
 LDFLAGS='-fprofile-arcs'). It appears that the FLAGS arent being passed down 
 correctly in here :
 
 external/openldap/ExternalProject_openldap.mk
 
 Where at multiple points it appears that all current CFLAGS/CPPFLAGS/LDFLAGS 
 are overwritten with entries like this:
 
 LDFLAGS = foo
 CPPFLAGS= bar
 
 instead of something like this
 
 LDFLAGS=$(LDFLAGS) foo
 CPPFLAGS=$(CPPFLAGS) bar
 
 It seems easy enough to modify, but I cant figure out if this was done on 
 purpose for some reason, or if it can be modified without causing issues ? 
 Perhaps only the (last) line with LDFLAGS can/needs to be changed, and the 
 other FLAGS need to be left as they are ? For me, internal openldap builds 
 without issues when making the modifications (see attached diff).
 
 
 All thoughts and comments are more than appreciated, 
 
 
 
 - Maarten
 
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [documentliberation-discuss] [ANN] libabw 0.1.1 has been released

2014-12-20 Thread Chris Sherlock
Do you have any instructions on how you went about doing that?

Chris

Sent from my iPhone

 On 21 Dec 2014, at 4:34 am, David Tardon dtar...@redhat.com wrote:
 
 I know... I used zzuf on some of our libs in the past. And I have been
 using afl since I discovered it 4-5 weeks ago. I have already fixed over
 20 crashes/hangs in various libraries, but I still have got more to go
 through.
 
 D.
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


LibreOffice Gerrit News for core on 2014-12-21

2014-12-20 Thread gerrit
Moin!

* Open changes on master for project core changed in the last 25 hours:

 First time contributors doing great things! 
+ fdo#87185 reorganize the image context menu
  in https://gerrit.libreoffice.org/13570 from Yousuf Philips
  about module sw
+ Honor additional LDFLAGS when exporting them on the commandline.
  in https://gerrit.libreoffice.org/13568 from Maarten Hoes
  about module external
+ organize standard and formatting toolbars for writer web
  in https://gerrit.libreoffice.org/13572 from Yousuf Philips
  about module sw
+ fdo#85945 reorganize the file menu and set global shortcut for .uno:Close
  in https://gerrit.libreoffice.org/13571 from Yousuf Philips
  about module icon-themes, officecfg, sw
+ fdo#39440 sd: reduce scope of local variables
  in https://gerrit.libreoffice.org/13569 from Michael Weghorn
  about module sd
+ fdo#39440 reduce scope of local variables
  in https://gerrit.libreoffice.org/13567 from Michael Weghorn
  about module scaddins, scripting, sd
+ fdo#39440 sc: reduce scope of local variables
  in https://gerrit.libreoffice.org/13566 from Michael Weghorn
  about module sc
+ gbuild: introduce add_objcxxflags_exception_object/objects
  in https://gerrit.libreoffice.org/11815 from Douglas Mencken
  about module sal, solenv
+ Drop MAC_OS_X_VERSION_... variables
  in https://gerrit.libreoffice.org/13212 from Douglas Mencken
  about module build, solenv
+ fdo#39440 sc: reduce scope of local variables
  in https://gerrit.libreoffice.org/13564 from Michael Weghorn
  about module sc
+ Refactor building perfect hash tabels for tokens
  in https://gerrit.libreoffice.org/13545 from Daniel Sikeler
  about module oox, solenv
+ Resolves: fdo#87488 Wrong text rotation inside a preset shape from docx
  in https://gerrit.libreoffice.org/13561 from Gary Houston
  about module oox
 End of freshness 

+ env is in /usr/bin, not in /bin
  in https://gerrit.libreoffice.org/13563 from Arnaud Versini
  about module bin
+ Fixup --without-x build
  in https://gerrit.libreoffice.org/13452 from Riccardo Magliocchetti
  about module build, desktop, include, postprocess, svx, sw, vcl


* Merged changes on master for project core changed in the last 25 hours:

+ onedrive: Improve fallback dialog and instructions
  in https://gerrit.libreoffice.org/13500 from Adolfo Jayme Barrientos
+ fix typo in translatable string
  in https://gerrit.libreoffice.org/13467 from Adolfo Jayme Barrientos
+ fdo#39468 translate German comments
  in https://gerrit.libreoffice.org/13549 from Michael Weghorn
+ fdo#39440 sax, sc: reduce scope of local variables
  in https://gerrit.libreoffice.org/13548 from Michael Weghorn


* Abandoned changes on master for project core changed in the last 25 hours:

None

* Open changes needing tweaks, but being untouched for more than a week:

+ fdo#39625 Make existing CppUnittests work
  in https://gerrit.libreoffice.org/11605 from Tobias Madl
+ fdo#86606 removal of direct formatting options from the context menu
  in https://gerrit.libreoffice.org/13196 from Yousuf Philips
+ fdo#86784 make soffice commandline in juh Bootstrap.bootstrap() configura
  in https://gerrit.libreoffice.org/13290 from Christoph Lutz
+ l10ntools-transex3: core refactoring and improvements
  in https://gerrit.libreoffice.org/11317 from Douglas Mencken
+ Fix Python build in debug mode for x64 Windows
  in https://gerrit.libreoffice.org/13089 from David Ostrovsky
+ Replace image-sort.pl with image-sort.py
  in https://gerrit.libreoffice.org/13124 from Marcos Paulo de Souza
+ start detection of kf5 stuff in configure.ac
  in https://gerrit.libreoffice.org/13079 from Jonathan Riddell
+ fdo#65209 attempt to enable daylight saving time
  in https://gerrit.libreoffice.org/11441 from Lim Jing
+ Move more places to boost::signal2 in math
  in https://gerrit.libreoffice.org/13065 from Marcos Paulo de Souza
+ more breeze icons
  in https://gerrit.libreoffice.org/13058 from Jonathan Riddell
+ vcl: change Timer and Idle to use boost's Signal2
  in https://gerrit.libreoffice.org/12528 from Chris Sherlock
+ Removed useless includes in accessibility/ tree
  in https://gerrit.libreoffice.org/12948 from Andrea Gelmini
+ Perftest for loading autocorrect dictionaries, related fdo#79761
  in https://gerrit.libreoffice.org/11296 from Matúš Kukan
+ HIG-ification of GSoC Color Picker dialog
  in https://gerrit.libreoffice.org/11494 from Olivier Hallot
+ WIP: fdo#43090: Add an option to disable autoclose brackets
  in https://gerrit.libreoffice.org/12024 from Marcos Paulo de Souza


Best,

Your friendly LibreOffice Gerrit Digest Mailer

Note: The bot generating this message can be found and improved here:
   
https://gerrit.libreoffice.org/gitweb?p=dev-tools.git;a=blob;f=gerritbot/send-daily-digest
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Porównanie kredytów 20 banków - Grudzień 2014. Sprawdź

2014-12-20 Thread Ranking kredytów / Openrate
















...
Zyskujesz czas
W oddziale Expandera możesz porównać oferty kredytowe wielu banków.
...
Zyskujesz pieniądze
Współpracujące z nami instytucje oferują Klientom produkty finansowe dostępne wyłącznie w oddziałach Expandera.
...
Zyskujesz spokój
To nasz Doradca będzie negocjował z bankiem Twój kredyt i starał się uzyskać najlepsze warunki. Poinformuje również o wszelkich istotnych zapisach w umowach kredytowych tak, abyś miał pewność, na jakich warunkach zaciągasz długoterminowy kredyt.
...







Mailing wysłany na zlecenie:
EXPANDER ADVISORS sp. z o.o.
z siedzibą w Warszawie przy ul. Prostej 69,
wpisaną do Rejestru Przedsiębiorców Krajowego Rejestru Sądowego
przez Sąd Rejonowy dla miasta Warszawy,
XIII Wydział Gospodarczy Krajowego Rejestru Sądowego
pod numerem 287188, kapitał zakładowy 215 812 500,00 zł
NIP 521-345-12-55, REGON 141062210


Mail wysłany w ramach kampanii BiuletynOfert realizowanej przez OpenRate sp. z o.o. z siedzibą w Warszawie we współpracy z administratorem zbioru danych zawierającego Twój adres e-mail. Otrzymujesz tę wiadomość, gdyż przekazałeś naszemu partnerowi - administratorowi zbioru danych -  swój adres e-mail.

Jeśli chcesz zrezygnować z możliwości otrzymywania maili w ramach kampanii BiuletynOfert, kliknij: Zrezygnuj z otrzymywania wiadomoci

Jeśli chcesz uzyskać szersze informacje dotyczące mailingu od BiuletynOfert, skontaktuj się z nami pod adresem reklama...@unsubscribe.pl




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


[Libreoffice-qa] Freshly installed 4.4.0.0RC1 reports 4.3.5 as available update

2014-12-20 Thread Thomas Hackert
Hello all,
after I stalled

LO Version: 4.4.0.1
Build-ID: 1ba9640ddd424f1f535c75bf2b86703770b8cf6f
Gebietsschema: de_DE

on Debian Testing i686 (following the instructions from 
https://wiki.documentfoundation.org/Installing_in_parallel) with 
Germanophone lang- as well as helppack, I got the information from 
LO, that a new update is available. Much to my astonishment, a click 
on this LibreOffice update available on the top right side of LO 
opens the Check for Updates dialog with

quote
LibreOffice 4.3.5 is available.
/quote

... :( Is this intended or is it a bug?

Have a nice evening
Thomas.

-- 
The three laws of thermodynamics:
(1) You can't get anything without working for it.
(2) The most you can accomplish by working is to break 
even.
(3) You can only break even at absolute zero.

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

Re: [Libreoffice-qa] Freshly installed 4.4.0.0RC1 reports 4.3.5 as available update

2014-12-20 Thread Robinson Tryon
On Sat, Dec 20, 2014 at 11:54 AM, Thomas Hackert thack...@nexgo.de wrote:
 Hello all,
 after I stalled

 LO Version: 4.4.0.1
 Build-ID: 1ba9640ddd424f1f535c75bf2b86703770b8cf6f
 Gebietsschema: de_DE

 on Debian Testing i686 (following the instructions from
 https://wiki.documentfoundation.org/Installing_in_parallel) with
 Germanophone lang- as well as helppack, I got the information from
 LO, that a new update is available. Much to my astonishment, a click
 on this LibreOffice update available on the top right side of LO
 opens the Check for Updates dialog with

 quote
 LibreOffice 4.3.5 is available.
 /quote

 ... :( Is this intended or is it a bug?

Hmmm... quite possibly because 4.4.0.1 is in release configuration? I
don't get the same warning for 4.3.5 release or for 4.4.0.0.beta2, so
perhaps we just need to make a tweak to the updater:
https://wiki.documentfoundation.org/Updater

I also see the following:
https://www.libreoffice.org/download/libreoffice-fresh/?type=deb-x86_64version=4.4.0lang=en-US
has links for 4.4.0 RC1, but text says Beta2
http://it.libreoffice.org/download/pre-release/ has links for 4.4.0
RC1, but text mentions 3.6.0 RC4 (!)
(my guess is that the latter one might be hard-coded into the page)

Best,
--R

-- 
Robinson Tryon
QA Engineer - The Document Foundation
LibreOffice Community Outreach Herald
qu...@libreoffice.org
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Re: [Libreoffice-qa] Freshly installed 4.4.0.0RC1 reports 4.3.5 as available update

2014-12-20 Thread Thomas Hackert
Hello Robinson, *,

On Sat, 20th December 2014 19:09 Robinson Tryon wrote:
 On Sat, Dec 20, 2014 at 11:54 AM, Thomas Hackert
 thack...@nexgo.de wrote:
 after I stalled

 LO Version: 4.4.0.1
 Build-ID: 1ba9640ddd424f1f535c75bf2b86703770b8cf6f
 Gebietsschema: de_DE

 on Debian Testing i686 (following the instructions from
 https://wiki.documentfoundation.org/Installing_in_parallel) with
 Germanophone lang- as well as helppack, I got the information
 from LO, that a new update is available. Much to my astonishment,
 a click on this LibreOffice update available on the top right
 side of LO opens the Check for Updates dialog with

 quote
 LibreOffice 4.3.5 is available.
 /quote

 ... :( Is this intended or is it a bug?
 
 Hmmm... quite possibly because 4.4.0.1 is in release
 configuration? I don't get the same warning for 4.3.5 release or
 for 4.4.0.0.beta2, so perhaps we just need to make a tweak to the
 updater: https://wiki.documentfoundation.org/Updater

O.K. But where do I need to tweak it? On my system, or somewhere on 
the TDF server?

 I also see the following:
 https://www.libreoffice.org/download/libreoffice-fresh/?type=deb-x86_64version=4.4.0lang=en-US
 has links for 4.4.0 RC1, but text says Beta2
 http://it.libreoffice.org/download/pre-release/ has links for
 4.4.0 RC1, but text mentions 3.6.0 RC4 (!)
 (my guess is that the latter one might be hard-coded into the
 page)

I have found it on 
https://wiki.documentfoundation.org/BugHunting_Session_4.4.0_RC1 
below Quick Start. There it links to 
http://dev-builds.libreoffice.org/pre-releases/deb/x86_64/?C=S;O=D;P=*4.4.0.1* 
for some reason ... :(

Thanks for your answer and have a nice evening
Thomas.

-- 
NP: Totenmond – Zwang

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

Re: [Libreoffice-qa] Freshly installed 4.4.0.0RC1 reports 4.3.5 as available update

2014-12-20 Thread Robinson Tryon
On Sat, Dec 20, 2014 at 1:56 PM, Thomas Hackert thack...@nexgo.de wrote:
 for 4.4.0.0.beta2, so perhaps we just need to make a tweak to the
 updater: https://wiki.documentfoundation.org/Updater

 O.K. But where do I need to tweak it? On my system, or somewhere on
 the TDF server?

As mentioned on that wiki page, the updater lives in git. Here's the
commit that added the build hash for 4.4.0.1 that points to 4.3.5:
http://cgit.freedesktop.org/libreoffice/website/commit/check.php?h=updateid=5249d17efb2d35de709ec5164e364b8bbde94913

It's possible that the change is intentional, but given than it's
pointing at 4.3.5.1 (and not .2), I think it might be in error? We can
ask cloph :-)

 I have found it on
 https://wiki.documentfoundation.org/BugHunting_Session_4.4.0_RC1
 below Quick Start. There it links to 
 http://dev-builds.libreoffice.org/pre-releases/deb/x86_64/?C=S;O=D;P=*4.4.0.1*
 for some reason ... :(

That's where the pre-releases such as 4.4.0.1 live. I just played
around w/urls, and it looks like we can use this as well:
https://www.libreoffice.org/download/libreoffice-fresh/?version=4.4.0


Best,
--R

-- 
Robinson Tryon
QA Engineer - The Document Foundation
LibreOffice Community Outreach Herald
qu...@libreoffice.org
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 86055] size and window placement (aka screen position) of LO is not remembered on OSX 10.10

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86055

foss f...@openmailbox.org changed:

   What|Removed |Added

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

--- Comment #5 from foss f...@openmailbox.org ---


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

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


[Libreoffice-bugs] [Bug 75644] LibO applications use the window size of the start screen instead of the last used size of the document

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75644

foss f...@openmailbox.org changed:

   What|Removed |Added

 CC||f...@openmailbox.org

--- Comment #8 from foss f...@openmailbox.org ---
*** Bug 86055 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 79641] LibreOffice 4.4 most annoying bugs

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79641
Bug 79641 depends on bug 86055, which changed state.

Bug 86055 Summary: size and window placement (aka screen position) of LO is not 
remembered on OSX 10.10
https://bugs.freedesktop.org/show_bug.cgi?id=86055

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 75644] LibO applications use the window size of the start screen instead of the last used size of the document

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75644

foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||ipla...@yahoo.co.uk,
   ||jmadero@gmail.com
 Resolution|WONTFIX |---

--- Comment #9 from foss f...@openmailbox.org ---
Hi guys, I recall this being discussed and understand that saving window size
per document might be a bit too much at the moment. I didn’t understand that
what was being discussed is imo a major OS X LO annoyance:

https://bugs.freedesktop.org/show_bug.cgi?id=86055

I’ve set my own bug to dupelicate. But I am re-opening this one here. If the
window size can be saved from start center, it should also be saved from
document.

Also this was indeed working in earlier a long time ago iirc, thus regression.

Here’s my test results from the other bug. And since this works fine on Linux
it is def a bug.

Tested with

Version: 4.3.3.2
Build ID: 9bb7eadab57b6755b1265afa86e04bf45fbfc644

Version: 4.4.0.0.alpha2+
Build ID: a066acd8709ce69eae4fee3993dbb298e02eb8d5
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2014-11-09_09:59:47

OSX 10.10

Very annoying. Each user has a window placement and program size, best fitting
the individual needs. LO ignores this on OSX.

jphilipz tested this on Linux and it remembered screen position and window
size, so def a bug.

Feel free to bash me for re-opening next design meetup.

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


[Libreoffice-bugs] [Bug 75644] LibO applications use the window size of the start screen instead of the last used size of the document

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75644

foss f...@openmailbox.org changed:

   What|Removed |Added

   Keywords||regression
 Blocks||79641

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


[Libreoffice-bugs] [Bug 79641] LibreOffice 4.4 most annoying bugs

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79641

foss f...@openmailbox.org changed:

   What|Removed |Added

 Depends on||75644

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


[Libreoffice-bugs] [Bug 71731] StartCenter: Mouse-hover effect on green sidebar is incorrect, it should be semi-transparent (lightweight button)

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71731

foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WONTFIX |---

--- Comment #11 from foss f...@openmailbox.org ---
Re-opening until we hear more dev feedback on adolfo's suggestion.

The buttons do look rather ugly. If that is expected for other platforms, it
dev sticks out as odd on OS X. Transparency would solve this. If this is
changed for all buttons, why not if it then fits with OS X. We'd have to
discuss which other areas are effect by a potential change.

I lack the tech details but if what Adolfo suggests is feasable it would imo be
a desirable change.

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


[Libreoffice-bugs] [Bug 65138] [META] Sidebar feature related issues

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65138
Bug 65138 depends on bug 71731, which changed state.

Bug 71731 Summary: StartCenter: Mouse-hover effect on green sidebar is 
incorrect, it should be semi-transparent (lightweight button)
https://bugs.freedesktop.org/show_bug.cgi?id=71731

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WONTFIX |---

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


[Libreoffice-bugs] [Bug 61914] [META] Start Center -- implementation UI and UX

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61914
Bug 61914 depends on bug 71731, which changed state.

Bug 71731 Summary: StartCenter: Mouse-hover effect on green sidebar is 
incorrect, it should be semi-transparent (lightweight button)
https://bugs.freedesktop.org/show_bug.cgi?id=71731

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WONTFIX |---

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


[Libreoffice-bugs] [Bug 86120] TOOLBAR: Transparency of custom icons with partial transparency not retained

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86120

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from tommy27 ba...@quipo.it ---
I confirm issue. it seems that when you import the custom png icon some kind of
processing happens inside LibO and the transparency color is somehow lost in
some pixel

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


[Libreoffice-bugs] [Bug 86120] TOOLBAR: Transparency of custom icons with partial transparency not retained

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86120

--- Comment #4 from tommy27 ba...@quipo.it ---
that's probably what happens...

your custom icon is 24x24 pixels but imported custom icons are stored as 16x16
icons.

you can find those icons under
...User\config\soffice.cfg\modules\swriter\images\Bitmaps

you should see a file called sc_userimages.png which is a stripe with all the
custom icons you imported.

in my LibO 4.3.4.1 it has 16 pixels height

so my theory is that when your 24x24 icon is imported is resized to 16x16 and
in this process some pixel that were transparent change sligtly their color
hence loosing the desired transparency

try to import an icon which is 16x16 pixels from the beginning and tell if it
fix things

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


[Libreoffice-bugs] [Bug 86120] TOOLBAR: Transparency of custom icons with partial transparency not retained

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86120

--- Comment #5 from tommy27 ba...@quipo.it ---
or as a workaround you can try to manually edit the sc_userimages.png file in
order to clean the wrong pixels

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


[Libreoffice-bugs] [Bug 87328] References are not searchable

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87328

--- Comment #10 from Darius Daniel Grigoras daniel.grigo...@movidius.com ---
(In reply to Beluga from comment #5)
 (In reply to Darius Daniel Grigoras from comment #4)
  (In reply to Beluga from comment #3)
   Ok thanks. I don't understand the final two sentences, but maybe someone
   else will.
  
  I guess then that a youtube video would help :), but I'm dealing with
  confidential information.
 
 For stripping confidential info you can try this:
 https://wiki.documentfoundation.org/QA/BugReport/
 Attachments#Confidential_Attachments
 
 Maybe you could prepare a document quickly with the help of that macro and
 attach it here.

BTW, that Confidential Data Stripping Macro does not remove/replace
confidential images/diagrams.

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


[Libreoffice-bugs] [Bug 87301] EDITING: Form-wizard doesn't show background-styles

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87301

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

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

--- Comment #15 from Julien Nabet serval2...@yahoo.fr ---
Thank you Lionel!
Unassign myself since the final and right fix is from you :-)

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


[Libreoffice-bugs] [Bug 87523] New: Table of contents issue with alignment of page number

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87523

Bug ID: 87523
   Summary: Table of contents issue with alignment of page number
   Product: LibreOffice
   Version: 4.3.4.1 release
  Hardware: Other
OS: All
Status: NEW
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: daniel.grigo...@movidius.com

Created attachment 111072
  -- https://bugs.freedesktop.org/attachment.cgi?id=111072action=edit
Demo files that illustrates the TOC issue with the alignment of the page
numbers

Hi,

LibreOffice has issues with the alignment of the page numbers in a Table of
Contents with custom settings. I've added an additional tab between E# (Entry
Number) and E (Entry itself). I also added an indentation to the Contents 2 and
Contents 3 paragraph styles applied in the TOC to the Level 2 and Level 3
headings.
Please see the Demo file attached.

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


[Libreoffice-bugs] [Bug 87501] [Rollit fuzzer]: FILEOPEN Calc is stuck at 100% CPU

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87501

--- Comment #3 from Pedro Ribeiro ped...@gmail.com ---
Hi, 

After you use text import, doesn't it cause the cpu to lock at 100%?
The file is expected to be corrupted and to fall back to text import. This was
found during a fuzzing run. 

If you are not familiar with fuzzing, it's a technique to find security bugs
(but often also non security like this) by running a series of invalid inputs /
files in a program.

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


[Libreoffice-bugs] [Bug 39440] cppcheck cleanliness

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39440

--- Comment #39 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Michael Weghorn committed a patch related to this issue.
It has been pushed to master:

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

fdo#39440 sax, sc: reduce scope of local variables

It will be available in 4.5.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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39468

--- Comment #160 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Michael Weghorn committed a patch related to this issue.
It has been pushed to master:

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

fdo#39468 translate German comments

It will be available in 4.5.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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 76239] OpenSymbol font is not retained after an upgrade

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=76239

Urmas davian...@gmail.com changed:

   What|Removed |Added

 CC||tomas...@gmail.com

--- Comment #54 from Urmas davian...@gmail.com ---
*** Bug 87517 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87517] Source Sans font is deleted during LO installation

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87517

Urmas davian...@gmail.com changed:

   What|Removed |Added

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

--- Comment #1 from Urmas davian...@gmail.com ---


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

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


[Libreoffice-bugs] [Bug 87241] LibreOffice Base is freezed

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87241

tommy27 ba...@quipo.it changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=87522

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


[Libreoffice-bugs] [Bug 87522] LibreOffice Base is freezed when creating a report

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87522

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it
Version|4.4.0.0.beta2   |4.4.0.0.beta1
   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=87241

--- Comment #2 from tommy27 ba...@quipo.it ---
take a look also at Bug 87241 which however has been filed against 4.3.5

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


[Libreoffice-bugs] [Bug 87355] CONDITIONAL FORMATTING: Data bar doesnt render well on non-white cell background

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87355

--- Comment #4 from Jay Philips philip...@hotmail.com ---
Created attachment 111073
  -- https://bugs.freedesktop.org/attachment.cgi?id=111073action=edit
the excel file used

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


[Libreoffice-bugs] [Bug 87524] New: LibreOffice Calc shows 0 when it should show nothing, i.e.

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87524

Bug ID: 87524
   Summary: LibreOffice Calc shows 0 when it should show nothing,
i.e. 
   Product: LibreOffice
   Version: 4.4.0.0.beta2
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ov...@hotmail.com

Created attachment 111074
  -- https://bugs.freedesktop.org/attachment.cgi?id=111074action=edit
File which has what is discussed in the description

Opening the attached file has fields incorrectly show with '0' instead of
showing nothing :

ID: cash
Name  : Cash Sale
Address   : 0
Delivery Instructions : 0
Phone : 0
Phone : 0
Email : 0
Email : 0


If you delete the 'cash', press Enter, enter 'cash' (without the apostrophes)
it then shows correctly as:

ID: cash
Name  : Cash Sale
Address   : 
Delivery Instructions : 
Phone : 
Phone : 
Email : 
Email : 

It would be appreciated if LibreOffice Calc would once again show fields with
 instead of '0'.

If I remember correctly, the versions of LibreOffice Calc prior to 4.2 or 4.1
showed the correct  on opening.

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


[Libreoffice-bugs] [Bug 87301] EDITING: Form-wizard doesn't show background-styles

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87301

Lionel Elie Mamane lio...@mamane.lu changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |lio...@mamane.lu
   |desktop.org |

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


[Libreoffice-bugs] [Bug 80513] Asian Phonetic Guide: Ruby text does not show up before minimize-and-maximize the window

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80513

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk
 Whiteboard|BibisectRequest |notBibisectable

--- Comment #7 from Matthew Francis fdb...@neosheffield.co.uk ---
Unfortunately it seems impossible to reproduce this reliably towards the
beginning of the 43all bibisect repository. Clearly the bug is there, but the
fact that it can't be reproduced on demand means that an accurate bibisect
result can't be achieved

Setting Whiteboard:notBibisectable

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


[Libreoffice-bugs] [Bug 87497] Presentation Layout out of limits in pptx format

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87497

tommy27 ba...@quipo.it changed:

   What|Removed |Added

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

--- Comment #2 from tommy27 ba...@quipo.it ---
please upload test file otherwise we can't debug.
tell also the LibO version you are using.

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


[Libreoffice-bugs] [Bug 87524] LibreOffice Calc shows 0 when it should show nothing, i.e.

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87524

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ba...@quipo.it
Version|4.4.0.0.beta2   |4.3.0.4 release
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 87524] LibreOffice Calc shows 0 when it should show nothing, i.e.

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87524

--- Comment #1 from tommy27 ba...@quipo.it ---
Created attachment 111078
  -- https://bugs.freedesktop.org/attachment.cgi?id=111078action=edit
screenshot 4.2.7 vs 4.3.0

I confirm issue under Win8.1 64bit using LibO 4.3.0 and 4.3.4
compare screenshot versus LibO 4.2.7

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


[Libreoffice-bugs] [Bug 87524] FILOPEN: Calc shows 0 when it should show nothing, i.e.

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87524

tommy27 ba...@quipo.it changed:

   What|Removed |Added

Summary|LibreOffice Calc shows 0|FILOPEN: Calc shows 0 when
   |when it should show |it should show nothing,
   |nothing, i.e. |i.e. 

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


[Libreoffice-bugs] [Bug 87524] FILEOPEN: Calc shows 0 when it should show nothing, i.e.

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87524

tommy27 ba...@quipo.it changed:

   What|Removed |Added

Summary|FILOPEN: Calc shows 0 when  |FILEOPEN: Calc shows 0 when
   |it should show nothing, |it should show nothing,
   |i.e.  |i.e. 

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


[Libreoffice-bugs] [Bug 87524] FILEOPEN: Calc shows 0 when it should show nothing, i.e.

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87524

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||markus.mohrhard@googlemail.
   ||com

--- Comment #2 from tommy27 ba...@quipo.it ---
CC'ing Markus.
is that change intended?

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


[Libreoffice-bugs] [Bug 87501] [Rollit fuzzer]: FILEOPEN Calc is stuck at 100% CPU

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87501

--- Comment #4 from raal r...@post.cz ---
(In reply to Pedro Ribeiro from comment #3)
 Hi, 
 
 After you use text import, doesn't it cause the cpu to lock at 100%?
 The file is expected to be corrupted and to fall back to text import. This
 was found during a fuzzing run. 

No, opens without problems.

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


[Libreoffice-bugs] [Bug 87525] New: Wrong replace behaviour with Find Replace window open

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87525

Bug ID: 87525
   Summary: Wrong replace behaviour with Find  Replace window
open
   Product: LibreOffice
   Version: 4.2.6.3 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: f...@akerbeltz.org

Steps to reproduce:
1) open spreadsheet which several columns of data (mine has a header row but I
don't think that impacts this bug).
2) open the findreplace window
3) in the sheet, add a new column (e.g. C) in between columns with CTRL+
4) select column to the left (B), copy and paste into column on the right
5) select column B and in the findreplace window, select some date to replace

Outcome: Calc will find and replace data in column B AND C even though only
column B is selected for findreplace.

This behaviour seems not to occur if the findreplace window is not open during
the copypaste.

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


[Libreoffice-bugs] [Bug 87501] [Rollit fuzzer]: FILEOPEN Calc is stuck at 100% CPU

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87501

--- Comment #5 from Pedro Ribeiro ped...@gmail.com ---
Strange - on my Debian install it definitely causes the CPU to go to lock to
100%.

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


[Libreoffice-bugs] [Bug 87526] New: test_starmath.cxx:83:N12_GLOBAL__N_14TestE::editUndoRedo setUp() failed

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87526

Bug ID: 87526
   Summary: test_starmath.cxx:83:N12_GLOBAL__N_14TestE::editUndoRe
do setUp() failed
   Product: LibreOffice
   Version: 4.3.4.1 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Libreoffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: wmh...@hotmail.com

[build CUT] svl_lngmisc
[build CUT] svl_qa_cppunit
[build CUT] svl_inetcontenttype
/tmp/build/tmp-libreoffice/libreoffice-4.3.4.1/starmath/qa/cppunit/test_starmath.cxx:83:N12_GLOBAL__N_14TestE::editUndoRedo
setUp() failed
- assertion failed
- Expression: pViewFrame
- Should have a SfxViewFrame

/tmp/build/tmp-libreoffice/libreoffice-4.3.4.1/starmath/qa/cppunit/test_starmath.cxx:83:N12_GLOBAL__N_14TestE::editMarker
setUp() failed
- assertion failed
- Expression: pViewFrame
- Should have a SfxViewFrame

/tmp/build/tmp-libreoffice/libreoffice-4.3.4.1/starmath/qa/cppunit/test_starmath.cxx:83:N12_GLOBAL__N_14TestE::editFailure
setUp() failed
- assertion failed
- Expression: pViewFrame
- Should have a SfxViewFrame

/tmp/build/tmp-libreoffice/libreoffice-4.3.4.1/starmath/qa/cppunit/test_starmath.cxx:83:N12_GLOBAL__N_14TestE::viewZoom
setUp() failed
- assertion failed
- Expression: pViewFrame
- Should have a SfxViewFrame

test_starmath.cxx:83:Assertion
Test name: N12_GLOBAL__N_14TestE::editUndoRedo
setUp() failed
- assertion failed
- Expression: pViewFrame
- Should have a SfxViewFrame

test_starmath.cxx:83:Assertion
Test name: N12_GLOBAL__N_14TestE::editMarker
setUp() failed
- assertion failed
- Expression: pViewFrame
- Should have a SfxViewFrame

test_starmath.cxx:83:Assertion
Test name: N12_GLOBAL__N_14TestE::editFailure
setUp() failed
- assertion failed
- Expression: pViewFrame
- Should have a SfxViewFrame

test_starmath.cxx:83:Assertion
Test name: N12_GLOBAL__N_14TestE::viewZoom
setUp() failed
- assertion failed
- Expression: pViewFrame
- Should have a SfxViewFrame

Failures !!!
Run: 21   Failure total: 4   Failures: 4   Errors: 0

Error: a unit test failed, please do one of:

export DEBUGCPPUNIT=TRUE# for exception catching
export CPPUNITTRACE=gdb --args# for interactive debugging on Linux
export CPPUNITTRACE=\[full path to devenv.exe]\ /debugexe # for interactive
debugging in Visual Studio
export VALGRIND=memcheck# for memory checking

and retry using: make CppunitTest_starmath_qa_cppunit

make[1]: ***
[/tmp/build/tmp-libreoffice/libreoffice-4.3.4.1/workdir/CppunitTest/starmath_qa_cppunit.test]
Error 1
make[1]: *** Waiting for unfinished jobs
make: *** [build] Error 2
bash-4.2#

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


[Libreoffice-bugs] [Bug 86416] middle click paste truncates

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86416

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #11 from Beluga todven...@suomi24.fi ---
(In reply to Todd from comment #9)
 (In reply to Todd from comment #8)
 
  I asked the Xfce Mailing list if anyone else can reproduce it
 
 Got one response back so far and he was able to reproduce it

https://mail.xfce.org/pipermail/xfce/2014-December/033990.html
Quoting:
if you mean with highlight a triple-click on the line, my LO 4.2.7.2 
gives me:
Service detection performed. Please report any incorrect results
=
Service detection performed.
The other eamples are o. k. The result of the first example contradicts 
with every experience, or better convention.
Copying from LO to Lo works.
(end quote)

I guess that counts as reproducing, although it's not very consistent. I don't
know, why he is talking about triple-clicking.
Let's set to NEW anyway.
Severity lowered per
https://wiki.documentfoundation.org/images/0/06/Prioritizing_Bugs_Flowchart.jpg

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


[Libreoffice-bugs] [Bug 84873] Commandline parameter --nolockcheck doesn't work for read-only shared folder.

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84873

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #6 from Beluga todven...@suomi24.fi ---
Thanks for the testing. Setting back to UNCONFIRMED as we need another
confirmation.

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


[Libreoffice-bugs] [Bug 87300] EDITING: Calc crashes after repeated cut-paste operation

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87300

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0
 OS|All |Windows (All)

--- Comment #5 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with 4.3 sources updated some days ago (so future 4.3.6), I
don't reproduce this.
So I put it back to UNCONFIRMED since I don't have more questions.
Perhaps Windows LO version only problem?

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


[Libreoffice-bugs] [Bug 87527] New: Editing a dialog crashes on 4.5 master (dbgutil)

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87527

Bug ID: 87527
   Summary: Editing a dialog crashes on 4.5 master (dbgutil)
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fdb...@neosheffield.co.uk

Steps to reproduce:

On a dbgutil build of 4.5 master,

1. Tools - Macros - Organize Dialogs
2. Create a new dialog
3. Click on the Edit button

The attached crash should occur

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


[Libreoffice-bugs] [Bug 87527] Editing a dialog crashes on 4.5 master (dbgutil)

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87527

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk

--- Comment #1 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 111083
  -- https://bugs.freedesktop.org/attachment.cgi?id=111083action=edit
Linux backtrace - 4.5 master

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


[Libreoffice-bugs] [Bug 87524] FILEOPEN: Calc shows 0 when it should show nothing, i.e.

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87524

Markus Mohrhard markus.mohrh...@googlemail.com changed:

   What|Removed |Added

 Attachment #111074|text/plain  |application/vnd.oasis.opend
  mime type||ocument.spreadsheet

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


[Libreoffice-bugs] [Bug 87522] LibreOffice Base is freezed when creating a report

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87522

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #3 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with 4.4 branch sources updated today, I don't reproduce
the hang (by creating a brand new Hsqldb base or by opening an existing one).

Would it be possible you attach gdb to the process and pinpoint the location of
the hang? (see
https://wiki.documentfoundation.org/Development/How_to_debug#Attaching_to_the_soffice.bin_process)

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


[Libreoffice-bugs] [Bug 83795] Add UI for Wearable devices to the Impress Remote for Android

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83795

--- Comment #2 from foo.stra...@gmail.com ---
I'm interested at working on that.It would be my first involvement on both
LibreOffice and Android wear so I'm not very confident,am I supposed to assign
it to my self and start working or should I first check if i am able to handle
it and then assign?

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


[Libreoffice-bugs] [Bug 71731] StartCenter: Mouse-hover effect on green sidebar is incorrect, it should be semi-transparent (lightweight button)

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71731

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 Status|REOPENED|NEEDINFO
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|UI  |ux-advise

--- Comment #12 from V Stuart Foote vstuart.fo...@utsa.edu ---
To UX-advise and NEEDINFO as agreed

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


[Libreoffice-bugs] [Bug 87528] New: FORMATTING, EDITING cells, sign for comments to large

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87528

Bug ID: 87528
   Summary: FORMATTING, EDITING cells, sign for comments to large
   Product: LibreOffice
   Version: 4.4.0.0.beta2
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: karsten.henn...@gmx.de

I'm testing Lo 4.4.0.1 in the current bughunting session an I found e little
bug in calc:
The sign of a stored comment is too large and partially obscures the contents
of the cell.

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


[Libreoffice-bugs] [Bug 87300] EDITING: Calc crashes after repeated cut-paste operation

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87300

--- Comment #6 from Massimo SOAVE soavemass...@tiscali.it ---
I also use linux and d'ont have problem on linux version, only on windows 7 x64

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


[Libreoffice-bugs] [Bug 83795] Add UI for Wearable devices to the Impress Remote for Android

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83795

--- Comment #3 from foo.stra...@gmail.com ---
(In reply to foo.stratos from comment #2)
 I'm interested at working on that.It would be my first involvement on both
 LibreOffice and Android wear so I'm not very confident,am I supposed to
 assign it to my self and start working or should I first check if i am able
 to handle it and then assign?

I researched it and I believe I can handle it.Working on it.

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


[Libreoffice-bugs] [Bug 83795] Add UI for Wearable devices to the Impress Remote for Android

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83795

foo.stra...@gmail.com changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |foo.stra...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 87529] New: FORMATTING, EDITING combined cells, filling splits combined cells

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87529

Bug ID: 87529
   Summary: FORMATTING, EDITING combined cells, filling splits
combined cells
   Product: LibreOffice
   Version: 4.4.0.0.beta2
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: karsten.henn...@gmx.de

1. combine A1 and A2
2. combine B1 and B2
3. insert any content in A1
4. select A1
5. fill the content from A1 to the right neighbor cell with mouse-action
Result: the combined Cells (B1 and B2) splits into B1 and B2

Alternate action with copy and paste work fine. The B1 and B2 still be
combined!

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


[Libreoffice-bugs] [Bug 87300] EDITING: Calc crashes after repeated cut-paste operation

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87300

raal r...@post.cz changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #7 from raal r...@post.cz ---
I cano confirm with LO  4.3.5.2
ID build: 3a87456aaa6a95c63eea1c1b3201acedf0751bd5

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


[Libreoffice-bugs] [Bug 87527] Editing a dialog crashes on 4.5 master (dbgutil)

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87527

raal r...@post.cz changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #2 from raal r...@post.cz ---
I can not confirm with Version: 4.5.0.0.alpha0+
Build ID: 2116f1cfb31e5fcf829c2f101cd878a32b56c365
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2014-12-19_05:59:03

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


[Libreoffice-bugs] [Bug 82688] ODBC to SQLite3, table Design View does not offer Primary Key

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82688

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with 4.4 sources updated today, I could reproduce this.
A bt retrieved:
#0  connectivity::odbc::ORealObdcDriver::getOdbcFunction (this=0x2bdf350,
_nIndex=7)
at
/home/julien/compile-libreoffice/libo_4_4/connectivity/source/drivers/odbc/ORealDriver.cxx:106
#1  0x2aaad4b9c41c in connectivity::odbc::OConnection::getOdbcFunction
(this=0x2be8fd0, _nIndex=7)
at
/home/julien/compile-libreoffice/libo_4_4/connectivity/source/drivers/odbc/OConnection.cxx:96
#2  0x2aaad4b7d615 in connectivity::odbc::OTools::GetInfo
(_pConnection=0x2be8fd0, _aConnectionHandle=0x2bed4a0, _nInfo=15,
_rValue=@0x7fff3adc: 0, 
_xInterface=uno::Reference to (connectivity::odbc::ODatabaseMetaData *)
0x2bf6dd0)
at
/home/julien/compile-libreoffice/libo_4_4/connectivity/source/drivers/odbc/OTools.cxx:551
#3  0x2aaad4b962e2 in
connectivity::odbc::ODatabaseMetaData::supportsCoreSQLGrammar (this=0x2bf6dd0)
at
/home/julien/compile-libreoffice/libo_4_4/connectivity/source/drivers/odbc/ODatabaseMetaData.cxx:1518
#4  0x2aaac8df975b in dbtools::DatabaseMetaData::supportsPrimaryKeys
(this=0x2c6f708)
at
/home/julien/compile-libreoffice/libo_4_4/connectivity/source/commontools/dbmetadata.cxx:258
#5  0x2aaacd6f8c7d in dbaui::OTableEditorCtrl::IsPrimaryKeyAllowed
(this=0x2c72550)
at
/home/julien/compile-libreoffice/libo_4_4/dbaccess/source/ui/tabledesign/TEditControl.cxx:1318

The problem is I don't understand how this part works:
550 OTools::ThrowException(_pConnection,
551
(*(T3SQLGetInfo)_pConnection-getOdbcFunction(ODBC3SQLGetInfo))(_aConnectionHandle,_nInfo,_rValue,sizeof
_rValue,nValueLen),
552 _aConnectionHandle,SQL_HANDLE_DBC,_xInterface);
(see
http://opengrok.libreoffice.org/xref/core/connectivity/source/drivers/odbc/OTools.cxx#549)
Indeed, after having typed several times s/n in gdb I don't find the
function where _rValue might be changed.
So _rvalue stays to 0 and we only have got SQL_OSC_MINIMUM

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


[Libreoffice-bugs] [Bug 86198] .ui based toolbar popups sometimes not visible under Linux

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86198

--- Comment #11 from Gabriel Diosan gabs...@gmail.com ---
I have tested the latest Libreoffice Dev 4.5 build and this problem is still
present. For people using Gnome Shell, this makes Libreoffice very difficult to
use.

Should the importance of this bug be elevated to high or highest? Also, I would
say that it should be a blocker for the 4.4 release as users on Gnome Shell
will basically not be able to use the colour pickers. Happy for anyone else to
provide their thoughts. 

Would love to see this fixed in time for 4.4.0.

Tested on:

Version: 4.5.0.0.alpha0+
Build ID: 2116f1cfb31e5fcf829c2f101cd878a32b56c365
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2014-12-19_05:59:03
Locale: en_AU

Ubuntu Gnome 15.04 daily

Gabriel

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


[Libreoffice-bugs] [Bug 85875] [EDITING] properties of controls cannot be selected in the normal manner

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85875

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

   Keywords||bisected
 CC||fdb...@neosheffield.co.uk
 Whiteboard|bibisectRequest |bibisected

--- Comment #2 from Matthew Francis fdb...@neosheffield.co.uk ---
It has always been like that since the property browser became dockable

It's probably not very helpful in relation to fixing it, but the commit which
introduced the docked browser (and the bug) was this one:

commit 7d5911e40855ac6234590e008927c9b819084ad0
Author: Uray M. János uray.ja...@gmail.com
Date:   Fri Aug 31 12:44:47 2012 +0200

Basic IDE: Docking property browser under object catalog

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


[Libreoffice-bugs] [Bug 81759] Mac OS X dictation (aka Siri) does not work with Libreoffice 4.3.0.3 or newer (did work in 4.2)

2014-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81759

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk
 Whiteboard|bibisectRequest a11y|notBibisectable a11y

--- Comment #30 from Matthew Francis fdb...@neosheffield.co.uk ---
I get working dictation at both ends of the existing OSX bibisect repo, so
unfortunately this is not bibisectable

- Whiteboard:notBibisectable

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


  1   2   3   >