[Libreoffice-commits] .: bridges/source

2012-04-22 Thread Tor Lillqvist
 bridges/source/cpp_uno/gcc3_macosx_intel/uno2cpp.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e0be9a035a82131628ad07ae05be8bf322730f66
Author: Tor Lillqvist t...@iki.fi
Date:   Sun Apr 22 20:11:30 2012 +0300

WaE: variable 'stackptr' is uninitialized when used

diff --git a/bridges/source/cpp_uno/gcc3_macosx_intel/uno2cpp.cxx 
b/bridges/source/cpp_uno/gcc3_macosx_intel/uno2cpp.cxx
index c9fd510..8f397d9 100644
--- a/bridges/source/cpp_uno/gcc3_macosx_intel/uno2cpp.cxx
+++ b/bridges/source/cpp_uno/gcc3_macosx_intel/uno2cpp.cxx
@@ -80,7 +80,7 @@ void callVirtualMethod(
 if (! pAdjustedThisPtr) 
CPPU_CURRENT_NAMESPACE::dummy_can_throw_anything(xxx); // address something
 
 volatile long edx = 0, eax = 0; // for register returns
-void * stackptr;
+void * stackptr = 0;
 asm volatile (
 mov   %%esp, %6\n\t
 mov   %0, %%eax\n\t
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: shell/source

2012-04-22 Thread Tor Lillqvist
 shell/source/backends/macbe/macbackend.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7bec04312dcef51c8f7b248231e139178fdeada1
Author: Tor Lillqvist t...@iki.fi
Date:   Sun Apr 22 21:44:29 2012 +0300

WaE: initialization of pointer to null from a constant boolean expression

diff --git a/shell/source/backends/macbe/macbackend.cxx 
b/shell/source/backends/macbe/macbackend.cxx
index 055628f..aaf7ebf 100644
--- a/shell/source/backends/macbe/macbackend.cxx
+++ b/shell/source/backends/macbe/macbackend.cxx
@@ -406,7 +406,7 @@ css::uno::Any MacOSXBackend::getPropertyValue(
 CFDictionaryRef rProxyDict = SCDynamicStoreCopyProxies(NULL);
 
 if (!rProxyDict)
-rExceptionsList = false;
+rExceptionsList = 0;
 else
 rExceptionsList = (CFArrayRef) CFDictionaryGetValue(rProxyDict, 
kSCPropNetProxiesExceptionsList);
 
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2012-04-22 Thread Markus Mohrhard
 sc/inc/tokenarray.hxx |3 ++-
 sc/source/core/data/cell.cxx  |7 ---
 sc/source/core/tool/token.cxx |   14 +++---
 3 files changed, 13 insertions(+), 11 deletions(-)

New commits:
commit bba176a844bd993cf7fe6acce9ff18027870dfa5
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Apr 23 01:15:01 2012 +0200

only update absolute refs when copying between docs, fdo#48482

The copy/paste formulas code is getting a bit complex. I will try to
write some test cases for it.

diff --git a/sc/inc/tokenarray.hxx b/sc/inc/tokenarray.hxx
index 48bf4c5..cc55936 100644
--- a/sc/inc/tokenarray.hxx
+++ b/sc/inc/tokenarray.hxx
@@ -108,8 +108,9 @@ public:
 
 /**
  * Make all absolute references pointing to the copied range if the range 
is copied too
+ * @param bCheckCopyArea should references pointing into the copy area be 
adjusted independently from being absolute, should be true only for copypaste 
between documents
  */
-void AdjustAbsoluteRefs( const ScDocument* pOldDoc, const ScAddress 
rOldPos, const ScAddress rNewPos, bool bRangeName = false );
+void AdjustAbsoluteRefs( const ScDocument* pOldDoc, const ScAddress 
rOldPos, const ScAddress rNewPos, bool bRangeName = false, bool bCheckCopyArea 
= false );
 };
 
 #endif // SC_TOKENARRAY_HXX
diff --git a/sc/source/core/data/cell.cxx b/sc/source/core/data/cell.cxx
index a4e5361..fd9499b 100644
--- a/sc/source/core/data/cell.cxx
+++ b/sc/source/core/data/cell.cxx
@@ -175,7 +175,7 @@ void adjustRangeName(ScToken* pToken, ScDocument rNewDoc, 
const ScDocument* pOl
 if (rNewDoc.GetPool() != const_castScDocument*(pOldDoc)-GetPool())
 {
 pRangeNameToken-ReadjustAbsolute3DReferences(pOldDoc, rNewDoc, 
pRangeData-GetPos(), true);
-pRangeNameToken-AdjustAbsoluteRefs(pOldDoc, aOldPos, aNewPos, 
true);
+pRangeNameToken-AdjustAbsoluteRefs(pOldDoc, aOldPos, aNewPos, 
false, true);
 }
 
 bool bInserted;
@@ -811,12 +811,13 @@ ScFormulaCell::ScFormulaCell( const ScFormulaCell rCell, 
ScDocument rDoc, cons
 }
 }
 
-if (pDocument-GetPool() != rCell.pDocument-GetPool())
+bool bCopyBetweenDocs = pDocument-GetPool() != 
rCell.pDocument-GetPool();
+if (bCopyBetweenDocs)
 {
 pCode-ReadjustAbsolute3DReferences( rCell.pDocument, rDoc, 
rCell.aPos);
 }
 
-pCode-AdjustAbsoluteRefs( rCell.pDocument, rCell.aPos, aPos );
+pCode-AdjustAbsoluteRefs( rCell.pDocument, rCell.aPos, aPos, false, 
bCopyBetweenDocs );
 }
 
 if ( nCloneFlags  SC_CLONECELL_ADJUST3DREL )
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 0bbb3d6..dc88df1 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -1832,7 +1832,7 @@ bool IsInCopyRange( const ScRange rRange, const 
ScDocument* pClipDoc )
 return rClipParam.maRanges.In(rRange);
 }
 
-bool SkipReference(ScToken* pToken, const ScAddress rPos, const ScDocument* 
pOldDoc, bool bRangeName)
+bool SkipReference(ScToken* pToken, const ScAddress rPos, const ScDocument* 
pOldDoc, bool bRangeName, bool bCheckCopyArea)
 {
 ScRange aRange;
 
@@ -1862,7 +1862,7 @@ bool SkipReference(ScToken* pToken, const ScAddress 
rPos, const ScDocument* pOl
 }
 }
 
-if (IsInCopyRange(aRange, pOldDoc))
+if (bCheckCopyArea  IsInCopyRange(aRange, pOldDoc))
 return true;
 
 return false;
@@ -1894,7 +1894,7 @@ void ScTokenArray::ReadjustAbsolute3DReferences( const 
ScDocument* pOldDoc, cons
 {
 case svDoubleRef :
 {
-if (SkipReference(static_castScToken*(pCode[j]), rPos, 
pOldDoc, bRangeName))
+if (SkipReference(static_castScToken*(pCode[j]), rPos, 
pOldDoc, bRangeName, true))
 continue;
 
 ScComplexRefData rRef = 
static_castScToken*(pCode[j])-GetDoubleRef();
@@ -1915,7 +1915,7 @@ void ScTokenArray::ReadjustAbsolute3DReferences( const 
ScDocument* pOldDoc, cons
 break;
 case svSingleRef :
 {
-if (SkipReference(static_castScToken*(pCode[j]), rPos, 
pOldDoc, bRangeName))
+if (SkipReference(static_castScToken*(pCode[j]), rPos, 
pOldDoc, bRangeName, true))
 continue;
 
 ScSingleRefData rRef = 
static_castScToken*(pCode[j])-GetSingleRef();
@@ -1941,7 +1941,7 @@ void ScTokenArray::ReadjustAbsolute3DReferences( const 
ScDocument* pOldDoc, cons
 }
 }
 
-void ScTokenArray::AdjustAbsoluteRefs( const ScDocument* pOldDoc, const 
ScAddress rOldPos, const ScAddress rNewPos, bool bRangeName)
+void ScTokenArray::AdjustAbsoluteRefs( const ScDocument* pOldDoc, const 
ScAddress rOldPos, const ScAddress rNewPos, bool bRangeName, bool 
bCheckCopyRange)
 {
 for ( sal_uInt16 j=0; jnLen; ++j )
 {
@@ -1949,7 +1949,7 @@ void ScTokenArray::AdjustAbsoluteRefs( const ScDocument* 

[Libreoffice-commits] .: 2 commits - sc/qa

2012-04-22 Thread Markus Mohrhard
 sc/qa/unit/ucalc.cxx |   23 +--
 1 file changed, 21 insertions(+), 2 deletions(-)

New commits:
commit 7d65dd728ca2b7dea073ef085110dccdf22c2d5c
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Apr 23 02:18:14 2012 +0200

add test case for copy/paste formulas, related fdo#48482

diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index 07782da..9542320 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -209,6 +209,7 @@ public:
 void testRenameTable();
 
 void testAutoFill();
+void testCopyPasteFormulas();
 
 CPPUNIT_TEST_SUITE(Test);
 CPPUNIT_TEST(testCollator);
@@ -249,6 +250,7 @@ public:
 CPPUNIT_TEST(testSetBackgroundColor);
 CPPUNIT_TEST(testRenameTable);
 CPPUNIT_TEST(testAutoFill);
+CPPUNIT_TEST(testCopyPasteFormulas);
 CPPUNIT_TEST_SUITE_END();
 
 private:
@@ -4221,6 +4223,25 @@ void Test::testAutoFill()
 m_pDoc-DeleteTab(0);
 }
 
+void Test::testCopyPasteFormulas()
+{
+m_pDoc-InsertTab(0, Sheet1);
+m_pDoc-InsertTab(1, Sheet2);
+
+m_pDoc-SetString(0,0,0, =COLUMN($A$1));
+m_pDoc-SetInTest();
+CPPUNIT_ASSERT_DOUBLES_EQUAL(m_pDoc-GetValue(0,0,0), 1.0, 1e-08);
+ScDocFunc rDocFunc = m_xDocShRef-GetDocFunc();
+bool bMoveDone = rDocFunc.MoveBlock(ScRange(0,0,0), ScAddress( 10, 10, 0), 
false, false, false, true);
+
+// check that moving was succesful, mainly for editable tester
+CPPUNIT_ASSERT(bMoveDone);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(m_pDoc-GetValue(10,10,0), 1.0, 1e-8);
+rtl::OUString aFormula;
+m_pDoc-GetFormula(10,10,0, aFormula);
+CPPUNIT_ASSERT_EQUAL(aFormula, rtl::OUString(=COLUMN($A$1)));
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
 
 }
commit 0d3d836ec6541b7a1e0a7fa48195ebb678e2951e
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Apr 23 01:34:47 2012 +0200

I did not want to disable these tests

diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index c743e68..07782da 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -211,7 +211,6 @@ public:
 void testAutoFill();
 
 CPPUNIT_TEST_SUITE(Test);
-#if 0
 CPPUNIT_TEST(testCollator);
 CPPUNIT_TEST(testInput);
 CPPUNIT_TEST(testCellFunctions);
@@ -249,7 +248,6 @@ public:
 CPPUNIT_TEST(testJumpToPrecedentsDependents);
 CPPUNIT_TEST(testSetBackgroundColor);
 CPPUNIT_TEST(testRenameTable);
-#endif
 CPPUNIT_TEST(testAutoFill);
 CPPUNIT_TEST_SUITE_END();
 
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-5-3' - 5 commits - sax/qa sax/source writerfilter/source xmloff/source

2012-04-22 Thread David Tardon
 sax/qa/cppunit/test_converter.cxx  |   72 +++
 sax/source/tools/converter.cxx |  155 +++--
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |2 
 xmloff/source/core/xmluconv.cxx|2 
 4 files changed, 218 insertions(+), 13 deletions(-)

New commits:
commit 70ba1b80ced76c40ad5d43101db9a1f60a00011c
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Fri Apr 20 22:30:26 2012 +0200

Minor backporting fix

Signed-off-by: Michael Stahl mst...@redhat.com
Signed-off-by: Miklos Vajna vmik...@suse.cz
Signed-off-by: David Tardon dtar...@redhat.com

diff --git a/sax/qa/cppunit/test_converter.cxx 
b/sax/qa/cppunit/test_converter.cxx
index a8dad87..023177f 100644
--- a/sax/qa/cppunit/test_converter.cxx
+++ b/sax/qa/cppunit/test_converter.cxx
@@ -266,7 +266,7 @@ void doTestDouble(char const*const pis, double const rd,
 Converter::convertDouble(buf, od, true, nTargetUnit, nSourceUnit);
 OSL_TRACE(%s,
 ::rtl::OUStringToOString(buf.getStr(), 
RTL_TEXTENCODING_UTF8).getStr());
-CPPUNIT_ASSERT_EQUAL(is, buf.makeStringAndClear());
+CPPUNIT_ASSERT(buf.makeStringAndClear().equals(is));
 }
 
 void ConverterTest::testDouble()
commit 30878ae72d0881e9e3990bc6911a7e5ee4b64cd6
Author: Michael Stahl mst...@redhat.com
Date:   Fri Apr 20 18:39:36 2012 +0200

fdo#48969: add unit test for Converter::convertDouble

Signed-off-by: Fridrich Å trba fridrich.st...@bluewin.ch
Signed-off-by: Miklos Vajna vmik...@suse.cz
Signed-off-by: David Tardon dtar...@redhat.com

diff --git a/sax/qa/cppunit/test_converter.cxx 
b/sax/qa/cppunit/test_converter.cxx
index 4a3d364..a8dad87 100644
--- a/sax/qa/cppunit/test_converter.cxx
+++ b/sax/qa/cppunit/test_converter.cxx
@@ -39,11 +39,13 @@
 #include com/sun/star/util/DateTime.hpp
 #include com/sun/star/util/Date.hpp
 #include com/sun/star/util/Duration.hpp
+#include com/sun/star/util/MeasureUnit.hpp
 
 #include sax/tools/converter.hxx
 
 
 using namespace ::com::sun::star;
+using namespace ::com::sun::star::util::MeasureUnit;
 using sax::Converter;
 
 
@@ -58,10 +60,12 @@ public:
 
 void testDuration();
 void testDateTime();
+void testDouble();
 
 CPPUNIT_TEST_SUITE(ConverterTest);
 CPPUNIT_TEST(testDuration);
 CPPUNIT_TEST(testDateTime);
+CPPUNIT_TEST(testDouble);
 CPPUNIT_TEST_SUITE_END();
 
 private:
@@ -249,6 +253,74 @@ void ConverterTest::testDateTime()
 OSL_TRACE(\nSAX CONVERTER TEST END);
 }
 
+void doTestDouble(char const*const pis, double const rd,
+sal_Int16 const nSourceUnit, sal_Int16 const nTargetUnit)
+{
+::rtl::OUString const is(::rtl::OUString::createFromAscii(pis));
+double od;
+bool bSuccess(Converter::convertDouble(od, is, nSourceUnit, nTargetUnit));
+OSL_TRACE(%f, od);
+CPPUNIT_ASSERT(bSuccess);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(rd, od, 0.0001);
+::rtl::OUStringBuffer buf;
+Converter::convertDouble(buf, od, true, nTargetUnit, nSourceUnit);
+OSL_TRACE(%s,
+::rtl::OUStringToOString(buf.getStr(), 
RTL_TEXTENCODING_UTF8).getStr());
+CPPUNIT_ASSERT_EQUAL(is, buf.makeStringAndClear());
+}
+
+void ConverterTest::testDouble()
+{
+doTestDouble(42, 42.0, TWIP, TWIP);
+doTestDouble(42, 42.0, POINT, POINT);
+doTestDouble(42, 42.0, MM_100TH, MM_100TH);
+doTestDouble(42, 42.0, MM_10TH, MM_10TH);
+doTestDouble(42, 42.0, MM, MM); // identity don't seem to add unit?
+doTestDouble(42, 42.0, CM, CM);
+doTestDouble(42, 42.0, INCH, INCH);
+doTestDouble(2pt, 40.0, POINT, TWIP);
+doTestDouble(20pc, 1, TWIP, POINT);
+doTestDouble(4, 2.26771653543307, MM_100TH, TWIP);
+doTestDouble(4, 22.6771653543307, MM_10TH, TWIP);
+doTestDouble(4mm, 226.771653543307, MM, TWIP);
+doTestDouble(4cm, 2267.71653543307, CM, TWIP);
+doTestDouble(4in, 5760.0, INCH, TWIP);
+doTestDouble(1440pc, 1.0, TWIP, INCH);
+doTestDouble(567pc, 1.000125, TWIP, CM);
+doTestDouble(56.7pc, 1.000125, TWIP, MM);
+doTestDouble(5.67pc, 1.000125, TWIP, MM_10TH);
+doTestDouble(0.567pc, 1.000125, TWIP, MM_100TH);
+doTestDouble(42pt, 1.48166, POINT, CM);
+doTestDouble(42pt, 14.8166, POINT, MM);
+doTestDouble(42pt, 148.166, POINT, MM_10TH);
+doTestDouble(42pt, 1481.66, POINT, MM_100TH);
+doTestDouble(72pt, 1.0, POINT, INCH);
+doTestDouble(3.5in, 8.89, INCH, CM);
+doTestDouble(3.5in, 88.9, INCH, MM);
+doTestDouble(3.5in, 889.0, INCH, MM_10TH);
+doTestDouble(3.5in, 8890.0, INCH, MM_100TH);
+doTestDouble(2in, 144, INCH, POINT);
+doTestDouble(5.08cm, 2.0, CM, INCH);
+doTestDouble(3.5cm, 3500.0, CM, MM_100TH);
+doTestDouble(3.5cm, 350.0, CM, MM_10TH);
+doTestDouble(3.5cm, 35.0, CM, MM);
+doTestDouble(10cm, 283.464566929134, CM, POINT);
+doTestDouble(0.5cm, 283.464566929134, CM, TWIP);
+doTestDouble(10mm, 28.3464566929134, MM, POINT);
+

[Libreoffice-commits] .: 3 commits - sc/inc sc/source unusedcode.easy vcl/inc vcl/source

2012-04-22 Thread Muthu Subramanian
 sc/inc/dbdata.hxx   |1 
 sc/source/core/tool/dbdata.cxx  |5 
 unusedcode.easy |7 --
 vcl/inc/salgdi.hxx  |4 ---
 vcl/inc/vcl/outdev.hxx  |4 ---
 vcl/source/gdi/outmap.cxx   |   42 
 vcl/source/gdi/salgdilayout.cxx |   34 
 7 files changed, 97 deletions(-)

New commits:
commit d31aae4c9eea4f4aecea2a051518536b47aa8ab6
Author: Monica Ramirez Arceda mon...@probeta.net
Date:   Mon Apr 23 11:30:01 2012 +0530

Remove unused vcl methods.

diff --git a/unusedcode.easy b/unusedcode.easy
index b2ca35e..b09221f 100755
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -27,10 +27,6 @@ Matrix3d::Inverse() const
 Matrix3d::Matrix3d()
 PopupMenu::SetSelectedEntry(unsigned short)
 PropBrwMgr::GetChildWindowId()
-SalGraphics::DrawBitmap(SalTwoRect const*, SalBitmap const, unsigned int, 
OutputDevice const*)
-SalGraphics::drawAlphaBitmap(SalTwoRect const, SalBitmap const, SalBitmap 
const)
-SalGraphics::drawPolyLine(basegfx::B2DPolygon const, double, 
basegfx::B2DVector const, basegfx::B2DLineJoin)
-SalGraphics::drawPolyPolygon(basegfx::B2DPolyPolygon const, double)
 SanExtensionImpl::setCertExtn(com::sun::star::uno::Sequencesigned char, 
com::sun::star::uno::Sequencesigned char, unsigned char)
 SanExtensionImpl::setCertExtn(unsigned char*, unsigned int, unsigned char*, 
unsigned int, unsigned char)
 ScAddInAsyncs::Insert(ScAddInAsync* const, unsigned short)
diff --git a/vcl/inc/salgdi.hxx b/vcl/inc/salgdi.hxx
index e351ed3..6c99e46 100644
--- a/vcl/inc/salgdi.hxx
+++ b/vcl/inc/salgdi.hxx
@@ -405,10 +405,6 @@ public:
 const OutputDevice *pOutDev );
 voidDrawBitmap( const SalTwoRect* pPosAry,
 const SalBitmap rSalBitmap,
-SalColor nTransparentColor,
-const OutputDevice *pOutDev );
-voidDrawBitmap( const SalTwoRect* pPosAry,
-const SalBitmap rSalBitmap,
 const SalBitmap rTransparentBitmap,
 const OutputDevice *pOutDev );
 
diff --git a/vcl/source/gdi/salgdilayout.cxx b/vcl/source/gdi/salgdilayout.cxx
index 2197905..d750264 100644
--- a/vcl/source/gdi/salgdilayout.cxx
+++ b/vcl/source/gdi/salgdilayout.cxx
@@ -91,14 +91,6 @@ SalGraphics::~SalGraphics()
 
 // 
 
-bool SalGraphics::drawAlphaBitmap( const SalTwoRect,
-const SalBitmap, const SalBitmap )
-{
-return false;
-}
-
-// 
-
 void SalGraphics::mirror( long x, const OutputDevice *pOutDev, bool bBack ) 
const
 {
 long w;
@@ -411,14 +403,6 @@ voidSalGraphics::DrawRect( long nX, long nY, long 
nWidth, long nHeight, cons
 mirror( nX, nWidth, pOutDev );
 drawRect( nX, nY, nWidth, nHeight );
 }
-bool SalGraphics::drawPolyLine(
-const basegfx::B2DPolygon /*rPolyPolygon*/,
-double /*fTransparency*/,
-const basegfx::B2DVector /*rLineWidths*/,
-basegfx::B2DLineJoin /*eLineJoin*/)
-{
-return false;
-}
 
 void SalGraphics::DrawPolyLine( sal_uLong nPoints, const SalPoint* pPtAry, 
const OutputDevice *pOutDev )
 {
@@ -483,11 +467,6 @@ bool SalGraphics::DrawPolyPolygon( const 
::basegfx::B2DPolyPolygon i_rPolyPolyg
 return bRet;
 }
 
-bool SalGraphics::drawPolyPolygon( const ::basegfx::B2DPolyPolygon, double 
/*fTransparency*/)
-{
-return false;
-}
-
 sal_Bool SalGraphics::DrawPolyLineBezier( sal_uLong nPoints, const SalPoint* 
pPtAry, const sal_uInt8* pFlgAry, const OutputDevice* pOutDev )
 {
 sal_Bool bResult = sal_False;
@@ -600,19 +579,6 @@ voidSalGraphics::DrawBitmap( const SalTwoRect* pPosAry,
 else
 drawBitmap( pPosAry, rSalBitmap );
 }
-voidSalGraphics::DrawBitmap( const SalTwoRect* pPosAry,
-const SalBitmap rSalBitmap,
-SalColor nTransparentColor, const 
OutputDevice *pOutDev )
-{
-if( (m_nLayout  SAL_LAYOUT_BIDI_RTL) || (pOutDev  
pOutDev-IsRTLEnabled()) )
-{
-SalTwoRect pPosAry2 = *pPosAry;
-mirror( pPosAry2.mnDestX, pPosAry2.mnDestWidth, pOutDev );
-drawBitmap( pPosAry2, rSalBitmap, nTransparentColor );
-}
-else
-drawBitmap( pPosAry, rSalBitmap, nTransparentColor );
-}
 void SalGraphics::DrawBitmap( const SalTwoRect* pPosAry,
   const SalBitmap rSalBitmap,
   const SalBitmap rTransparentBitmap, const 
OutputDevice *pOutDev )
commit 2910933f2609b19d9c6c4b793288e1b2d9991080
Author: Santiago Martinez smvar...@gmail.com
Date:   Mon Apr 23 11:27:07 2012 +0530

Remove unused code in vcl

diff --git 

Re: [PATCH] fdo#39999: Changing spelling preferences requires application restart

2012-04-22 Thread Tommy
On Sat, 21 Apr 2012 15:34:09 +0200, Dézsi Szabolcs  
dezsisz...@hotmail.com wrote:




Hi!

Bug's page

After applying this patch, checking 'Check uppercase words' in options  
works without restarting LO.
It's very simple, a single line, but it took me a while to find the  
right place to start... :)

I hope that the patch is OK.

Szabolcs



another nice one from you!!!

and I still remember you fixed also OOo Bug 101726 - Speed up autocorrect  
replacement table loading time (that guys at OOo/Apache never fixed it)

https://issues.apache.org/ooo/show_bug.cgi?id=101726

since it seems that you are very good with spellchecking and autocorrect  
issue, would you please take a look at these?


LibO Bug 44580 - EasyHack: share autocorrect replacement table for misc.  
language subgroups

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

LibO Bug 46805 - large autocorrect database make LibO freeze when start  
typing

https://www.libreoffice.org/bugzilla/show_bug.cgi?id=46765

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


Re: [PUSHED][PATCH] WaE fixed in crashrep and extensions modules

2012-04-22 Thread David Ostrovsky


On 21.04.2012 23:30, Caolán McNamara wrote:

On Sat, 2012-04-21 at 15:50 +0200, David Ostrovsky wrote:

Hi,

I'm getting build errors in crashrep and extensions modules (whith
enabled --enable-werror option).
With these patches the warnings/errors are fixed.

Looks good, pushed, thanks for these.

I wonder why *I* didn't see them before though seeing as I build with
-Werror. crashrep is disabled by default, so that's understandable, but
the scanner stuff in extensions is built by default and I've got...

export CFLAGS=-Wp,-D_FORTIFY_SOURCE=2 -fstack-protector
--param=ssp-buffer-size=4
export CXXFLAGS=-Wp,-D_FORTIFY_SOURCE=2 -fstack-protector
--param=ssp-buffer-size=4
export ARCH_FLAGS=-Wp,-D_FORTIFY_SOURCE=2 -fstack-protector
--param=ssp-buffer-size=4

in my (Fedora 16) environment to generally get those extra warnings (I
thought). I knew that e.g. Ubuntu configured gcc to add some extra
warnings etc by default, but I had thought the above covered those
additions. Wonder what I'm missing to get your warnings ?, i.e. what's
your compiler version and distro ?

make -p extensions | grep T_CXXFLAGS
[...]
T_CXXFLAGS := -Wall -Wendif-labels -Wextra -fmessage-length=0 
-fno-common -pipe  -fPIC -Wshadow -Wsign-promo -Woverloaded-virtual  
-Wnon-virtual-dtor -fvisibility=hidden  -fvisibility-inlines-hidden  
-std=gnu++0x


make -p extensions | grep gb_CXXFLAGS_WERROR
[...]
gb_CXXFLAGS_WERROR := -Werror -DLIBO_WERROR
$(call gb_Helper_abbreviate_dirs, mkdir -p $(dir $(1)) $(dir $(4))  
$(gb_CXX) $(DEFS) $(if $(filter 
Library,$(TARGETTYPE)),$(gb_Library_LTOFLAGS)) $(T_CXXFLAGS) $(if 
$(WARNINGS_NOT_ERRORS),,$(gb_CXXFLAGS_WERROR)) -c $(3) -o $(1) -MMD -MT 
$(1) -MP -MF $(4) -I$(dir $(3)) $(INCLUDE_STL) $(INCLUDE))



errors without the patch are:

/home/david/projects/libreoffice-core/git/libo/extensions/source/scanner/sane.cxx: 
In member function 'sal_Bool Sane::Start(BitmapTransporter)':
/home/david/projects/libreoffice-core/git/libo/extensions/source/scanner/sane.cxx:817:72: 
error: ignoring return value of 'size_t fread(void*, size_t, size_t, 
FILE*)', declared with attribute warn_unused_result [-Werror=unused-result]
/home/david/projects/libreoffice-core/git/libo/extensions/source/scanner/sane.cxx: 
In function 'sal_uInt8 _ReadValue(FILE*, int)':
/home/david/projects/libreoffice-core/git/libo/extensions/source/scanner/sane.cxx:527:34: 
error: ignoring return value of 'size_t fread(void*, size_t, size_t, 
FILE*)', declared with attribute warn_unused_result [-Werror=unused-result]
/home/david/projects/libreoffice-core/git/libo/extensions/source/scanner/sane.cxx:531:30: 
error: ignoring return value of 'size_t fread(void*, size_t, size_t, 
FILE*)', declared with attribute warn_unused_result [-Werror=unused-result]

cc1plus: all warnings being treated as errors

/home/david/projects/libreoffice-core/git/libo/extensions/source/nsplugin/source/npshell.cxx: 
In function 'void NPP_StreamAsFile(NPP, NPStream*, const char*)':
/home/david/projects/libreoffice-core/git/libo/extensions/source/nsplugin/source/npshell.cxx:775:38: 
error: ignoring return value of 'ssize_t write(int, const void*, 
size_t)', declared with attribute warn_unused_result [-Werror=unused-result]

cc1plus: all warnings being treated as errors


the full command is:

[ build CXX ] extensions/source/scanner/sane.cxx
S=/home/david/projects/libreoffice-core/git/libo  
O=$S/solver/unxlngx6.pro  W=$S/workdir/unxlngx6.promkdir -p 
$W/CxxObject/extensions/source/scanner/ 
$W/Dep/CxxObject/extensions/source/scanner/  /usr/bin/ccache g++ 
-DCPPU_ENV=gcc3 -DENABLE_GRAPHITE -DENABLE_GTK -DGCC 
-DGXX_INCLUDE_PATH=/usr/include/c++/4.6 -DHAVE_GCC_VISIBILITY_FEATURE 
-DHAVE_THREADSAFE_STATICS -DLINUX -DNDEBUG -DOPTIMIZE 
-DOSL_DEBUG_LEVEL=0 -DSOLAR_JAVA -DSUPD=360 -DUNIX -DUNX -DX86_64 
-D_PTHREADS -D_REENTRANT-Wall -Wendif-labels -Wextra 
-fmessage-length=0 -fno-common -pipe  -fPIC -Wshadow -Wsign-promo 
-Woverloaded-virtual  -Wnon-virtual-dtor -fvisibility=hidden  
-fvisibility-inlines-hidden  -std=gnu++0x  -DEXCEPTIONS_ON -fexceptions 
-fno-enforce-eh-specs -O2  -Werror -DLIBO_WERROR -c 
$S/extensions/source/scanner/sane.cxx -o 
$W/CxxObject/extensions/source/scanner/sane.o -MMD -MT 
$W/CxxObject/extensions/source/scanner/sane.o -MP -MF 
$W/Dep/CxxObject/extensions/source/scanner/sane.d 
-I$S/extensions/source/scanner/  -I$O/inc/external -I$O/inc 
-I$S/solenv/inc -I/usr/lib/jvm/java-6-sun-1.6.0.26/include 
-I/usr/lib/jvm/java-6-sun-1.6.0.26/include/linux 
-I/usr/lib/jvm/java-6-sun-1.6.0.26/include/native_threads/include 
-I$W/UnoApiHeadersTarget/udkapi/normal 
-I$W/UnoApiHeadersTarget/offapi/normal



OS: Ubuntu oneiric, 11.10,
Compiler: gcc (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1


For the second patch I added a follow up commit of
e37ae322b07a02714b22cb663e1d7ab4f2072730 to fill in the todos. e.g. I
reckon it's best to compare how many bytes/members were written/read
with write/read fread/fwrite vs what was requested to detect partial
failure short 

Re: [RESOLVED] patch cell.cxx

2012-04-22 Thread Caolán McNamara
On Sun, 2012-04-22 at 00:30 +0200, Jose Manuel Recarey Quintans wrote:
 Hi. i send a patch for libreoffice (fich cell.cxx)
 thanks

Thanks for your efforts, patch is good. You got beaten to the punch on
this one by dd2230c90ff41b667bf0d750801eb0d2ab3b0317.

C.

p.s. The dbtools:: methods might be some of the lowest hanging left,
e.g. dbtools::SQLExceptionIteratorHelper

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


Re: Thanks for a fantastic Hackfest!

2012-04-22 Thread Korrawit Pruegsanusak
Hello all,

On Tue, Apr 17, 2012 at 15:36, Miklos Vajna vmik...@suse.cz wrote:
 On Mon, Apr 16, 2012 at 04:43:42PM +0200, Luc Castermans 
 luc.casterm...@gmail.com wrote:
 Apart from pasta cooking (looked nice!!), any outcomes, progrress
 which can be shared here?

 See http://planet.documentfoundation.org/

Wow! :-)

And I think it would be good to write it in release note in wiki as well.
http://wiki.documentfoundation.org/ReleaseNotes/3.6

Thanks! :-)
Best Regards,
-- 
Korrawit Pruegsanusak
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice-qa] minutes of ESC call ...

2012-04-22 Thread Francois Tigeot
On Sat, Apr 21, 2012 at 03:02:45PM -0500, Norbert Thiebaud wrote:
 On Sat, Apr 21, 2012 at 2:18 PM, Francois Tigeot ftig...@wolfpond.org wrote:
 
  If boxes are finally set up, they will be DragonFly + pkgsrc packages only,
  special software will have to be maintained by the developers themselves.
  I won't be able to help on that front, my hands are already full integrating
  LO into pkgsrc :-/
 
 what do you mean by 'special software' ?

Something not installable out of the box, i.e. not in the base system or
available packages.

 The goal would be for that box to be doing what _you_ would normally
 do to build lo on your platform, so that breakage are detected
 early...
 you can set it up so that it report to the web-service, but not

[...]

I think there's a misunderstanding here; there is a small chance I can
provide access to hardware resources but the software part will have to be
managed by volunteers (I thought that was what you were looking for).
Neither I nor other people involved in the DragonFly project I currently know
will have time to manage a tinderbox.

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


PATCH: made available under the MPL/LPGLv3+

2012-04-22 Thread Javier Silva Sanahuja
Hi:I send you a patch in order to erase the unused code: 
formula::FormulaTokenArray::AddBad(unsigned short const*).Best Regards Javier


patch_token
Description: Binary data


patch_token2
Description: Binary data


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


[PATCH] Remove unused code

2012-04-22 Thread Santiago Martinez
This patch removes unused code as listed in unusedcode.easy


0001-Remove-unused-code-in-sw.patch
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


PATCH: Remove unused code

2012-04-22 Thread Ferran Vidal i Marginet

Hello,These is the patch that I've created. 
Licence: made available under the MPL/LGPLv3+
Ferran Vidal
  From 5779030032ab9fd94c201a5797fea601011a8ffd Mon Sep 17 00:00:00 2001
From: Ferran Vidal vidalmargi...@hotmail.com
Date: Sun, 22 Apr 2012 21:10:08 +0200
Subject: [PATCH] Remove unused code

---
 sc/inc/dbdata.hxx  |1 -
 sc/source/core/tool/dbdata.cxx |5 -
 unusedcode.easy|1 -
 3 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/sc/inc/dbdata.hxx b/sc/inc/dbdata.hxx
index 9dcd457..f770deb 100644
--- a/sc/inc/dbdata.hxx
+++ b/sc/inc/dbdata.hxx
@@ -218,7 +218,6 @@ public:
 void insert(ScDBData* p);
 void erase(iterator itr);
 bool empty() const;
-size_t size() const;
 bool operator== (const AnonDBs r) const;
 };
 
diff --git a/sc/source/core/tool/dbdata.cxx b/sc/source/core/tool/dbdata.cxx
index 36d1914..60e6d28 100644
--- a/sc/source/core/tool/dbdata.cxx
+++ b/sc/source/core/tool/dbdata.cxx
@@ -852,11 +852,6 @@ bool ScDBCollection::AnonDBs::empty() const
 return maDBs.empty();
 }
 
-size_t ScDBCollection::AnonDBs::size() const
-{
-return maDBs.size();
-}
-
 bool ScDBCollection::AnonDBs::operator== (const AnonDBs r) const
 {
 return maDBs == r.maDBs;
diff --git a/unusedcode.easy b/unusedcode.easy
index b62d53a..7a6a78b 100755
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -62,7 +62,6 @@ ScConditionalFormats_Impl::Remove(unsigned short, unsigned short)
 ScCsvControl::ScCsvControl(Window*, ScCsvLayoutData const, long)
 ScDBCollection::AnonDBs::erase(boost::void_ptr_iterator__gnu_debug::_Safe_iterator__gnu_cxx::__normal_iteratorvoid**, std::__cxx1998::vectorvoid*, std::allocatorvoid*  , std::__debug::vectorvoid*, std::allocatorvoid*  , ScDBData)
 ScDBCollection::AnonDBs::findByTable(short) const
-ScDBCollection::AnonDBs::size() const
 ScDPItemData::ScDPItemData(rtl::OUString const*)
 ScDPItemData::SetErrorString(rtl::OUString const)
 ScDPLabelData::ScDPLabelData(rtl::OUString const, short, bool)
-- 
1.7.5.4

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


[PATCH] Some fixes for Clang warnings

2012-04-22 Thread Catalin Iacob
I tried to build with Clang and --enable-werror to see if that finds
any bugs. Attached are results so far; there is still quite some to
compile and Clang also consistently crashes on a file.

All this is with self compiled Clang from trunk revision 152134 from 6
March 2012.

Only patch 6 solves a real bug, but in CLucene not LO. I sent the same
patch upstream but got no response so far.

There are quite some more implicit conversion changes signedness
warnings left in connectivity, is it ok to do larger changes like
patches 8 and 9 do (switch method arguments or class members from
signed to unsigned if that makes sense for example) or should I just
silence the warnings with casts?

Thanks,
Catalin


0001-WaE-Clang-empty-forloop-body.patch
Description: Binary data


0002-WaE-Clang-unused-variable.patch
Description: Binary data


0003-WaE-Clang-unused-variable.patch
Description: Binary data


0004-WaE-Clang-adding-int-to-a-string-does-not-append-to-.patch
Description: Binary data


0005-WaE-Clang-C-linkage-warning.patch
Description: Binary data


0006-WaE-patch-CLucene-to-avoid-Clang-unused-parameter-wa.patch
Description: Binary data


0007-WaE-Clang-expression-result-unused.patch
Description: Binary data


0008-WaE-Clang-implicit-conversion-changes-signedness.patch
Description: Binary data


0009-WaE-Clang-implicit-conversion-changes-signedness.patch
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] Remove unused code (vlc)

2012-04-22 Thread Santiago Martinez
This patch removes unused code as listed in unusedcode.easy


0001-Remove-unused-code-in-vlc.patch
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: make check problem in libtest_smoketest building master

2012-04-22 Thread David Ostrovsky

Hi Matúš,

your patch was still not pushed.

So we have two options here:
1. push your patch (I attached it with description ;-)
2. use make interactive variable LDFLAGS, a lá make 
LDFLAGS='-Wl,--no-as-needed' check


Any ideas on this?

Ciao
David

On 13.04.2012 12:40, Matúš Kukan wrote:

On 11 April 2012 14:24, Noel Grandinn...@peralex.com  wrote:

Building on Ubuntu 64-bit, make check is failing because of a missing
symbol in libtest_smoketest.so.
Doing a make smoketest.clean doesn't seem to help.
The library does genuinely seem to be missing the symbol (readelf log
attached).

Any ideas for tracking this down?

Does attached diff help ?
There is
-$(eval $(call gb_CppunitTest_use_libraries,smoketest,\
+$(eval $(call gb_CppunitTest_use_library_objects,smoketest,\

I did not know what commit message to write there.
If it helps feel free to push it anybody, please.

Best,
Matus


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


From 9c521b5029d9b9ff4636f775fb99c8c5d279f331 Mon Sep 17 00:00:00 2001
From: David Ostrovsky david.ostrov...@gmx.de
Date: Sun, 22 Apr 2012 22:36:53 +0200
Subject: [PATCH] fix ld toolchain problem defaulting to --as-needed option on
 ubuntu 11.10

---
 smoketest/CppunitTest_smoketest.mk |   12 +++-
 1 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/smoketest/CppunitTest_smoketest.mk b/smoketest/CppunitTest_smoketest.mk
index cbfc3d3..ce5625f 100644
--- a/smoketest/CppunitTest_smoketest.mk
+++ b/smoketest/CppunitTest_smoketest.mk
@@ -29,12 +29,14 @@ $(eval $(call gb_CppunitTest_CppunitTest,smoketest))
 
 $(eval $(call gb_CppunitTest_abort_on_assertion,smoketest))
 
-$(eval $(call gb_CppunitTest_use_api,smoketest,\
-	offapi \
-	udkapi \
-))
-
 $(eval $(call gb_CppunitTest_use_libraries,smoketest,\
+	cppu \
+	cppuhelper \
+	sal \
+	unotest \
+ ))
+
+$(eval $(call gb_CppunitTest_use_library_objects,smoketest,\
 	smoketest \
 ))
 
-- 
1.7.5.4

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


Veja minhas fotos no Shtyle.fm

2012-04-22 Thread MARCOS RODRIGUES ( PRODUTOR)




	
		
			

	
		Olá libreoffice@lists.freedesktop.org!
	

			
		
	
	
		
			

	
	

	
		Veja minhas fotos no Shtyle.fm
		
		Eu criei um perfil no Shtyle.fm para compartilhar meus arquivos, fotos, fazer novos amigos e quero te adicionar como amigo.
		
		Ver meu Perfil e Fotos 
		
		Atenciosamente,
		
		MARCOS RODRIGUES ( PRODUTOR)
		
		
	

			
		
	
	
		
			Você pode desistir de emails Shtyle.fm.
		
	




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


[PATCH] Remove unused vcl methods.

2012-04-22 Thread Mònica Ramírez Arceda
Hi,

This patch removes some unused code from vcl module.

Thanks for your work,
Mònica

From ee979a16e42d858a8d5de35c186b73f84acf118b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?M=C3=B2nica=20Ram=C3=ADrez=20Arceda?= mon...@probeta.net
Date: Sun, 22 Apr 2012 12:28:54 +0200
Subject: [PATCH] Remove unused vcl methods.

Removed methods are:
  * SalGraphics::DrawBitmap(SalTwoRect const*, SalBitmap const, unsigned int, OutputDevice const*)
  * SalGraphics::drawAlphaBitmap(SalTwoRect const, SalBitmap const, SalBitmap const)
  * SalGraphics::drawPolyLine(basegfx::B2DPolygon const, double, basegfx::B2DVector const, basegfx::B2DLineJoin)
  * SalGraphics::drawPolyPolygon(basegfx::B2DPolyPolygon const, double)
---
 unusedcode.easy |4 
 vcl/inc/salgdi.hxx  |4 
 vcl/source/gdi/salgdilayout.cxx |   34 --
 3 files changed, 0 insertions(+), 42 deletions(-)

diff --git a/unusedcode.easy b/unusedcode.easy
index b62d53a..ccb1daa 100755
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -29,10 +29,6 @@ OutputDevice::LogicToPixel(PolyPolygon const, MapMode const) const
 OutputDevice::PixelToLogic(PolyPolygon const, MapMode const) const
 PopupMenu::SetSelectedEntry(unsigned short)
 PropBrwMgr::GetChildWindowId()
-SalGraphics::DrawBitmap(SalTwoRect const*, SalBitmap const, unsigned int, OutputDevice const*)
-SalGraphics::drawAlphaBitmap(SalTwoRect const, SalBitmap const, SalBitmap const)
-SalGraphics::drawPolyLine(basegfx::B2DPolygon const, double, basegfx::B2DVector const, basegfx::B2DLineJoin)
-SalGraphics::drawPolyPolygon(basegfx::B2DPolyPolygon const, double)
 SanExtensionImpl::setCertExtn(com::sun::star::uno::Sequencesigned char, com::sun::star::uno::Sequencesigned char, unsigned char)
 SanExtensionImpl::setCertExtn(unsigned char*, unsigned int, unsigned char*, unsigned int, unsigned char)
 ScAddInAsyncs::Insert(ScAddInAsync* const, unsigned short)
diff --git a/vcl/inc/salgdi.hxx b/vcl/inc/salgdi.hxx
index e351ed3..6c99e46 100644
--- a/vcl/inc/salgdi.hxx
+++ b/vcl/inc/salgdi.hxx
@@ -405,10 +405,6 @@ public:
 const OutputDevice *pOutDev );
 voidDrawBitmap( const SalTwoRect* pPosAry,
 const SalBitmap rSalBitmap,
-SalColor nTransparentColor,
-const OutputDevice *pOutDev );
-voidDrawBitmap( const SalTwoRect* pPosAry,
-const SalBitmap rSalBitmap,
 const SalBitmap rTransparentBitmap,
 const OutputDevice *pOutDev );
 
diff --git a/vcl/source/gdi/salgdilayout.cxx b/vcl/source/gdi/salgdilayout.cxx
index 2197905..d750264 100644
--- a/vcl/source/gdi/salgdilayout.cxx
+++ b/vcl/source/gdi/salgdilayout.cxx
@@ -91,14 +91,6 @@ SalGraphics::~SalGraphics()
 
 // 
 
-bool SalGraphics::drawAlphaBitmap( const SalTwoRect,
-const SalBitmap, const SalBitmap )
-{
-return false;
-}
-
-// 
-
 void SalGraphics::mirror( long x, const OutputDevice *pOutDev, bool bBack ) const
 {
 long w;
@@ -411,14 +403,6 @@ voidSalGraphics::DrawRect( long nX, long nY, long nWidth, long nHeight, cons
 mirror( nX, nWidth, pOutDev );
 drawRect( nX, nY, nWidth, nHeight );
 }
-bool SalGraphics::drawPolyLine(
-const basegfx::B2DPolygon /*rPolyPolygon*/,
-double /*fTransparency*/,
-const basegfx::B2DVector /*rLineWidths*/,
-basegfx::B2DLineJoin /*eLineJoin*/)
-{
-return false;
-}
 
 void SalGraphics::DrawPolyLine( sal_uLong nPoints, const SalPoint* pPtAry, const OutputDevice *pOutDev )
 {
@@ -483,11 +467,6 @@ bool SalGraphics::DrawPolyPolygon( const ::basegfx::B2DPolyPolygon i_rPolyPolyg
 return bRet;
 }
 
-bool SalGraphics::drawPolyPolygon( const ::basegfx::B2DPolyPolygon, double /*fTransparency*/)
-{
-return false;
-}
-
 sal_Bool SalGraphics::DrawPolyLineBezier( sal_uLong nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry, const OutputDevice* pOutDev )
 {
 sal_Bool bResult = sal_False;
@@ -600,19 +579,6 @@ voidSalGraphics::DrawBitmap( const SalTwoRect* pPosAry,
 else
 drawBitmap( pPosAry, rSalBitmap );
 }
-voidSalGraphics::DrawBitmap( const SalTwoRect* pPosAry,
-const SalBitmap rSalBitmap,
-SalColor nTransparentColor, const OutputDevice *pOutDev )
-{
-if( (m_nLayout  SAL_LAYOUT_BIDI_RTL) || (pOutDev  pOutDev-IsRTLEnabled()) )
-{
-SalTwoRect pPosAry2 = *pPosAry;
-mirror( pPosAry2.mnDestX, pPosAry2.mnDestWidth, pOutDev );
-drawBitmap( pPosAry2, rSalBitmap, nTransparentColor );
-}
-else
-drawBitmap( pPosAry, rSalBitmap, 

[PATCH] fdo#45664 EasyHack: Calc can't export the cells formulas to CSV (only the cells values)

2012-04-22 Thread Florent Gallaire
I think this patch is clean. I hope Eike Rathke will agree.

Best regards

Florent

-- 
FLOSS Engineer  Lawyer


0001-fdo-45664-EasyHack-Add-a-Save-cell-formulas-checkbox.patch
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [PUSHED:3-5 3-5-3] fdo#48356 fix RTF import of special unicode characters

2012-04-22 Thread David Tardon
On Sat, Apr 21, 2012 at 09:33:48PM +0100, Caolán McNamara wrote:
 On Fri, 2012-04-20 at 15:49 +0200, Andras Timar wrote:
  Hi,
  
  2012/4/20 Miklos Vajna vmik...@suse.cz:
   Hi,
  
   See
   http://cgit.freedesktop.org/libreoffice/core/commit/?id=69259c6
  
  The fix works. 
 
 Looks ok +1, one more reviewer required for 3-5-3, right ?

+1

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


Re: [PUSHED-3-5 3-5-3] fdo#48969 ODF import measure conversion regression

2012-04-22 Thread David Tardon
On Sat, Apr 21, 2012 at 09:56:36AM +0200, Miklos Vajna wrote:
 On Fri, Apr 20, 2012 at 10:39:08PM +0200, Fridrich Strba 
 fridrich.st...@graduateinstitute.ch wrote:
  I cherry-picked the commits into 3-5 branch and added
  
  http://cgit.freedesktop.org/libreoffice/core/commit/?h=libreoffice-3-5id=580a7f24c373cd8cf068fc92fdb153025e6d0a1d
  
  for fixing backporting issues.
  
  We need 2 more reviewers to get all that bunch of 4 patches to 3.5.3.
  Would be nice to have this regression fixed asap.
 
 +1 from me, looks reasonable.

+1

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


Re: [Pushed] [PATCH] Remove unused vcl methods.

2012-04-22 Thread Muthu Subramanian K

Thank you for the patch! I believe this is your first patch?
Can you confirm that this (and possibly your future contributions) is 
licensed under the MPL/LGPLv3+ dual license, please?


Thank you so much again!
Muthu Subramanian

On 04/23/2012 05:48 AM, Mònica Ramírez Arceda wrote:

Hi,

This patch removes some unused code from vcl module.

Thanks for your work,
Mònica




___
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: [Pushed] [PATCH] Remove unused code (vlc)

2012-04-22 Thread Muthu Subramanian K

Thank you!

On 04/23/2012 02:06 AM, Santiago Martinez wrote:

This patch removes unused code as listed in unusedcode.easy


___
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: [Pushed] PATCH: Remove unused code

2012-04-22 Thread Muthu Subramanian K

Pushed. Thank you!

On 04/23/2012 12:44 AM, Ferran Vidal i Marginet wrote:

Hello,
These is the patch that I've created.

Licence: made available under the MPL/LGPLv3+

Ferran Vidal


___
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: [Libreoffice-qa] [ANN] LibreOffice 3.5.2 RC2 test builds available

2012-04-22 Thread Cor Nouws

Hi Pedro,

thanks for noticing ... I added Michael and Fridrich to cc.


Pedro wrote (22-04-12 01:43)


Michael Meeks-2 wrote


Sure :-) luckily it is a really trivial bug to fix - it looks (to me)
like the same bug as bug#45584 - Thorsten: dudie - you fixed only 1/2 a
blocker bug symptom (ie. only for Mac) :-)


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


So - Fridrich is going to do a re-spin. The (only) change (in a
nutshell) is to delete the cairocanvas.uno.dll from the program/
directory - so you can even test it before it goes live.

Thanks again for highlighting this ! both the image and text problems
had the same underlying (silly) cause.



I think this was not cherry-picked or whatever you call it to master.

I can see exactly the same problem in version 3.6.0alpha0+  (Build ID:
8a78020) and it is fixed by disabling Hardware acceleration.

Should I REOPEN the bug?


--
 - Cor
 - http://nl.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] Bug Triage best practice: Change or not change assignee?

2012-04-22 Thread Bjoern Michaelsen
Hi Rainer,

you miss some of the most important community mechanics at work here. See
comments below.

On Sun, Apr 22, 2012 at 08:14:47AM +0200, Rainer Bielefeld wrote:
 That's something to what I might agree. But when I ask John Doe to
 contribute some more information, I (QA) remain owner. But that
 are quibbles.

No, this is quite important and not quibbles. QA is having a very heavy
workload and we need to spread responsibilities, because:
a) we need QA(*) keyplayers and esp. you for the big picture
b) we need to trust contributors (that includes reporters) to do their part,
   not only so that we have the more skilled contributors being able to have
   time to keep an overview, but also as this is empowering them. You need to
   give people a chance to do their part -- that way you will grow the
   community and engage contributors into the project.

 I did a query in bugzilla.mozilla.org over the last 60 days, in the
 15000 Bugs I saw 3000 where Reporter and Assignee are identical, ...

Thats ~20% of the bugs, so a very common mem.

 b) Bugzilla help might worry reporter. The person in charge of
 resolving the bug, does that mean he will have to pay a fine if he
 does not resolve the bug? ;-)

_This_. Thats not a disadvantage. Its an advantage. It challenges the reporter
to get into action. Even if he has the feeling too much is asked from him, he
will do want he can and then state that he cant provide more. If that bug is
then picked up with a thank you very much this is all we needed to push this
forward he will be relieved and feel empowered (thinking that was easy) and
motivated to continue contributing.

TDF/LibreOffice is a meritocraty. We are there for the people who get things
done, not to comfort those that conplain without contributing.

 c) If a developer Assignee needs additional info, should he reassign
 the Bug to the reporter, so that we will have to check the history
 who might be really fixing the bug?

Well, I as a dev do this usually in a two stage approach: I first just post a
comment: @Reporter: Could you tell me, if I need foo or bar? without changing
assignee etc. For most cases that already gets me the info I need.
If nothing happened after ~1 week, I will change the assignee to reporter, cc
myself if not already and comment @Reporter: I cant proceed without the
foo/bar info.  Please provide it and assign the bug back to me. That usually
gets you the info very fast as:
a) the reporter already feels guilty about not answering the first time
b) he might feel a bit uncomfortable being the assignee, but providing the info
   gives him an easy way out. And being allowed (or even told) to assign a bug 
to
   a developer is usually very motivating for reporters -- making him feel
   great and empowered.

If he forgets to reassign, but provides the info this will not go unnoticed as
I (the dev) still is on CC.

tl;dr: This approach in the long run gets more people involved and motivated,
helping us to keep our keyplayer (like you) for the important stuff.  Yes, you
have to trust people more than we do now -- that is the way to empowerment will
make some of them contributors, growing our QA community. That is what we
really need to aim for.

Best,

Bjoern

(*) You should never think of QA as I, even if it sometimes feels that way:
It will be a selffulfilling prophecy and hamper community growth.
___
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] minutes of ESC call ...

2012-04-22 Thread Francois Tigeot
On Sat, Apr 21, 2012 at 03:02:45PM -0500, Norbert Thiebaud wrote:
 On Sat, Apr 21, 2012 at 2:18 PM, Francois Tigeot ftig...@wolfpond.org wrote:
 
  If boxes are finally set up, they will be DragonFly + pkgsrc packages only,
  special software will have to be maintained by the developers themselves.
  I won't be able to help on that front, my hands are already full integrating
  LO into pkgsrc :-/
 
 what do you mean by 'special software' ?

Something not installable out of the box, i.e. not in the base system or
available packages.

 The goal would be for that box to be doing what _you_ would normally
 do to build lo on your platform, so that breakage are detected
 early...
 you can set it up so that it report to the web-service, but not

[...]

I think there's a misunderstanding here; there is a small chance I can
provide access to hardware resources but the software part will have to be
managed by volunteers (I thought that was what you were looking for).
Neither I nor other people involved in the DragonFly project I currently know
will have time to manage a tinderbox.

-- 
Francois Tigeot
___
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 49047] CONFIGURATION: Dimensional Analysis Wish

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49047

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

   Severity|normal  |enhancement

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 45749] EDITING: Undo stack with wrong sort order and incomplete

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45749

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

Summary|EDITING: Undo does not work |EDITING: Undo stack with
   |corretly in Impress |wrong sort order and
   ||incomplete

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49034] EDITING: UNDO for text inputs in draw objects does not undo

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49034

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|minor   |normal
 CC||LibreOffice@bielefeldundbus
   ||s.de, tbehr...@suse.com
 Ever Confirmed|0   |1
Summary|Draw, Impress EDITING:  |EDITING: UNDO for text
   |Ctrl-Z behaves unexpectedly |inputs in draw objects does
   |when editing text inside of |not undo
   |draw objects|
Version|LibO 3.5.2 Release  |LibO 3.4.1 RC1
  Component|Presentation|Drawing

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-04-21 23:35:36 PDT ---
[Reproducible] with parallel  installation of  Master LOdev 3.6.0alpha0+  –
WIN7 Home Premium (64bit) ENGLISH UI [Build ID: 8a78020] (tinderbox:
Win-x86@6-fast pull time 2012-04-18 23:51:20) for any draw-element-text UNDO,
does not matter whether control+z or icon or Edit menu.

Same with 3.4.5 and Daily nearby 3.4.1RC
In 3.3.3 undo worked fine for this case

This one might be related to 
Bug 45749 - EDITING: Undo stack with wrong sort order and incomplete
Bug 40165 - [EDITING] Undo retains overwriting text
Bug 36138 - EDITING: UNDO button inactive also in DRAW

It seems the DRAW undo urgently needs rework

@Thorsten:
Can you please check whether you can fix this or reassign other related UNDO
bugs to default assignee?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49043] Inserting External Data in Table problem

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49043

--- Comment #2 from Nicola Ricciarelli ricci...@libero.it 2012-04-22 00:23:15 
UTC ---
(In reply to comment #1)
 Whatever version I use but 3.3.4, nothing happens.
 The link you gave want to define several cookies: did you try with a website
 which does not that?
 
 Best regards. JBF


Other links works good, but query links are more simple. If you try that link
with Libreoffice 3.4.6 using Windows or Linux, in both cases it works
perfectly: appears the Import Option window, than the list of available tables
to choose and the infos are correctly imported. Libreoffrice 3.5.2 and 3.5.3RC1
instead surely have problems with that link. If it's a cookies problem, it's a
restriction introduced with the new 3.5.x versions. (As 3.5.0 and 3.5.1
versions are nomore available, I've not been able to test if that versions had
that problem too or if it's a more recent problem). I've indicated that link
because that's my primary source for such datas and if I try to insert a new
external link source, passing from working perfectly to nothing working .. that
means something happened in the meanwhile).

Nicola

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48692] TABLES: Writer corrupts large tables

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48692

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

Summary|Writer corrupts large   |TABLES: Writer corrupts
   |tables  |large tables

--- Comment #16 from Roman Eisele b...@eikota.de 2012-04-22 01:23:26 PDT ---
I forgot that we should add the TABLES keyword to the Summary, in order to make
this bug easier to find etc.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42567] Crash at loading a file with text in large table, weblayout view

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42567

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 CC||b...@eikota.de

--- Comment #5 from Roman Eisele b...@eikota.de 2012-04-22 01:34:24 UTC ---
Looks like a Linux- or Ubuntu-only problem:

Can't reproduce on MacOS X 10.6.8, neither with LibreOffice 3.4.6 nor with
LibreOffice 3.5.2, both with German UI. The file opens without any problems;
zooming in and out is rather slow, but works fine. Hope it helps a little bit
...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 43677] FILESAVE: Math formula object lost when saving as docx

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43677

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 CC||b...@eikota.de

--- Comment #2 from Roman Eisele b...@eikota.de 2012-04-22 01:47:20 UTC ---
NOT reproducible anymore for me with LibreOffice 3.5.2.2 (Build-ID:
281b639-6baa1d3-ef66a77-d866f25-f36d45f), German UI, running on MacOS X 10.6.8.

Following the steps given in the original description (@Gryllida: thank you
very much for your exact description!), everything works as expected: when I
re-open the file, the equation object is there.

There is a good chance that this bug really got fixed in between; there have
been some fixes to formula import/export to/from .docx.

@Gryllida,
@tester8:
Could you please try again with LibreOffice 3.5.2 (or newer), if you can still
reproduce the problem? If NOT, we can close this bug report as
RESOLVED/WORKSFORME ...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48413] : Command line bulk conversion from doc to odf not working

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48413

--- Comment #2 from zu...@yahoo.com 2012-04-22 02:03:09 PDT ---
I installed LibreOffice 3.5.1rc1 and tried out the following command line
argument:

C:\Docs\Infor %i in (*.doc) do soffice.exe --headless --convert-to odf
--outdir C:\Docs\Out %i

Output:

C:\Docs\Insoffice.exe --headless --convert-to odf --outdir C:\Docs\Out
File1.doc

C:\Docs\Insoffice.exe --headless --convert-to odf --outdir C:\Docs\Out
File2.doc

C:\Docs\Insoffice.exe --headless --convert-to odf --outdir C:\Docs\Out
File3.doc

The first file was correctly converted, but conversion of subsequent files
failed. It would seem that Windows starts the three calls in parallel, which
causes us to run into the bug where the command line fail to succeed if
LibreOffice is already running (bug 37531). I saw a lot of instances of
soffice.exe and soffice.bin in Taskmanager.

I tried using an Ubuntu 11.04 live cd. With command line arguments similar to
the one in my original bug report, I got full conversion of the contents of
C:\Docs\In, so it seems like it is a Windows bug.

On a side note, I made a small .net tool to convert the files one at a time, so
I no longer need a workaround.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 47511] PDF: Writer: exporting a document as pdf file will crash Writer.

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47511

--- Comment #4 from Roman Eisele b...@eikota.de 2012-04-22 02:05:55 PDT ---
Similar to bug 46256 - LibreOffice 3.5 Writer crashes when making PDF. But it
is hard to say whether this is the same bug or just a similar one. So I don't
think we should mark one of these bugs as duplicate.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 46256] LibreOffice 3.5 Writer crashes when making PDF

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46256

--- Comment #11 from Roman Eisele b...@eikota.de 2012-04-22 02:06:56 PDT ---
Similar to bug 47511 - PDF: Writer: exporting a document as pdf file will
crash Writer. But it is hard to say whether this is the same bug or just a
similar one. So I don't think we should mark one of these bugs as duplicate.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 46256] LibreOffice 3.5 Writer crashes when making PDF

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46256

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

   Platform|x86 (IA32)  |All
   Keywords||regression

--- Comment #12 from Roman Eisele b...@eikota.de 2012-04-22 02:40:48 PDT ---
[Not reproducible] with LibreOffice 3.5.2.2 (Build-ID:
281b639-6baa1d3-ef66a77-d866f25-f36d45f), German UI, running on MacOS X 10.6.8,
German UI, with Evgeny's sample document: exported to PDF without problems.

Therefore, as far as I see, the only comment which still mentions the problem
with LibreOffice 3.5.2 (!) is comment #5 by Sandy Kerr. Howevery, Sandy Kerr
mentions in comment #6 that she could export Evgeny's sample document without
problems. So the problem mentionend by Evgeny in comment #2 and #3 with
LibreOffice 3.5.1 seems to be fixed in LibreOffice 3.5.2 for everybody (cf.
comment #4!). Therefore, it seems probable that the problems mentioned by Sandy
Kerr in comment #5 have a different root that the problems mentioned in comment
#2, comment #3, comment #4; and, while Evgeny's problem seems fixed with
LibreOffice 3.5.2, Sandy Kerr's problems are not.

@Sandy Kerr:
Is it possible for you to provide a sample document like the ones you mention
in comment #5, that still crashes when LibreOffice 3.5.2 when you try to export
it as PDF? If your documents contain confidential informations, could you
please try to anonymize such a document, I mean, replace confidential
information by '' or so, in order to get a file which is no longer
confidential but still triggers the bug, i.e. still crashes LibreOffice? This
would be very very helpful. Thank you in advance!

@skadi...@gmail.com (original reporter):
Could you please try if LibreOffice 3.5.2 still crashes when you export your
documents as PDF? It would be very helpful to know if the bug you see is of the
kind fixed in LibreOffice 3.5.2 (see comment #7), or if the bug you see still
persists in LibreOffice 3.5.2. Thank you in advance!

Keyword 'regression' added, because both the original description and comment
#5 tell us that earlier versions did not have this bug.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49050] New: FILESAFE Background of the opened PPTX file is lost when saving as ODP

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49050

 Bug #: 49050
   Summary: FILESAFE Background of the opened PPTX file is lost
when saving as ODP
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.2 Release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: Presentation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: serhi...@meta.ua


Created attachment 60445
  -- https://bugs.freedesktop.org/attachment.cgi?id=60445
Background  is lost on saving as ODP

In the attachment there is a PPTX file.
When I open this file it has background. When I save it as ODP, the background
is lost.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42567] Crash at loading a file with text in large table, weblayout view

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42567

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME

--- Comment #6 from Björn Michaelsen bjoern.michael...@canonical.com 
2012-04-22 03:03:31 PDT ---
Opens fine on Ubuntu 12.04 (beta) with libreoffice-1:3.5.2-2ubuntu1, so
resolving as WORKSFORME.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42567] Crash at loading a file with text in large table, weblayout view

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42567

--- Comment #7 from Björn Michaelsen bjoern.michael...@canonical.com 
2012-04-22 03:10:18 PDT ---
btw: How comes that people you guys are still inferring Ubuntu-only after
comment 3?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49031] TDF Site outdated, broken links of LibreOffice portable 3.5

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49031

Florian Effenberger flo...@documentfoundation.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #2 from Florian Effenberger flo...@documentfoundation.org 
2012-04-22 03:14:31 PDT ---
Thanks for the note, have fixed it!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42567] Crash at loading a file with text in large table, weblayout view

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42567

--- Comment #8 from Björn Michaelsen bjoern.michael...@canonical.com 
2012-04-22 03:25:19 PDT ---
@David: If the problem persists for you although it is not reproducable for the
others here, please try the following:
Make a VirtualBox and install Ubuntu with LibreOffice (same versions) in it,
open your document there. If the problem does not happen in the VirtualBox, but
on your native machine, this likely not a bug in LibreOffice, but in your
X11-driver (graphics driver). In that case, please report a bug on launchpad
against your graphics driver.

If it fails even in the VirtualBox, I wonder why we can not reproduce it, but
you can try the LibreOffice 3.5.2 version from
https://launchpad.net/~libreoffice/+archive/ppa -- maybe that fixes your
problem.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49051] New: Table of contents shading not visible at positions with character

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49051

 Bug #: 49051
   Summary: Table of contents shading not visible at positions
with character
Classification: Unclassified
   Product: LibreOffice
   Version: LibO Master
  Platform: Other
OS/Version: Linux (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: c...@nouenoff.nl


Open a document with TOC
It always has a shading

Open it in Daily from master
  no shading, or only partly

No idea if this is intentional... I guess not

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49051] Table of contents shading not visible at positions with character

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49051

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl
   Keywords||regression

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48929] Presentation mode with video closes the software

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48929

--- Comment #7 from Eliane Domingos de Sousa elianedomin...@gmail.com 
2012-04-22 04:44:30 UTC ---
Hi Jean,

The installations were made from TDF. The hardware with kubuntu is not the same
the others systems. I'll do the test with the third computer that I have here. 

More information: this situation is happening with my client in Brazil. The
problem is happening in many computers with different periphericals, different
OS (Ubuntu, Windows Xp and 7) and LIBO 3.5.2. When they reported the problem
for me, I made the tests and the problem occured with me too.

I have no idea what is happening. The only thing that I know is that I made a
test with LIBO 3.4.6 and it is working well. To contain the problem in the
client, I suggested the installation of LIBO 3.4.6.

Thanks.

Eliane

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 46647] FILEOPEN: error when opening documents with the extension. doc

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46647

--- Comment #1 from Eliane Domingos de Sousa elianedomin...@gmail.com 
2012-04-22 06:06:36 PDT ---
Hello Leo,

Did you try to test this situation in the LibreOffice 3.5.2 ?

Could you attach the file for a test?

Best

Eliane

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48929] Presentation mode with video closes the software

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48929

Eliane Domingos de Sousa elianedomin...@gmail.com changed:

   What|Removed |Added

  Component|Libreoffice |Presentation

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49052] New: formula DGET() gives #VALUE! error when fetching calculation resulting in string

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49052

 Bug #: 49052
   Summary: formula DGET() gives #VALUE! error when fetching
calculation resulting in string
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.2 Release
  Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: marc.cla...@scarlet.be


Created attachment 60448
  -- https://bugs.freedesktop.org/attachment.cgi?id=60448
Enter x in cell D2, D3, ..., or D10  observe result in cell C15

When the DGET() formula fetches data from a cell that contains a formula THAT
RESULTS IN A STRING, the result is the #VALUE!-error. The fetched cell itself
shows the correct string value.

If the fetched cell contains a string (not a formula), the string is fetched
correctly.

So,
Cell contentValue shown in cell   Result of DGET()-formula, fetching cell
===   ===
Mozes   Mozes Mozes
3   3 3
=1+12 2
=Mozes Mozes #VALUE!

Added file shows the effect.

I did not have the opportunity of testing this (yet)
- on other hardware
- on a 32-bit OS
- on Windows (any version/word width)
- also not (yet) on other related (database) formulas, that can fetch/handle
string values, like  DCOUNTA() DCOUNT(), ...

Thanks for any interest  comments!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48972] FILEOPEN: Fail to open an odt with a checkbox

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48972

Marcel Stimberg stimb...@users.sourceforge.net changed:

   What|Removed |Added

 CC||stimberg@users.sourceforge.
   ||net

--- Comment #2 from Marcel Stimberg stimb...@users.sourceforge.net 2012-04-22 
07:29:20 PDT ---
I can reproduce the OP's error with Ubuntu's libreoffice version
(3.5.2-2ubuntu1) on 64-Bit (another comment states that it is not reproducible
on 32-Bit Xubuntu, though -- see the Ubuntu Bug Report:
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/986205 ).

With Libreoffice from the TDF (i.e. installing all the .deb's in
LibO_3.5.2rc2_Linux_x86-64_install-deb_en-US provided by
http://www.libreoffice.org/download/) I can not reproduce it, so the problem
seems to be Ubuntu (or Debian) specific.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49053] New: field length cannot be changed

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49053

 Bug #: 49053
   Summary: field length cannot be changed
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: sandra.farn...@gmail.com


Created attachment 60449
  -- https://bugs.freedesktop.org/attachment.cgi?id=60449
the highlighted field is the one whose length I want to change but I can't

I'm defining a table in LibreOfficeBase containing an integer field. I cannot
change the field length which is set to 10.
Same problem with the following field types: TINYINT (3), BIGINT (19), REAL
(17), DOUBLE (17), OTHER (2147489647).
Moreover I notice that the following field types NUMERIC, DECIMAL, FLOAT,
VARCHAR, VARCHAR_IGNORECASE, inherit the latest set length, that is: when I add
a field it is set to VARCHAR (100), if I change it to FLOAT its length is
automatically set to 17, if I come back to VARCHAR, the field length is not set
back to 100, but still remains 17.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49053] field length cannot be changed

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49053

Christopher M. Penalver christopher.penal...@gmx.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WONTFIX
 CC||christopher.penal...@gmx.co
   ||m
   See Also||https://launchpad.net/bugs/
   ||986820

--- Comment #1 from Christopher M. Penalver christopher.penal...@gmx.com 
2012-04-22 07:51:18 PDT ---
Sandra Farnedi, as mentioned in
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/986820/comments/5
please do not slam 2 issues into one report. That applies here in upstream as
well. Please file a new report, one issue per report.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49054] New: : field length inherited

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49054

 Bug #: 49054
   Summary: : field length inherited
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: sandra.farn...@gmail.com


When I define a table field in LbreOfficeBase I notice that the following field
types NUMERIC, DECIMAL, FLOAT, VARCHAR, VARCHAR_IGNORECASE, inherit the latest
set length, that is: when I add a field it is set to VARCHAR (100), if I change
it to FLOAT its length is automatically set to 17, if I come back to VARCHAR,
the field length is not set back to 100, but still remains 17.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49054] : field length inherited

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49054

Sandra Farnedi sandra.farn...@gmail.com changed:

   What|Removed |Added

   Platform|Other   |x86 (IA32)
 OS/Version|All |Linux (All)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49054] : field length inherited

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49054

Christopher M. Penalver christopher.penal...@gmx.com changed:

   What|Removed |Added

 CC||christopher.penal...@gmx.co
   ||m
   See Also||https://launchpad.net/bugs/
   ||986880
Version|unspecified |LibO 3.5.2 Release

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48898] Legend doesn't change color according to diagrama

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48898

--- Comment #2 from karolismatjosai...@gmail.com 2012-04-22 09:06:53 PDT ---
Please remove bug, that was only my issue.

Kind regards

Karolis

2012/4/21 bugzilla-dae...@freedesktop.org

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

 Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 
 Status|UNCONFIRMED |NEEDINFO
 CC||jbf.fa...@orange.fr
 Ever Confirmed|0   |1

 --- Comment #1 from Jean-Baptiste Faure jbf.fa...@orange.fr 2012-04-21
 12:00:15 PDT ---
 Please attach a document which shows the problem.

 best regards. JBF

 --
 Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
 --- You are receiving this mail because: ---
 You reported the bug.


-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 41412] EDITING TABLE: CRASH when using Keyboard cell merging function

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41412

--- Comment #4 from Javier Silva silva.and...@gmail.com 2012-04-22 09:32:14 
PDT ---
[No Reproducible] with LibreOffice 3.4.4  - Ubuntu 11.10 (64bit) Spanish
UI

No crash, and the merging cell process is ok.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 46394] PRINTING: Sheet printing does not seem to work on Linux

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46394

--- Comment #1 from Javier Silva silva.and...@gmail.com 2012-04-22 09:45:07 
PDT ---
[No Reproducible] with LibreOffice 3.4.4  - Ubuntu 11.10 (64bit) Spanish
UI

I created a spreadsheet with three pages and three sheets. I tried to printing
in a postscript file and I obtain all the information I writed.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 44664] cups landscape woes with pdf: printer truncates Landscape orientation pages to Portrait dimensions

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44664

malv_s...@hotmail.com changed:

   What|Removed |Added

Version|LibO 3.5.0 Release  |LibO 3.4.5 release

--- Comment #36 from malv_s...@hotmail.com 2012-04-22 09:49:44 PDT ---
I can confirm that this bug is present as far back as LibreOffice 3.4.5 running
on openSUSE 11.4 32-bit. Once again an RPM-based distro. As per comment 26, I'm
setting the bug to the oldest version on which this issue is reproducible.
Hoping to get a fix for this prior to the release of openSUSE 12.2 in July.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 44066] Diagram data table window has no close button when started using gnome shell

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44066

--- Comment #5 from Javier Silva silva.and...@gmail.com 2012-04-22 09:55:20 
PDT ---
[Reproducible] with LibreOffice 3.4.4  - Ubuntu 11.10 (64bit) Spanish
UI

I do the same steps and I have the same problem.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 38780] FILESAVE of .DOC document as .DOCX in MS 2007 or Office Open format crashes Libreoffice

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38780

khagar...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #5 from khagar...@gmail.com 2012-04-22 09:56:21 PDT ---
A trace from W7 with 3.5.3rc1 debug build.

***
* *
*Exception Analysis   *
* *
***

*** ERROR: Symbol file could not be found.  Defaulted to export symbols for
C:\Program Files\LOdev 3.5\program\ooxlo.dll - 
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for
C:\Program Files\LOdev 3.5\program\writerfilterlo.dll - 
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for
C:\Program Files\LOdev 3.5\program\sfxlo.dll - 
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for
C:\Program Files\LOdev 3.5\program\fwklo.dll - 
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for
C:\Program Files\LOdev 3.5\program\tllo.dll - 
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for
C:\Program Files\LOdev 3.5\program\vcllo.dll - 
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for
C:\Program Files\LOdev 3.5\program\sofficeapp.dll - 
*** ERROR: Module load completed but symbols could not be loaded for C:\Program
Files\LOdev 3.5\program\soffice.bin
TRIAGER: Could not open triage file : C:\Program Files\Windows
Kits\8.0\Debuggers\x86\triage\guids.ini, error 2
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for
C:\Program Files\LOdev 3.5\URE\bin\sal3.dll - 
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for
C:\Program Files\LOdev 3.5\program\sysdtrans.dll - 
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for
C:\Program Files\LOdev 3.5\program\lnglo.dll - 
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for
C:\Program Files\LOdev 3.5\program\configmgr.uno.dll - 
TRIAGER: Could not open triage file : C:\Program Files\Windows
Kits\8.0\Debuggers\x86\triage\modclass.ini, error 2

FAULTING_IP: 
swlo!SwAnchoredObject::GetCurrRelPos+a
59c98a8a 8b4810  mov ecx,dword ptr [eax+10h]

EXCEPTION_RECORD:   -- (.exr 0x)
ExceptionAddress: 59c98a8a (swlo!SwAnchoredObject::GetCurrRelPos+0x000a)
   ExceptionCode: c005 (Access violation)
  ExceptionFlags: 
NumberParameters: 2
   Parameter[0]: 
   Parameter[1]: 0010
Attempt to read from address 0010

FAULTING_THREAD:  0dd8

DEFAULT_BUCKET_ID:  NULL_CLASS_PTR_READ

PROCESS_NAME:  soffice.bin

OVERLAPPED_MODULE: Address regions for 'spllo' and 'faultrep.dll' overlap

ERROR_CODE: (NTSTATUS) 0xc005 - Instrukce na adrese 0x%08lx odkazovala na
adresu pam

EXCEPTION_CODE: (NTSTATUS) 0xc005 - Instrukce na adrese 0x%08lx odkazovala
na adresu pam

EXCEPTION_PARAMETER1:  

EXCEPTION_PARAMETER2:  0010

READ_ADDRESS:  0010 

FOLLOWUP_IP: 
swlo!SwAnchoredObject::GetCurrRelPos+a
59c98a8a 8b4810  mov ecx,dword ptr [eax+10h]

NTGLOBALFLAG:  0

APPLICATION_VERIFIER_FLAGS:  0

APP:  soffice.bin

PRIMARY_PROBLEM_CLASS:  NULL_CLASS_PTR_READ

BUGCHECK_STR:  APPLICATION_FAULT_NULL_CLASS_PTR_READ

LAST_CONTROL_TRANSFER:  from 5bc9529e to 59c98a8a

STACK_TEXT:  
WARNING: Stack unwind information not available. Following frames may be wrong.
00e4b884 5bc9529e 00e4b8cc 379a3d19 01d73418
swlo!SwAnchoredObject::GetCurrRelPos+0xa
00e4b938 5bc968f3 04cc35b8 00e4b988 379a3df1 mswordlo!ImportRTF+0x2641e
00e4b9d0 5bd21588 0b923870 00e4ba04 0b536648 mswordlo!ImportRTF+0x27a73
00e4ba24 5bd19235 0b923870 00e4bf98 0bc74890 mswordlo!ExportRTF+0x5b4f8
00e4ba44 5bd1d815  379a4465 00e4c164 mswordlo!ExportRTF+0x531a5
00e4c044 5bd2192a 08bbd8a0 04b71608 00e4c508 mswordlo!ExportRTF+0x57785
00e4c05c 5bd4074c 08bbd8a0 379a44f5 00e4c164 mswordlo!ExportRTF+0x5b89a
00e4c0d4 5bd3e1dd 0586f474 00e4c508 599d35bf mswordlo!ExportRTF+0x7a6bc
00e4c0f8 5bd3100a 0009 000d 0002 mswordlo!ExportRTF+0x7814d
00e4c158 5bcad2fe 04c976cc  379a46e5 mswordlo!ExportRTF+0x6af7a
00e4c2c4 5bcab203 04c976cc  5be53ad4 mswordlo!ImportRTF+0x3e47e
00e4c2dc 5bd307e2 003a 04c976cc 04c9771c mswordlo!ImportRTF+0x3c383
00e4c3d0 5bcadc07 0bb3e760  379a4039 mswordlo!ExportRTF+0x6a752
00e4c418 5bcabb03 379a4079 5c6fe02f 0b59445c mswordlo!ImportRTF+0x3ed87
00e4c458 5bd42963 379a40e9 0482 00e4c484 mswordlo!ImportRTF+0x3cc83
00e4c4c8 5bcb088c 0001 379a4355 00e4c4e4 mswordlo!ExportRTF+0x7c8d3
00e4c774 5ab0087c 

[Libreoffice-bugs] [Bug 48061] PDF export fails on files named 'cv.*'

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48061

--- Comment #2 from Javier Silva silva.and...@gmail.com 2012-04-22 10:01:13 
PDT ---
[No Reproducible] with LibreOffice 3.4.4  - Ubuntu 11.10 (64bit) Spanish
UI

I do the same steps and the pdf file is created.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48936] EDITING: Autocorrect incorrectly handles ordinals at beginning of sentence

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48936

--- Comment #1 from Javier Silva silva.and...@gmail.com 2012-04-22 10:08:42 
PDT ---
[No Reproducible] with LibreOffice 3.4.4  - Ubuntu 11.10 (64bit) Spanish
UI

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48929] Presentation mode with video closes the software

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48929

--- Comment #8 from Johnny johnny...@gmail.com 2012-04-22 10:10:21 UTC ---
JBF: Yes I am able to play the .mp4 on my own PC outside of LibO

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48768] FILESAVE: File save makes LibreOffice writer jump to another page!

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48768

--- Comment #2 from Javier Silva silva.and...@gmail.com 2012-04-22 10:12:23 
PDT ---
[No Reproducible] with LibreOffice 3.4.4  - Ubuntu 11.10 (64bit) Spanish
UI

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 38780] FILESAVE of .DOC document as .DOCX in MS 2007 or Office Open format crashes Libreoffice

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38780

--- Comment #6 from khagar...@gmail.com 2012-04-22 10:13:28 PDT ---
I hope the trace is usable, I followed the Windows debugging video guide and
doublechecked I set everything right, but there seem to be some errors.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48703] FILESAVE: Save AS dialog expands off screen

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48703

--- Comment #1 from Javier Silva silva.and...@gmail.com 2012-04-22 10:15:30 
PDT ---
[No Reproducible] with LibreOffice 3.4.4 build 402 - Ubuntu 11.10 (64bit)
Spanish
UI

With Gnome Shell in Dell Studio XPS

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48703] FILESAVE: Save AS dialog expands off screen

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48703

--- Comment #2 from cde...@gmail.com 2012-04-22 10:17:26 PDT ---
Your monitor is too big. Use a netbook to reproduce this bug.

On 4/22/12 1:15 PM, bugzilla-dae...@freedesktop.org
bugzilla-dae...@freedesktop.org wrote:

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

--- Comment #1 from Javier Silva silva.and...@gmail.com 2012-04-22
10:15:30 PDT ---
[No Reproducible] with LibreOffice 3.4.4 build 402 - Ubuntu 11.10 (64bit)
Spanish
UI

With Gnome Shell in Dell Studio XPS

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You reported the bug.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48570] EDITING: error with editing large file

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48570

--- Comment #1 from Javier Silva silva.and...@gmail.com 2012-04-22 10:31:56 
PDT ---
[Reproducible] with LibreOffice 3.4.4 build 402 - Ubuntu 11.10 (64bit)
Spanish
UI

LO hangs or spend a lot of time when I tried to load the file

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 43241] FILESAVE: Filesaving and Exporting fails with Files of huge size and huge names

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43241

--- Comment #2 from Javier Silva silva.and...@gmail.com 2012-04-22 10:38:51 
PDT ---
[No Reproducible] with LibreOffice 3.4.4 build 402 - Ubuntu 11.10 (64bit)
Spanish
UI

I create a 1MB file with 155pages and a lot of images and I didn't have any
problem when I try to save as.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48263] : Writer hangs when I begin to type after opening program

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48263

--- Comment #1 from Ken Blowers blow...@yahoo.com.au 2012-04-22 10:42:40 PDT 
---
The computer that Libreoffice is installed on is a Macbook Pro 13 inch early
2011 with a i5 2.3Ghz processor and 8GB or RAM.

I am also running Sophos Antivirus software on this computer. I am also running
iWork 9 from Apple.

I deleted the plist files associated with Libreoffice, then un-installed
Libreoffice before re-installing it again. This did not fix the problem.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49052] formula DGET() gives #VALUE! error when fetching calculation resulting in string

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49052

--- Comment #1 from Ferran Vidal vidalmargi...@hotmail.com 2012-04-22 
10:50:34 PDT ---
[Reproducible] with LibreOffice 3.5.2.2 - GNU/Linux Ubuntu 11.10,English
UI

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48473] No object information in status bar

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48473

Nino nn.l...@kflog.org changed:

   What|Removed |Added

 CC||nn.l...@kflog.org

--- Comment #3 from Nino nn.l...@kflog.org 2012-04-22 10:54:48 PDT ---
Seems to work now :) in
master~2012-04-17_13.43.52_LibO-Dev_3.6.0alpha0_Linux_x86_install-rpm_en-US.tar.gz

But ther's a small glitch left: When adding text to an object, after inserting
a line break (Return or Shift+Return), the status bar field does not recognize
the line break during editing and freezes at the position of the last character
of the first line entered. In contrast, when editing an existing multiline
text, every line is recognized and the Paragraph/Row/Column indicator updates
correctly. So while you're at it, maybe you could fix this one, too? (ich mein
ja nur...)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48938] UI: Calc crashes on change of sheet order (only when using mouse drag'n'drop)

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48938

--- Comment #2 from Ferran Vidal vidalmargi...@hotmail.com 2012-04-22 
11:01:58 PDT ---
[Not reproducible] with LibreOffice 3.5.2.2 - GNU/Linux Ubuntu 11.10, English
UI

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48263] : Writer hangs when I begin to type after opening program

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48263

--- Comment #2 from Ken Blowers blow...@yahoo.com.au 2012-04-22 11:03:14 PDT 
---
I have discovered that turning off the Sophos Antivirus scanner before opening
Libreoffice Writer fixes the problem.

If I re-enable the Sophos Scanner, then restart the computer, then open
Libreoffice Writer again the problem re-appears.

The computer has all of the latest updates for all software installed including
the latest Apple updates, Sophos Antivirus and Java.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48945] empty space on Close toolbar

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48945

vitriol vitriol_vitr...@katamail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE

--- Comment #2 from vitriol vitriol_vitr...@katamail.com 2012-04-22 11:03:56 
UTC ---


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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 36475] EasyHack: Toolbar space remains after close of last in row/column

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36475

vitriol vitriol_vitr...@katamail.com changed:

   What|Removed |Added

 CC||platyproducti...@yahoo.com

--- Comment #13 from vitriol vitriol_vitr...@katamail.com 2012-04-22 11:03:56 
UTC ---
*** Bug 48945 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49054] : field length inherited

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49054

--- Comment #1 from Ferran Vidal vidalmargi...@hotmail.com 2012-04-22 
11:05:42 PDT ---
[Reproducible] with LibreOffice 3.5.2.2 - GNU/Linux Ubuntu 11.10,English
UI

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49027] : time format code

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49027

--- Comment #1 from Ferran Vidal vidalmargi...@hotmail.com 2012-04-22 
11:11:19 PDT ---
[Reproducible] with LibreOffice 3.5.2.2 - GNU/Linux Ubuntu 11.10,English
UI

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48911] Calc EDITING: undo not working (regression after 3.3.4)

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48911

--- Comment #5 from Ferran Vidal vidalmargi...@hotmail.com 2012-04-22 
11:19:44 PDT ---
[Reproducible] with LibreOffice 3.5.2.2 - GNU/Linux Ubuntu 11.10,English
UI

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48515] FORMATTING: selecting all text and changing colour causes fatal crash

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48515

--- Comment #2 from Ferran Vidal vidalmargi...@hotmail.com 2012-04-22 
11:24:37 PDT ---
[Not reproducible] with LibreOffice 3.5.2.2 - GNU/Linux Ubuntu 11.10,English
UI

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49027] : time format code

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49027

vitriol vitriol_vitr...@katamail.com changed:

   What|Removed |Added

  Component|BASIC   |Spreadsheet

--- Comment #2 from vitriol vitriol_vitr...@katamail.com 2012-04-22 11:28:40 
PDT ---
This behavior is not related with the cell format, but with the function TIME()
that not return values  24 h.
It's not a bug for me..

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48003] FORMATTING reproduceable crash when write a word with two capital letters and type space

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48003

--- Comment #1 from Ferran Vidal vidalmargi...@hotmail.com 2012-04-22 
11:31:58 PDT ---
[Not reproducible] with LibreOffice 3.5.2.2 - GNU/Linux Ubuntu 11.10, English
UI

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 47267] LibreOffice crashes on opening file saved in OpenOffice

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47267

--- Comment #6 from Ferran Vidal vidalmargi...@hotmail.com 2012-04-22 
11:37:22 PDT ---
[Not reproducible] with LibreOffice 3.5.2.2 - GNU/Linux Ubuntu 11.10,English
UI

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48482] [EDITING] An absolute self-reference is not respected when copying with some functions. It behaves like a relative reference.

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48482

Nino nn.l...@kflog.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 AssignedTo|libreoffice-b...@lists.free |markus.mohrhard@googlemail.
   |desktop.org |com
 CC||nn.l...@kflog.org
 Ever Confirmed|0   |1

--- Comment #2 from Nino nn.l...@kflog.org 2012-04-22 13:08:17 PDT ---
Confirmed with Linux/32. 

Effect seems to be restricted to manual copypaste (i.e. Ctrl+C, Ctrl+V).
Autofilling (click on small rectangle down right of cell cursor) seems to work
ok. 

Maybe it's a difference if referenced cell is not equal copied cell, but I
haven't examined enough yet, so needs further narrowing. 

Looks as if under certain circumstances the reference is not recognized as
absolute and therefore treated as relative.

MAB candidate?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49059] New: position information in status bar in TextEdit of draw objects is updated only with large delay

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49059

 Bug #: 49059
   Summary: position information in status bar in TextEdit of draw
objects is updated only with large delay
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Drawing
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: rb.hensc...@t-online.de


Open Draw and draw a rectangle or a text box.
Switch to edit mode (double-click or F2)
Write some text including line breaks.
Move forwards and backwards in the text using mouse and keyboard.
Watch the position info in the status bar.

Notice:
While writing text the position information is updated only with large delay.
When moving with the cursor keys, the position is updated only with very large
delay or not at all.

The position is updated, when you move the mouse.

The problem is inherited from OOo, where I see it already in version 2.4.3.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 48473] No object information in status bar

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48473

--- Comment #4 from Regina Henschel rb.hensc...@t-online.de 2012-04-22 
13:19:44 PDT ---
The incorrect or delayed position info is a different problem. It is already
present in older LO and OOo versions. I have written a new issue for it
fdo#49059.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49059] position information in status bar in TextEdit of draw objects is updated only with large delay

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49059

Nino nn.l...@kflog.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||nn.l...@kflog.org
 Ever Confirmed|0   |1

--- Comment #1 from Nino nn.l...@kflog.org 2012-04-22 13:31:21 PDT ---
I only can confirm the behavior (with master~2012-04-17 on Linux/x86), but no
idea whom to assign this bug or how important it is.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49060] New: Ideia for implement

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49060

 Bug #: 49060
   Summary: Ideia for implement
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: All
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: bil...@yahoo.com.br


Create in LibreOffice Writer a master page, this page will seek to allow
manipulating objects similar to what occurs in the Draw. This will give the
Writer features a publishing tool, allowing the layout of the pages.
I do not know if the idea is presented that can be implemented, and also do not
know if the file format adopted by LibreOffice offers the possibility to extend
its functionality in the way that I presented. Despite my ignorance, I ask that
the idea is appreciated.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49060] Ideia for implement

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49060

Rodrigo Zimmermann bil...@yahoo.com.br changed:

   What|Removed |Added

  QAContact||bil...@yahoo.com.br

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49060] Master page em LibreOffice Draw

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49060

Rodrigo Zimmermann bil...@yahoo.com.br changed:

   What|Removed |Added

Summary|Ideia for implement |Master page em LibreOffice
   ||Draw

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49065] New: Writer adding extra spacing before an image in master doc

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49065

 Bug #: 49065
   Summary: Writer adding extra spacing before an image in master
doc
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.2 Release
  Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: freemant2...@yahoo.com


Created attachment 60469
  -- https://bugs.freedesktop.org/attachment.cgi?id=60469
screenshots showing the extra gap

Please see the screenshots in the .odg file: the first one is the original
document and the second is the master document containing the former. You can
see that there is a huge gap before that image when the document is imported
into the master.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49067] New: : Libre Office 3.5 Reading error. Error file format found

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49067

 Bug #: 49067
   Summary: : Libre Office 3.5 Reading error. Error file format
found
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.2 Release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: e...@onda.com.br


Problem description: Ao entrar em Editar e auto texto, surge a mensagem: 
Erro de leitura. Erro de formato de arquivo encontrado - se der um OK ele acaba
entrando. Isso ocorre sempre nesta situação. Será que é devido ao tipo de
arquivo que mandei salvar? Microsoft word97/2000/XP/2003. Mas mesmo salvando em
ODF continua. Se puder me ajudar agradeço muito. Estou migrando o BROffice,
parece ser muito bom grato. Eden
When entering Edit text and self, the message:
Reading error. File Format Error found - OK if you give him a just entering.
This always occurs in this situation. Is it due to the type of file you sent to
save? Microsoft word97/2000/XP/2003. But even saving to ODF continues. If you
can help me thank you very much. I'm migrating BrOffice seems to be very good.
Thanks, Eden

Steps to reproduce:
1. 
2. 
3. 

Note: The error described occurs in the office libre writer. LibreOffice
3.5.2.2
Version ID: 281b639-6baa1d3-ef66a77-d866f25-f36d45f

Current behavior:isso leva a uma perda de tempo (this leads to a waste of time)

Expected behavior:em o erro repetido, ganharia tempo (repeated without error,
gain time)

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.19 (KHTML, like Gecko)
Chrome/18.0.1025.162 Safari/535.19

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42428] Split Windows for single document

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42428

--- Comment #7 from hwtan hwt...@yahoo.com.sg 2012-04-22 20:11:28 PDT ---
dE,

Please go to the discussions/links listed in my previous comment for the
reasons of the need of having a split screen instead of two windows.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 37361] LibreOffice 3.5 most annoying bugs

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361

Bug 37361 depends on bug 43707, which changed state.

Bug 43707 Summary: FILEOPEN PDF brings up (ASCII) filter selector instead of 
opening document
https://bugs.freedesktop.org/show_bug.cgi?id=43707

   What|Old Value   |New Value

 Resolution|FIXED   |
 Status|CLOSED  |REOPENED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
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 48263] : Writer hangs when I begin to type after opening program

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48263

Ken Blowers blow...@yahoo.com.au changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever Confirmed|0   |1

--- Comment #3 from Ken Blowers blow...@yahoo.com.au 2012-04-22 21:09:09 PDT 
---
I will report this issue to Sophos.

Does anybody know what Libreoffice file(s) Sophos Antivirus could be taking so
long to scan and clear ?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49067] : Libre Office 3.5 Reading error. Error file format found

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49067

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1
  Component|Libreoffice |Writer

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-04-22 21:20:56 PDT ---
Please contribute report in English and a sample document!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49065] Writer adding extra spacing before an image in master doc

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49065

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-04-22 21:25:59 PDT ---
@Kent Tong 
We need a sample document.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49064] Creating a function in an inserted column does not calculate

2012-04-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49064

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1
Summary|Creating a function in an   |Creating a function in an
   |inserted column does not|inserted column does not
   |calculate, libre calc   |calculate

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-04-22 21:30:28 PDT ---
NOT reproducible with LibreOffice 3.4.5 RC1  - WIN7 Home Premium (64bit)
German UI [Build ID: OOO340m1 (Build:501)]. 

@reporter:
Thank you for your report – unfortunately important information is missing.
May be hints on http://wiki.documentfoundation.org/BugReport will help you to
find out what information will be useful to reproduce your problem? If you
believe that that  is really sophisticated please as for Help on a user mailing
list
Please:
- Write a meaningful Summary describing exactly what the problem is
- Attach a sample document (not only screenshot) or refer to an existing 
  sample document in an other Bug with a link.
- Attach screenshots with comments if you believe that that might explain the 
  problem better than a text comment. Best way is to insert your screenshots
  into a DRAW document and to add comments that explain what you want to show
- Contribute a step by step instruction containing every key press and every 
  mouse click how to reproduce your problem (due to example in Bug 43431)
– if possible contribute an instruction how to create a sample document 
  from the scratch
- add information 
  -- what EXACTLY is unexpected (Shows emty Cell? Result 0? Formula
 shown as text?
  -- and WHY do you believe it's unexpected (cite Help or Documentation!)
  -- concerning your PC (video card, ...)
  -- concerning your OS (Version, Distribution, Language)
  -- concerning your LibO version (with Build ID if it's not a public release)
 and localization (UI language, Locale setting)
  –- Libo settings that might be related to your problems 
  -- how you launch LibO and how you opened the sample document
  -- everything else crossing your mind after you read linked texts

Even  if you can not provide all demanded information, every little new
information might bring the breakthrough.

May be you can test https://www.libreoffice.org/get-help/bug/ for submitting
bug reports?

May be you can test http://wiki.documentfoundation.org/BugReport_Details for
submitting bug reports?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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   >