[Libreoffice-commits] core.git: 2 commits - include/cppuhelper include/osl

2014-03-08 Thread Norbert Thiebaud
 include/cppuhelper/weak.hxx |3 ++-
 include/osl/file.hxx|5 +++--
 2 files changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 1b6e87fc232e78790d45a54b7a4ac7fe02d2c587
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sat Mar 8 15:32:30 2014 -0600

remove confusing and potentially dangerous premature-optimization

Change-Id: Ia23f591519eba257441b725a219a1eddda937c39

diff --git a/include/osl/file.hxx b/include/osl/file.hxx
index 2518e5f..a53e3d7 100644
--- a/include/osl/file.hxx
+++ b/include/osl/file.hxx
@@ -432,10 +432,11 @@ public:
 Set of flags decribing the demanded information.
 */
 
-VolumeInfo( sal_uInt32 nMask ): _nMask( nMask )
+VolumeInfo( sal_uInt32 nMask )
+: _nMask( nMask )
 {
+memset( _aInfo, 0, sizeof( oslVolumeInfo ));
 _aInfo.uStructSize = sizeof( oslVolumeInfo );
-memset( _aInfo.uValidFields, 0, sizeof( oslVolumeInfo ) - sizeof( 
sal_uInt32 ) );
 _aInfo.pDeviceHandle = _aDevice._aHandle;
 }
 
commit 4c2f8fd74c43a7a85a931bfcf15654af12f082a8
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sat Mar 8 11:12:35 2014 -0600

coverity#707714: Uninitialized pointer

Change-Id: Id8cf528f9c4ab76fda5be80d8fd44d7202a377d7

diff --git a/include/cppuhelper/weak.hxx b/include/cppuhelper/weak.hxx
index 4443eff..47f3d8d 100644
--- a/include/cppuhelper/weak.hxx
+++ b/include/cppuhelper/weak.hxx
@@ -112,8 +112,9 @@ public:
 : com::sun::star::uno::XWeak()
 , m_refCount( 0 )
 , m_pWeakConnectionPoint( 0 )
+, m_pReserved(0)
 {
-(void) rObj;
+(void) rObj;
 }
 /** Dummy assignment operator. Does not affect reference count.
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-03-08 Thread Kohei Yoshida
 sc/inc/formulacell.hxx  |1 
 sc/qa/unit/data/contentCSV/cachedValue.csv  |2 
 sc/qa/unit/data/ods/formula-delete-contents.ods |binary
 sc/source/core/data/column.cxx  |6 
 sc/source/core/data/column2.cxx |7 
 sc/source/core/data/formulacell.cxx |6 
 sc/source/core/tool/interpr4.cxx|3 
 sc/source/filter/xml/xmlcelli.cxx   |8 
 sc/source/filter/xml/xmlcelli.hxx   |1 
 sc/source/ui/view/viewfunc.cxx  |  351 +++-
 10 files changed, 196 insertions(+), 189 deletions(-)

New commits:
commit 3cea6bb57757ce085f01f0b86b000cfc0592dca7
Author: Kohei Yoshida kohei.yosh...@collabora.com
Date:   Sat Mar 8 17:40:32 2014 -0500

More consistent number format inheritence policy.

The new policy is to always inherit number format of a formula cell
from its reference unless the cell already has an explicit number format
set.

Also to avoid recalculating formula cells on load just because they have
the 'General' number format.  This leads to excessive re-calculation of
formula cells upon load even when the cells already have results cached.

Change-Id: I28128d3fef296e09e62bea72e8aab75de9876239

diff --git a/sc/inc/formulacell.hxx b/sc/inc/formulacell.hxx
index 6f3c555..f2bc36c 100644
--- a/sc/inc/formulacell.hxx
+++ b/sc/inc/formulacell.hxx
@@ -210,6 +210,7 @@ public:
 void SetNeedsListening( bool bVar );
 void SetNeedsDirty( bool bVar );
 void SetNeedNumberFormat( bool bVal );
+bool NeedsNumberFormat() const;
 short GetFormatType() const;
 voidCompile(const OUString rFormula,
 bool bNoListening = false,
diff --git a/sc/qa/unit/data/contentCSV/cachedValue.csv 
b/sc/qa/unit/data/contentCSV/cachedValue.csv
index 7fed884..597eda1 100644
--- a/sc/qa/unit/data/contentCSV/cachedValue.csv
+++ b/sc/qa/unit/data/contentCSV/cachedValue.csv
@@ -1,2 +1,2 @@
 1.00,200.00%,$3.00,1/3/00,00:00,6.00E+000,7 1/5,TRUE,9,1000%,01-10
-1,200.00%,$3.00,01/03/00,12:00:00 AM,6.00E+000,7 1/5,TRUE,9,1000.00%,01/10/00
+1.00,200.00%,$3.00,1/3/00,12:00:00 AM,6.00E+000,7 1/5,TRUE,9,1000.00%,01-10
diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx
index b7fd479..8b74fcf 100644
--- a/sc/source/core/data/column.cxx
+++ b/sc/source/core/data/column.cxx
@@ -3121,8 +3121,12 @@ public:
 {
 sal_uInt32 nFormat = mrCol.GetNumberFormat(nRow);
 if( (nFormat % SV_COUNTRY_LANGUAGE_OFFSET) != 0)
+// Non-default number format is set.
 pCell-SetNeedNumberFormat(false);
-else
+else if (pCell-NeedsNumberFormat())
+pCell-SetDirtyVar();
+
+if (pCell-GetMatrixFlag())
 pCell-SetDirtyVar();
 
 pCell-CompileXML(mrCxt, mrProgress);
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index 38eb94e..8b4b619 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -2749,12 +2749,7 @@ void ScColumn::SetFormulaResults( SCROW nRow, const 
formula::FormulaTokenRef* pR
 
 void ScColumn::SetNumberFormat( SCROW nRow, sal_uInt32 nNumberFormat )
 {
-short eOldType = pDocument-GetFormatTable()-GetType(
-(sal_uLong)((SfxUInt32Item*)GetAttr(nRow, 
ATTR_VALUE_FORMAT))-GetValue());
-
-short eNewType = pDocument-GetFormatTable()-GetType(nNumberFormat);
-if (!pDocument-GetFormatTable()-IsCompatible(eOldType, eNewType))
-ApplyAttr(nRow, SfxUInt32Item(ATTR_VALUE_FORMAT, nNumberFormat));
+ApplyAttr(nRow, SfxUInt32Item(ATTR_VALUE_FORMAT, nNumberFormat));
 }
 
 const ScFormulaCell* ScColumn::FetchFormulaCell( SCROW nRow ) const
diff --git a/sc/source/core/data/formulacell.cxx 
b/sc/source/core/data/formulacell.cxx
index c8aa429..5b23770 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -976,6 +976,12 @@ void ScFormulaCell::SetNeedsDirty( bool bVar )
 }
 
 void ScFormulaCell::SetNeedNumberFormat( bool bVal ) { mbNeedsNumberFormat = 
bVal; }
+
+bool ScFormulaCell::NeedsNumberFormat() const
+{
+return mbNeedsNumberFormat;
+}
+
 short ScFormulaCell::GetFormatType() const { return nFormatType; }
 
 void ScFormulaCell::Compile( const OUString rFormula, bool bNoListening,
diff --git a/sc/source/core/tool/interpr4.cxx b/sc/source/core/tool/interpr4.cxx
index c1be178..6a50c76 100644
--- a/sc/source/core/tool/interpr4.cxx
+++ b/sc/source/core/tool/interpr4.cxx
@@ -4486,9 +4486,6 @@ StackVar ScInterpreter::Interpret()
 }
 else
 nRetFmtType = NUMBERFORMAT_NUMBER;
-// inherit the format index only for currency formats
-if ( nRetFmtType != NUMBERFORMAT_CURRENCY )
-nRetFmtIndex = 0;
 
 if (nGlobalError  GetStackType() != svError )
 PushError( nGlobalError);
diff --git a/sc/source/filter/xml/xmlcelli.cxx 

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

2014-03-08 Thread Matteo Casalin
 oox/source/drawingml/shapepropertymap.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit f3199b9ac677a93ee65a1f2df039458560efc020
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Sun Mar 9 00:14:11 2014 +0100

Fix signed/unsigned comparison

Change-Id: Iedc3b5c20b5f47117f29dcbeaf84efacbd4ce497

diff --git a/oox/source/drawingml/shapepropertymap.cxx 
b/oox/source/drawingml/shapepropertymap.cxx
index 5a90875..21281cdd 100644
--- a/oox/source/drawingml/shapepropertymap.cxx
+++ b/oox/source/drawingml/shapepropertymap.cxx
@@ -64,7 +64,8 @@ ShapePropertyInfo::ShapePropertyInfo( const sal_Int32* 
pnPropertyIds,
 mbNamedFillBitmapUrl( bNamedFillBitmapUrl )
 {
 assert(pnPropertyIds);
-for(size_t i = 0; i  PROP_COUNT; ++i) // normally we should not reach 
PROP_COUNT but it prevents infinite loops if we hit a bug
+// normally we should not reach PROP_COUNT but it prevents infinite loops 
if we hit a bug
+for(size_t i = 0; i  static_castsize_t(PROP_COUNT); ++i)
 {
 if(pnPropertyIds[i] == PROP_END_LIST)
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-03-08 Thread Norbert Thiebaud
 ucb/source/ucp/file/filinsreq.cxx |  119 --
 ucb/source/ucp/file/filinsreq.hxx |   84 ++
 ucb/source/ucp/file/filprp.cxx|   36 ---
 ucb/source/ucp/file/filprp.hxx|   31 -
 ucb/source/ucp/file/filrow.cxx|   34 --
 ucb/source/ucp/file/filrow.hxx|   31 -
 ucb/source/ucp/file/filrset.cxx   |   53 
 ucb/source/ucp/file/filrset.hxx   |   48 +++
 ucb/source/ucp/file/filstr.cxx|   52 
 ucb/source/ucp/file/filstr.hxx|   44 ++
 10 files changed, 31 insertions(+), 501 deletions(-)

New commits:
commit 76f279a52fdce1d82ecd5e96e7968821e9ec3007
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sat Mar 8 22:41:20 2014 -0600

de-macroize ucb filstr

Change-Id: I08f7d8360a3abdac1b12bd3cfb157e408b0aabbe

diff --git a/ucb/source/ucp/file/filstr.cxx b/ucb/source/ucp/file/filstr.cxx
index 054f2fb..dd439e7 100644
--- a/ucb/source/ucp/file/filstr.cxx
+++ b/ucb/source/ucp/file/filstr.cxx
@@ -40,58 +40,6 @@ using namespace com::sun::star::ucb;
 /*
*/
 
/**/
 
-
-uno::Any SAL_CALL
-XStream_impl::queryInterface(
-const uno::Type rType )
-throw( uno::RuntimeException, std::exception)
-{
-uno::Any aRet = cppu::queryInterface( rType,
-  (static_cast lang::XTypeProvider* 
(this)),
-  (static_cast io::XStream* (this)),
-  (static_cast io::XInputStream* 
(this)),
-  (static_cast io::XOutputStream* 
(this)),
-  (static_cast io::XSeekable* 
(this)),
-  (static_cast io::XTruncate* 
(this)),
-  (static_cast 
io::XAsyncOutputMonitor* (this)) );
-return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType );
-}
-
-
-void SAL_CALL
-XStream_impl::acquire(
-void )
-throw()
-{
-OWeakObject::acquire();
-}
-
-
-void SAL_CALL
-XStream_impl::release(
-void )
-throw()
-{
-OWeakObject::release();
-}
-
-
-
-//  XTypeProvider
-
-
-
-XTYPEPROVIDER_IMPL_7( XStream_impl,
-  lang::XTypeProvider,
-  io::XStream,
-  io::XSeekable,
-  io::XInputStream,
-  io::XOutputStream,
-  io::XTruncate,
-  io::XAsyncOutputMonitor )
-
-
-
 XStream_impl::XStream_impl( shell* pMyShell,const OUString aUncPath, sal_Bool 
bLock )
 : m_bInputStreamCalled( false ),
   m_bOutputStreamCalled( false ),
diff --git a/ucb/source/ucp/file/filstr.hxx b/ucb/source/ucp/file/filstr.hxx
index 66f7f93..f5a870a 100644
--- a/ucb/source/ucp/file/filstr.hxx
+++ b/ucb/source/ucp/file/filstr.hxx
@@ -21,10 +21,7 @@
 
 #include osl/mutex.hxx
 #include rtl/ustring.hxx
-#include cppuhelper/weak.hxx
-#include ucbhelper/macros.hxx
 #include com/sun/star/uno/XInterface.hpp
-#include com/sun/star/lang/XTypeProvider.hpp
 #include com/sun/star/io/XSeekable.hpp
 #include com/sun/star/io/XTruncate.hpp
 #include com/sun/star/io/XInputStream.hpp
@@ -32,6 +29,7 @@
 #include com/sun/star/io/XStream.hpp
 #include com/sun/star/io/XAsyncOutputMonitor.hpp
 #include com/sun/star/ucb/XContentProvider.hpp
+#include cppuhelper/implbase6.hxx
 
 #include filrec.hxx
 
@@ -40,15 +38,13 @@ namespace fileaccess {
 // forward:
 class shell;
 
-class XStream_impl
-: public cppu::OWeakObject,
-  public com::sun::star::lang::XTypeProvider,
-  public com::sun::star::io::XStream,
-  public com::sun::star::io::XSeekable,
-  public com::sun::star::io::XInputStream,
-  public com::sun::star::io::XOutputStream,
-  public com::sun::star::io::XTruncate,
-  public com::sun::star::io::XAsyncOutputMonitor
+class XStream_impl :  public cppu::WeakImplHelper6
+css::io::XStream,
+css::io::XSeekable,
+css::io::XInputStream,
+css::io::XOutputStream,
+css::io::XTruncate,
+css::io::XAsyncOutputMonitor 
 {
 
 public:
@@ -64,30 +60,6 @@ namespace fileaccess {
 
 virtual ~XStream_impl();
 
-
-// OWeakObject
-
-virtual com::sun::star::uno::Any SAL_CALL
-queryInterface(
-const com::sun::star::uno::Type rType )
-throw( com::sun::star::uno::RuntimeException, std::exception);
-
-virtual void SAL_CALL
-acquire(
-void )
-throw();
-
-virtual void SAL_CALL
-release(
-void )
-throw();
-
-
-// XTypeProvider
-
-XTYPEPROVIDER_DECL()
-
-
 // XStream
 
 virtual com::sun::star::uno::Reference 

LibreOffice Gerrit News for core on 2014-03-09

2014-03-08 Thread gerrit
Moin!

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

 First time contributors doing great things! 
+ fdo#63154 Remove unused solar.h reference in tools
  in https://gerrit.libreoffice.org/8505 from Alexandre Vicenzi
  about module include
+ patch for easy hack 64290
  in https://gerrit.libreoffice.org/8489 from Sujay m
  about module officecfg, sc
+ fdo#63154 Remove old solar.h references
  in https://gerrit.libreoffice.org/8480 from Alexandre Vicenzi
  about module filter, include
 End of freshness 



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

None

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

None

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

+ fdo#71984 fix first line indentation in footnotes for MS Word documents
  in https://gerrit.libreoffice.org/8160 from Andras Timar
+ fd0#74150:Numbered list getting display after RT -table-within-table-1.do
  in https://gerrit.libreoffice.org/7767 from Rajashri Udhoji
+ fdo#74111 3D Rotation is wrong after Round trip for pie chart
  in https://gerrit.libreoffice.org/7718 from Priyanka Gaikwad
+ Lots of changes to Tango icons
  in https://gerrit.libreoffice.org/7987 from Miroslav Mazel
+ sw/docx export: fix handling of document with header and section(s)
  in https://gerrit.libreoffice.org/6248 from Pierre-Eric Pelloux-Prayer
+ fdo#51525 Fix duplicate Paste Special entries in Calc.
  in https://gerrit.libreoffice.org/7784 from Andrzej Hunt
+ fdo#72661: Check ‘Hyphenation active’ automatically
  in https://gerrit.libreoffice.org/7291 from Jiwoong Youn
+ sa/l add release_assert() and assert that stay even in release code
  in https://gerrit.libreoffice.org/7625 from Norbert Thiebaud
+ fdo#69407: On transparent frames, shadows are painted in foreground.
  in https://gerrit.libreoffice.org/7070 from Mohamed-Ali BEN MANSOUR
+ add a header to provide posix compatible wrapper for platform lacking
  in https://gerrit.libreoffice.org/6837 from Norbert Thiebaud
+ WIP fdo#72987 Use firebird backup format for .odb
  in https://gerrit.libreoffice.org/7299 from Andrzej Hunt
+ sw/export docx: add unit test for document with header and section(s)
  in https://gerrit.libreoffice.org/6249 from Pierre-Eric Pelloux-Prayer
+ fix for exporting of text watermark to DOCX
  in https://gerrit.libreoffice.org/5568 from Adam CloudOn
+ WIP: fdo#33980 Preserve selection across all slide sorters.
  in https://gerrit.libreoffice.org/6633 from Andrzej Hunt
+ startcenter: Make SC open faster by timeouting thumbnails
  in https://gerrit.libreoffice.org/6102 from Krisztian Pinter
+ Simplify oslThreadIdentifier on Linux 32.
  in https://gerrit.libreoffice.org/5553 from Arnaud Versini
+ fdo#36791 : fix for import of greeting card
  in https://gerrit.libreoffice.org/4240 from Adam CloudOn
+ Positional Tab additions
  in https://gerrit.libreoffice.org/5387 from Adam CloudOn


Best,

Your friendly LibreOffice Gerrit Digest Mailer

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


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - 4 commits - offapi/com offapi/type_reference

2014-03-08 Thread Ariel Constenla-Haile
 offapi/com/sun/star/document/EmptyUndoStackException.idl   |   13 +-
 offapi/com/sun/star/document/UndoContextNotClosedException.idl |   13 +-
 offapi/com/sun/star/document/UndoFailedException.idl   |   13 +-
 offapi/com/sun/star/document/UndoManagerEvent.idl  |   13 +-
 offapi/com/sun/star/document/XUndoAction.idl   |   13 +-
 offapi/com/sun/star/document/XUndoManager.idl  |   20 
+++---
 offapi/com/sun/star/document/XUndoManagerListener.idl  |   13 +-
 offapi/com/sun/star/document/XUndoManagerSupplier.idl  |   16 ++--
 offapi/type_reference/typelibrary_history.txt  |3 +
 offapi/type_reference/types.rdb|binary
 10 files changed, 25 insertions(+), 92 deletions(-)

New commits:
commit 8242e5eed90db471b5dbe37a6bf03e96988ec26d
Author: Ariel Constenla-Haile arie...@apache.org
Date:   Sun Mar 9 05:47:10 2014 +

Do not display heading in the IDL short description

diff --git a/offapi/com/sun/star/document/XUndoManager.idl 
b/offapi/com/sun/star/document/XUndoManager.idl
index c2e6b13..e70fc3b 100644
--- a/offapi/com/sun/star/document/XUndoManager.idl
+++ b/offapi/com/sun/star/document/XUndoManager.idl
@@ -37,7 +37,7 @@ interface XUndoAction;
 interface XUndoManagerListener;
 
 /** provides access to the undo/redo stacks of a document
-
+p/p
 h3Undo/h3
 pChanges to a document usually result in recording of information how to 
undo those changes, if desired. A so-called
 undo action records the information how to undo a single change. Undo 
actions are maintained in a stack, so that
commit 3c6c05b09ab858ed23797cff13894138e5243d92
Author: Ariel Constenla-Haile arie...@apache.org
Date:   Sun Mar 9 05:47:02 2014 +

Remove useless comments

diff --git a/offapi/com/sun/star/document/EmptyUndoStackException.idl 
b/offapi/com/sun/star/document/EmptyUndoStackException.idl
index bfdda63..aa0e639 100644
--- a/offapi/com/sun/star/document/EmptyUndoStackException.idl
+++ b/offapi/com/sun/star/document/EmptyUndoStackException.idl
@@ -19,19 +19,13 @@
  *
  */
 
-
-
 #ifndef __com_sun_star_document_EmptyUndoStackException_idl__
 #define __com_sun_star_document_EmptyUndoStackException_idl__
 
 #include com/sun/star/util/InvalidStateException.idl
 
-//==
-
 module com { module sun { module star { module document {
 
-//==
-
 /** is raised when an operation is attemption at an XUndoManager which 
requires a non-empty stack
 of undo actions, and this requirement is not fullfilled.
 @since OpenOffice 3.4
@@ -40,10 +34,6 @@ exception EmptyUndoStackException : 
::com::sun::star::util::InvalidStateExceptio
 {
 };
 
-//==
-
 }; }; }; };
 
-//==
-
 #endif
diff --git a/offapi/com/sun/star/document/UndoContextNotClosedException.idl 
b/offapi/com/sun/star/document/UndoContextNotClosedException.idl
index 1cad848..4e22b21 100644
--- a/offapi/com/sun/star/document/UndoContextNotClosedException.idl
+++ b/offapi/com/sun/star/document/UndoContextNotClosedException.idl
@@ -19,19 +19,13 @@
  *
  */
 
-
-
 #ifndef __com_sun_star_document_UndoContextNotClosedException_idl__
 #define __com_sun_star_document_UndoContextNotClosedException_idl__
 
 #include com/sun/star/util/InvalidStateException.idl
 
-//==
-
 module com { module sun { module star { module document {
 
-//==
-
 /** is thrown when an operation is attempted at an typeXUndoManager/type 
which requires all undo
 contexts to be closed, but this requirement is not fullfilled.
 @since OpenOffice 3.4
@@ -40,10 +34,6 @@ exception UndoContextNotClosedException : 
::com::sun::star::util::InvalidStateEx
 {
 };
 
-//==
-
 }; }; }; };
 
-//==
-
 #endif
diff --git a/offapi/com/sun/star/document/UndoFailedException.idl 
b/offapi/com/sun/star/document/UndoFailedException.idl
index 4907278..40d78c1 100644
--- a/offapi/com/sun/star/document/UndoFailedException.idl
+++ 

[GSoC] On ODF Formulas in Writer

2014-03-08 Thread Matteo Campanelli
Hi all,
I'm Matteo, a PhD student in Computer Science at City University of New
York.
I am planning to apply to GSoC '14 and a few weeks ago I started hacking
LibreOffice (I've been working on this Easy
Hackhttps://bugs.freedesktop.org/show_bug.cgi?id=53472
).

I'm writing to start a discussion and ask some questions on the idea
project in the subject of this email
([1https://wiki.documentfoundation.org/Development/GSoC/Ideas#ODF_Formulas_in_Writer
]).

Could you please give me some feedback on my understanding of the
definition of the problem and current related work in LO (see bullets
below)?
Also - most important question (!!) - would there be anyone interested in
mentoring this project?

My understanding of the issue:
- Currently Writer uses its own, non-standard syntax for formulas. At the
moment this syntax is both what is used/typed by the user and the one used
for internal computations. (At a first glance, the class
SwCalchttp://opengrok.libreoffice.org/search?q=project=coredefs=SwCalcrefs=path=hist=seems
to be responsible for both parsing and interpreting these formulas,
is that right?)
- The goal of the project would be to enable users to write formulas in the
ODF Format 
[2]http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part2.html
and use this same format for the internal computations.
- As far as I have understood, we may use the ixion library
[3]https://gitorious.org/ixion to
interpret ODF-style formulas. This library is already used by Writer for
interpreting formulas in doc/docx files (which, I suppose, are first
converted to the actual ODF format). [is this point of my interpretation
correct? Could anyone provide code pointers for the computation of formula
for .doc files?]
- Part of the project will have to deal with import/export filters and
backward compatibility: first, files with formulas in the old-syntax should
still be parsed correctly; second, users should have the option of saving
in the old syntax or in the default new ODF syntax.

Also, I have two additional questions:
- the project idea page mentions changes in the code for the formula input
bar. What should these changes to the UI consist of specifically? Are they
mostly related to the strings produced by using the Formula dropdown menu
in the bar?
- Can anyone who is into the code roughly assess the relative hardness of
the three subparts of this project (i.e. refactoring to use ODF and
delegation to ixion, changes in the UI, adapting import/export filters)? In
other words, which of these parts (if any) is likely to take longer
compared to the others?

References:
[1] ODF Formulas in writer - Original GSoC Project Idea Page
(linkhttps://wiki.documentfoundation.org/Development/GSoC/Ideas#ODF_Formulas_in_Writer
)
[2] Open Formula - Official specification
(linkhttp://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part2.html
)
[3] Ixion Library (link https://gitorious.org/ixion)

Comments of any kind are appreciated.
Thanks in advance for your feedback!

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


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

2014-03-08 Thread Norbert Thiebaud
 lotuswordpro/source/filter/xfilter/xfborders.cxx  |8 ++---
 lotuswordpro/source/filter/xfilter/xfcell.cxx |2 -
 lotuswordpro/source/filter/xfilter/xfcellstyle.cxx|2 -
 lotuswordpro/source/filter/xfilter/xfcolstyle.cxx |2 -
 lotuswordpro/source/filter/xfilter/xfcolumns.cxx  |8 ++---
 lotuswordpro/source/filter/xfilter/xfdrawareastyle.cxx|2 -
 lotuswordpro/source/filter/xfilter/xfdrawline.cxx |   16 +--
 lotuswordpro/source/filter/xfilter/xfdrawlinestyle.cxx|   10 +++
 lotuswordpro/source/filter/xfilter/xfdrawobj.cxx  |   18 ++--
 lotuswordpro/source/filter/xfilter/xfdrawpath.cxx |6 ++--
 lotuswordpro/source/filter/xfilter/xfdrawpolygon.cxx  |6 ++--
 lotuswordpro/source/filter/xfilter/xfdrawpolyline.cxx |6 ++--
 lotuswordpro/source/filter/xfilter/xfdrawrect.cxx |2 -
 lotuswordpro/source/filter/xfilter/xfdrawstyle.cxx|8 ++---
 lotuswordpro/source/filter/xfilter/xfdropcap.hxx  |2 -
 lotuswordpro/source/filter/xfilter/xffont.cxx |4 +-
 lotuswordpro/source/filter/xfilter/xfframe.cxx|   12 
 lotuswordpro/source/filter/xfilter/xfheaderstyle.cxx  |4 +-
 lotuswordpro/source/filter/xfilter/xfimage.cxx|8 ++---
 lotuswordpro/source/filter/xfilter/xfimagestyle.cxx   |   10 ++-
 lotuswordpro/source/filter/xfilter/xfindex.cxx|2 -
 lotuswordpro/source/filter/xfilter/xflineheight.hxx   |8 ++---
 lotuswordpro/source/filter/xfilter/xflinenumberconfig.hxx |2 -
 lotuswordpro/source/filter/xfilter/xfliststyle.cxx|   12 
 lotuswordpro/source/filter/xfilter/xfmargins.cxx  |8 ++---
 lotuswordpro/source/filter/xfilter/xfpadding.hxx  |   10 +++
 lotuswordpro/source/filter/xfilter/xfpagemaster.cxx   |   10 +++
 lotuswordpro/source/filter/xfilter/xfparastyle.cxx|4 +-
 lotuswordpro/source/filter/xfilter/xfrowstyle.cxx |4 +-
 lotuswordpro/source/filter/xfilter/xfsectionstyle.cxx |4 +-
 lotuswordpro/source/filter/xfilter/xfshadow.cxx   |2 -
 lotuswordpro/source/filter/xfilter/xftablestyle.cxx   |2 -
 lotuswordpro/source/filter/xfilter/xftabstyle.cxx |   20 +++---
 lotuswordpro/source/filter/xfilter/xfutil.cxx |   12 
 lotuswordpro/source/filter/xfilter/xfutil.hxx |2 -
 35 files changed, 111 insertions(+), 127 deletions(-)

New commits:
commit 025498dda9c396f5df7d839af1dd65cdc181d1f5
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sun Mar 9 00:50:30 2014 -0600

lotuswordpro: use native OUString api rather than a wrapper

Change-Id: I28be9db72d1f3dc678106a9449944b8a6b0ce9a8

diff --git a/lotuswordpro/source/filter/xfilter/xfborders.cxx 
b/lotuswordpro/source/filter/xfilter/xfborders.cxx
index 7da56e5..aa1c783 100644
--- a/lotuswordpro/source/filter/xfilter/xfborders.cxx
+++ b/lotuswordpro/source/filter/xfilter/xfborders.cxx
@@ -120,8 +120,8 @@ OUString   XFBorder::GetLineWidth()
 if( m_bDouble )
 {
 str = FloatToOUString(m_fWidthInner);
-str += cm  + DoubleToOUString(m_fWidthSpace);
-str += cm  + DoubleToOUString(m_fWidthOuter) + cm;
+str += cm  + OUString::number(m_fWidthSpace);
+str += cm  + OUString::number(m_fWidthOuter) + cm;
 }
 return str;
 }
@@ -138,7 +138,7 @@ OUString   XFBorder::ToString()
 return str;
 }
 
-str = DoubleToOUString(width) + cm;
+str = OUString::number(width) + cm;
 str +=  double  + m_aColor.ToString();
 }
 else
@@ -148,7 +148,7 @@ OUString   XFBorder::ToString()
 {
 return str;
 }
-str = DoubleToOUString(width) + cm;
+str = OUString::number(width) + cm;
 str +=  solid  + m_aColor.ToString();
 }
 return str;
diff --git a/lotuswordpro/source/filter/xfilter/xfcell.cxx 
b/lotuswordpro/source/filter/xfilter/xfcell.cxx
index fbd29c7..99c195b 100644
--- a/lotuswordpro/source/filter/xfilter/xfcell.cxx
+++ b/lotuswordpro/source/filter/xfilter/xfcell.cxx
@@ -162,7 +162,7 @@ voidXFCell::Add(IXFContent *pContent)
 
 voidXFCell::SetValue(double value)
 {
-SetValue(DoubleToOUString(value,18));
+SetValue(OUString::number(value));
 }
 
 voidXFCell::SetValue(OUString value)
diff --git a/lotuswordpro/source/filter/xfilter/xfcellstyle.cxx 
b/lotuswordpro/source/filter/xfilter/xfcellstyle.cxx
index 9e52a0c..95c1664 100644
--- a/lotuswordpro/source/filter/xfilter/xfcellstyle.cxx
+++ b/lotuswordpro/source/filter/xfilter/xfcellstyle.cxx
@@ -223,7 +223,7 @@ void XFCellStyle::ToXml(IXFStream *pStrm)
 //text indent:
 if( m_fTextIndentFLOAT_MIN )
 {
-pAttrList-AddAttribute(fo:text-indent, 
DoubleToOUString(m_fTextIndent) + cm );
+pAttrList-AddAttribute(fo:text-indent, 

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

2014-03-08 Thread Norbert Thiebaud
 lotuswordpro/source/filter/lwptoc.cxx   |2 -
 lotuswordpro/source/filter/xfilter/xfborders.cxx|   12 --
 lotuswordpro/source/filter/xfilter/xfframestyle.cxx |2 -
 lotuswordpro/source/filter/xfilter/xfliststyle.cxx  |6 ++---
 lotuswordpro/source/filter/xfilter/xfnumfmt.hxx |2 -
 lotuswordpro/source/filter/xfilter/xfutil.cxx   |   23 
 lotuswordpro/source/filter/xfilter/xfutil.hxx   |4 ---
 7 files changed, 11 insertions(+), 40 deletions(-)

New commits:
commit beebe5149d610ea663e884e5b08f260747eae00d
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sun Mar 9 01:03:32 2014 -0600

lotuswordpro: use native OUString api rather than a wrapper

Change-Id: I0a390cda1378bf7be19cb361c90b3374f4756fa4

diff --git a/lotuswordpro/source/filter/xfilter/xfborders.cxx 
b/lotuswordpro/source/filter/xfilter/xfborders.cxx
index aa1c783..d78760f 100644
--- a/lotuswordpro/source/filter/xfilter/xfborders.cxx
+++ b/lotuswordpro/source/filter/xfilter/xfborders.cxx
@@ -119,9 +119,9 @@ OUString   XFBorder::GetLineWidth()
 
 if( m_bDouble )
 {
-str = FloatToOUString(m_fWidthInner);
-str += cm  + OUString::number(m_fWidthSpace);
-str += cm  + OUString::number(m_fWidthOuter) + cm;
+str = OUString::number(m_fWidthInner) + cm  +
+OUString::number(m_fWidthSpace) +  cm  +
+OUString::number(m_fWidthOuter) + cm;
 }
 return str;
 }
@@ -138,8 +138,7 @@ OUString   XFBorder::ToString()
 return str;
 }
 
-str = OUString::number(width) + cm;
-str +=  double  + m_aColor.ToString();
+str = OUString::number(width) + cm double  + m_aColor.ToString();
 }
 else
 {
@@ -148,8 +147,7 @@ OUString   XFBorder::ToString()
 {
 return str;
 }
-str = OUString::number(width) + cm;
-str +=  solid  + m_aColor.ToString();
+str = OUString::number(width) + cm solid  + m_aColor.ToString();
 }
 return str;
 }
diff --git a/lotuswordpro/source/filter/xfilter/xfutil.cxx 
b/lotuswordpro/source/filter/xfilter/xfutil.cxx
index e480f7b..da50ea3 100644
--- a/lotuswordpro/source/filter/xfilter/xfutil.cxx
+++ b/lotuswordpro/source/filter/xfilter/xfutil.cxx
@@ -64,18 +64,6 @@
 #include rtl/ustrbuf.hxx
 #include sstream
 
-OUString   FloatToOUString(float num, sal_Int32 /*precision*/)
-{
-/*std::stringstream sstrm;
-std::string strRet;
-
-sstrm.precision(precision);
-sstrmnum;
-return OUString::createFromAscii(sstrm.str().c_str());
-*/
-return OUString::number(num);
-}
-
 OUString   DateTimeToOUString(XFDateTime dt)
 {
 OUString aResult = OUString::number(dt.nYear) + - + 
OUString::number(dt.nMonth) + - + OUString::number(dt.nDay) +
diff --git a/lotuswordpro/source/filter/xfilter/xfutil.hxx 
b/lotuswordpro/source/filter/xfilter/xfutil.hxx
index c224392..0ea5f87 100644
--- a/lotuswordpro/source/filter/xfilter/xfutil.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfutil.hxx
@@ -65,8 +65,6 @@
 #include rtl/ustring.hxx
 #include string
 
-OUString   FloatToOUString(float num, sal_Int32 precision=6);
-
 OUString   DateTimeToOUString(XFDateTime dt);
 
 OUString   GetTableColName(sal_Int32 col);
commit b49b1e4c0e5e23039b8cfb44857c2f7d22372984
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sun Mar 9 00:57:03 2014 -0600

lotuswordpro: use native OUString api rather than a wrapper

Change-Id: Id670e3cb4982a67d096f548b6d105b97582e1958

diff --git a/lotuswordpro/source/filter/lwptoc.cxx 
b/lotuswordpro/source/filter/lwptoc.cxx
index 3c411af..9196432 100644
--- a/lotuswordpro/source/filter/lwptoc.cxx
+++ b/lotuswordpro/source/filter/lwptoc.cxx
@@ -219,7 +219,7 @@ void  LwpTocSuperLayout::XFConvert(XFContentContainer* 
pCont)
 pTemplate-AddEntry(enumXFIndexTemplatePage, TOC Page 
Number Text Style);
 }
 
-pToc-AddTemplate(Int16ToOUString(i),  
m_pFoundry-FindActuralStyleName(pLevel-GetSearchStyle()), pTemplate);
+pToc-AddTemplate(OUString::number((sal_Int32)i),  
m_pFoundry-FindActuralStyleName(pLevel-GetSearchStyle()), pTemplate);
 bInserted = sal_True;
 }
 
diff --git a/lotuswordpro/source/filter/xfilter/xfframestyle.cxx 
b/lotuswordpro/source/filter/xfilter/xfframestyle.cxx
index 6d6414b..61169ef 100644
--- a/lotuswordpro/source/filter/xfilter/xfframestyle.cxx
+++ b/lotuswordpro/source/filter/xfilter/xfframestyle.cxx
@@ -176,7 +176,7 @@ voidXFFrameStyle::ToXml(IXFStream *pStrm)
 if( m_aBackColor.IsValid() )
 {
 pAttrList-AddAttribute( fo:background-color, 
m_aBackColor.ToString() );
-pAttrList-AddAttribute( style:background-transparency, 
Int16ToOUString(m_nTransparency) + %);
+pAttrList-AddAttribute( style:background-transparency, 
OUString::number((sal_Int32)m_nTransparency) + %);
 }
 
 //pad
diff --git 

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

2014-03-08 Thread Norbert Thiebaud
 lotuswordpro/source/filter/lwpbulletstylemgr.cxx  |2 
 lotuswordpro/source/filter/lwpnumericfmt.hxx  |   80 +-
 lotuswordpro/source/filter/lwpsilverbullet.cxx|2 
 lotuswordpro/source/filter/lwptools.cxx   |4 
 lotuswordpro/source/filter/xfilter/xfsection.cxx  |   20 ++--
 lotuswordpro/source/filter/xfilter/xfsectionstyle.cxx |   20 ++--
 lotuswordpro/source/filter/xfilter/xfshadow.cxx   |   12 +-
 lotuswordpro/source/filter/xfilter/xfstylemanager.cxx |   38 
 lotuswordpro/source/filter/xfilter/xftable.cxx|   30 +++---
 lotuswordpro/source/filter/xfilter/xftablestyle.cxx   |   26 ++---
 lotuswordpro/source/filter/xfilter/xftabstop.hxx  |4 
 lotuswordpro/source/filter/xfilter/xftabstyle.cxx |2 
 lotuswordpro/source/filter/xfilter/xftextboxstyle.cxx |   34 +++
 lotuswordpro/source/filter/xfilter/xftextcontent.cxx  |4 
 14 files changed, 139 insertions(+), 139 deletions(-)

New commits:
commit 64a96febfe6877a504d8b9f049ce6c02a1b6310f
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sun Mar 9 01:16:02 2014 -0600

lotuswordpro: cleanup OUString() usage

Change-Id: Ib0a8c9843a6cdb3704115eca5b967b4e31fa34bd

diff --git a/lotuswordpro/source/filter/lwpbulletstylemgr.cxx 
b/lotuswordpro/source/filter/lwpbulletstylemgr.cxx
index f1889d1..6b1114b 100644
--- a/lotuswordpro/source/filter/lwpbulletstylemgr.cxx
+++ b/lotuswordpro/source/filter/lwpbulletstylemgr.cxx
@@ -232,7 +232,7 @@ OUString LwpBulletStyleMgr::RegisterBulletStyle(LwpPara* 
pPara, LwpBulletOverrid
 }
 
 pListStyle-SetListBullet(nPos, 
LwpSilverBullet::GetNumCharByStyleID(pParaNumber).toChar(),
-OUString(Times New Roman), aPrefix, aSuffix);
+Times New Roman, aPrefix, aSuffix);
 }
 
 pListStyle-SetListPosition(nPos, 0.0, 0.635, 0.0);
diff --git a/lotuswordpro/source/filter/lwpnumericfmt.hxx 
b/lotuswordpro/source/filter/lwpnumericfmt.hxx
index 599af74..134e398 100644
--- a/lotuswordpro/source/filter/lwpnumericfmt.hxx
+++ b/lotuswordpro/source/filter/lwpnumericfmt.hxx
@@ -196,50 +196,50 @@ private:
 void InitCurrencySymbol()
 {
 sal_uInt16 nC=FMT_ARGENTINEANPESO;
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(A));  
  //FMT_ARGENTINEANPESO   = 1,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(A$)); 
  //FMT_AUSTRALIANDOLLAR  = 2,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(oS),sal_True, 
sal_True);//FMT_AUSTRIANSCHILLING = 3,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(BF),sal_True, 
sal_True);//FMT_BELGIANFRANC  = 4,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(R$),sal_False, 
sal_True);//FMT_BRAZILIANCRUZEIRO= 5,
+m_aCurrencyInfo[nC++]=LwpCurrencyInfo(A);
//FMT_ARGENTINEANPESO   = 1,
+m_aCurrencyInfo[nC++]=LwpCurrencyInfo(A$);   
//FMT_AUSTRALIANDOLLAR  = 2,
+m_aCurrencyInfo[nC++]=LwpCurrencyInfo(oS,sal_True, 
sal_True);//FMT_AUSTRIANSCHILLING = 3,
+m_aCurrencyInfo[nC++]=LwpCurrencyInfo(BF,sal_True, 
sal_True);//FMT_BELGIANFRANC  = 4,
+m_aCurrencyInfo[nC++]=LwpCurrencyInfo(R$,sal_False, 
sal_True);//FMT_BRAZILIANCRUZEIRO= 5,
 
m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(RTL_CONSTUTF8_USTRINGPARAM(\357\277\241)));
 //FMT_BRITISHPOUND  = 6,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(C$)); 
  //FMT_CANADIANDOLLAR= 7,
+m_aCurrencyInfo[nC++]=LwpCurrencyInfo(C$);   
//FMT_CANADIANDOLLAR= 7,
 
m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(RTL_CONSTUTF8_USTRINGPARAM(PRC\357\277\245)),sal_False,sal_True);
   //FMT_CHINESEYUAN   = 8,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(Kc),sal_True, 
sal_True);//FMT_CZECHKORUNA   = 9,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(Dkr),sal_False, 
sal_True);//FMT_DANISHKRONE = 10,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(ECU),sal_True, 
sal_True);//FMT_ECU  = 11,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(mk),sal_True, 
sal_True);//FMT_FINNISHMARKKA = 12,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(F),sal_True, 
sal_True);//FMT_FRENCHFRANC= 13,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(DM),sal_True, 
sal_True);//FMT_GERMANMARK= 14,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(Dr),sal_True, 
sal_True);//FMT_GREEKDRACHMA  = 15,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(HK$));
  //FMT_HONGKONGDOLLAR= 16,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(Ft),sal_True, 
sal_True);//FMT_HUNGARIANFORINT   = 17,
-m_aCurrencyInfo[nC++]=LwpCurrencyInfo(OUString(Rs),sal_False, 

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

2014-03-08 Thread Matteo Casalin
 svtools/source/svhtml/parhtml.cxx |7 -
 sw/inc/index.hxx  |   52 ++
 sw/source/core/bastyp/index.cxx   |   28 
 3 files changed, 48 insertions(+), 39 deletions(-)

New commits:
commit d2622ba4f3eb53296df21ec14ec91fda42eebeeb
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Tue Mar 4 08:58:06 2014 +0100

'explicit' makes no sense for a default constructor

Change-Id: Ib70c75e43ecf020fcb39696bddea414b0de9bbf7

diff --git a/sw/inc/index.hxx b/sw/inc/index.hxx
index 9fa4e63..9f9c600 100644
--- a/sw/inc/index.hxx
+++ b/sw/inc/index.hxx
@@ -111,7 +111,7 @@ protected:
 bool HasAnyIndex() const { return 0 != m_pFirst; }
 
 public:
-explicit SwIndexReg();
+SwIndexReg();
 virtual ~SwIndexReg();
 
 /// rtti, derived classes might do the same. If so, one can cast typesavely
commit 574086f4cfbd8f85b47f310e5637d224acc05056
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Tue Mar 4 08:51:48 2014 +0100

Remove '#define INLINE', inline in method definition is enough

Change-Id: I9c7ae289492e3ec8ada111a8dddfb5426ef22d30

diff --git a/sw/inc/index.hxx b/sw/inc/index.hxx
index 568da1a..9fa4e63 100644
--- a/sw/inc/index.hxx
+++ b/sw/inc/index.hxx
@@ -26,12 +26,6 @@
 class SwIndexReg;
 struct SwPosition;
 
-#ifdef DBG_UTIL
-#define INLINE
-#else
-#define INLINE inline
-#endif
-
 /// Marks a character position inside a document model node.
 class SW_DLLPUBLIC SwIndex
 {
@@ -54,23 +48,23 @@ public:
 SwIndex( const SwIndex , short nDiff );
 ~SwIndex() { Remove(); }
 
-INLINE SwIndex operator=( sal_Int32 const );
+SwIndex operator=( sal_Int32 const );
 SwIndex operator=( const SwIndex  );
 
-INLINE sal_Int32 operator++();
-INLINE sal_Int32 operator--();
-INLINE sal_Int32 operator++(int);
-INLINE sal_Int32 operator--(int);
+sal_Int32 operator++();
+sal_Int32 operator--();
+sal_Int32 operator++(int);
+sal_Int32 operator--(int);
 
-INLINE sal_Int32 operator+=( sal_Int32 const );
-INLINE sal_Int32 operator-=( sal_Int32 const );
-INLINE sal_Int32 operator+=( const SwIndex );
-INLINE sal_Int32 operator-=( const SwIndex );
+sal_Int32 operator+=( sal_Int32 const );
+sal_Int32 operator-=( sal_Int32 const );
+sal_Int32 operator+=( const SwIndex );
+sal_Int32 operator-=( const SwIndex );
 
-INLINE bool operator ( const SwIndex ) const;
-INLINE bool operator=( const SwIndex ) const;
-INLINE bool operator ( const SwIndex ) const;
-INLINE bool operator=( const SwIndex ) const;
+bool operator ( const SwIndex ) const;
+bool operator=( const SwIndex ) const;
+bool operator ( const SwIndex ) const;
+bool operator=( const SwIndex ) const;
 
 bool operator ( sal_Int32 const nVal ) const { return m_nIndex   nVal; }
 bool operator=( sal_Int32 const nVal ) const { return m_nIndex = nVal; }
@@ -100,8 +94,6 @@ public:
 const SwIndexReg* GetIdxReg() const { return m_pIndexReg; }
 };
 
-#undef INLINE
-
 class SwIndexReg
 {
 friend class SwIndex;
commit b49e047472e37cda9e7f7c0ee6e4606862054f57
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Tue Mar 4 00:23:14 2014 +0100

Remove unused headers and forward declarations

Change-Id: I8e8406dab1bca2a3349043eecaca168ff9ac00fb

diff --git a/sw/inc/index.hxx b/sw/inc/index.hxx
index 2d1394e..568da1a 100644
--- a/sw/inc/index.hxx
+++ b/sw/inc/index.hxx
@@ -19,14 +19,10 @@
 #ifndef INCLUDED_SW_INC_INDEX_HXX
 #define INCLUDED_SW_INC_INDEX_HXX
 
-#include limits.h
-
-#include rtl/instance.hxx
-#include tools/solar.h
+#include sal/types.h
 #include tools/rtti.hxx
 #include swdllapi.h
 
-class SwIndex;
 class SwIndexReg;
 struct SwPosition;
 
@@ -139,16 +135,19 @@ inline sal_Int32 SwIndex::operator++()
 {
 return ChgValue( *this, m_nIndex+1 ).m_nIndex;
 }
+
 inline sal_Int32 SwIndex::operator--()
 {
 return ChgValue( *this, m_nIndex-1 ).m_nIndex;
 }
+
 inline sal_Int32 SwIndex::operator++(int)
 {
 sal_Int32 const nOldIndex = m_nIndex;
 ChgValue( *this, m_nIndex+1 );
 return nOldIndex;
 }
+
 inline sal_Int32 SwIndex::operator--(int)
 {
 sal_Int32 const nOldIndex = m_nIndex;
@@ -160,14 +159,17 @@ inline sal_Int32 SwIndex::operator+=( sal_Int32 const 
nVal )
 {
 return ChgValue( *this, m_nIndex + nVal ).m_nIndex;
 }
+
 inline sal_Int32 SwIndex::operator-=( sal_Int32 const nVal )
 {
 return ChgValue( *this, m_nIndex - nVal ).m_nIndex;
 }
+
 inline sal_Int32 SwIndex::operator+=( const SwIndex rIndex )
 {
 return ChgValue( *this, m_nIndex + rIndex.m_nIndex ).m_nIndex;
 }
+
 inline sal_Int32 SwIndex::operator-=( const SwIndex rIndex )
 {
 return ChgValue( *this, m_nIndex - rIndex.m_nIndex ).m_nIndex;
@@ -177,18 +179,22 @@ inline bool SwIndex::operator ( const SwIndex rIndex ) 
const
 {
 return m_nIndex   rIndex.m_nIndex;
 }
+
 inline bool SwIndex::operator=( const SwIndex rIndex ) const
 {
 

[Bug 32664] Keyboard volume keys don't work when LibreOffice is in focus

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=32664

Wormbo wormdotnos...@online.de changed:

   What|Removed |Added

 CC||wormdotnos...@online.de

--- Comment #39 from Wormbo wormdotnos...@online.de ---
For me (using LibreOffice 4.2.1.1 on Windows 7 x64 SP1 with Logitech MX5500
keyboard and SetPoint 6.61.15) it's actually the opposite way:
Volume up/down/mute keys work fine with LibreOffice having focus, while
Play/Pause, Previous Track and Next Track don't.

I can see why those keys could be useful during a presentation, but they
clearly serve no purpose while working with e.g. a spreadsheet or a text
document.

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


[Libreoffice-commits] core.git: 4 commits - writerfilter/CustomTarget_source.mk writerfilter/inc writerfilter/Library_writerfilter.mk writerfilter/README writerfilter/source

2014-03-08 Thread Miklos Vajna
 writerfilter/CustomTarget_source.mk  |   22 
 writerfilter/Library_writerfilter.mk |1 
 writerfilter/README  |1 
 writerfilter/inc/pch/precompiled_writerfilter.hxx|1 
 writerfilter/inc/resourcemodel/TableManager.hxx  |1 
 writerfilter/source/dmapper/DomainMapperTableManager.cxx |1 
 writerfilter/source/dmapper/NumberingManager.cxx |1 
 writerfilter/source/dmapper/TablePropertiesHandler.cxx   |1 
 writerfilter/source/doctok/resources.xmi |   14 
 writerfilter/source/doctok/resourcetools.xsl |  386 ---
 writerfilter/source/doctok/sprmcodetostr.xsl |   27 -
 writerfilter/source/doctok/sprmids.xsl   |   59 --
 writerfilter/source/ooxml/OOXMLFastContextHandler.cxx|1 
 writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx   |3 
 writerfilter/source/ooxml/factoryimpl.xsl|1 
 writerfilter/source/ooxml/factoryimpl_ns.xsl |1 
 writerfilter/source/resourcemodel/sprmcodetostrheader|1 
 writerfilter/source/rtftok/rtfdocumentimpl.cxx   |1 
 writerfilter/source/rtftok/rtfsprm.cxx   |2 
 19 files changed, 525 deletions(-)

New commits:
commit 0859d3723931cc71e42fc6e8d68564e60d7c0c9c
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Mar 8 12:13:56 2014 +0100

writerfilter: remove no longer needed doctok/resources.xmi

Change-Id: Ieda9780452af21aef40b925eff6693b8098e91f7

diff --git a/writerfilter/CustomTarget_source.mk 
b/writerfilter/CustomTarget_source.mk
index b562fbc..789a627 100644
--- a/writerfilter/CustomTarget_source.mk
+++ b/writerfilter/CustomTarget_source.mk
@@ -71,7 +71,6 @@ 
writerfilter_GEN_ooxml_QNameToStr_cxx=$(writerfilter_WORK)/ooxml/qnametostr.cxx
 
writerfilter_GEN_ooxml_ResourceIds_hxx=$(writerfilter_WORK)/ooxml/resourceids.hxx
 writerfilter_GEN_ooxml_Token_tmp=$(writerfilter_WORK)/token.tmp
 writerfilter_GEN_ooxml_Token_xml=$(writerfilter_WORK)/token.xml
-writerfilter_SRC_doctok_Model=$(writerfilter_SRC)/doctok/resources.xmi
 
writerfilter_SRC_model_NamespacePreprocess=$(writerfilter_SRC)/resourcemodel/namespace_preprocess.pl
 
writerfilter_SRC_ooxml_Analyze_model_xsl=$(writerfilter_SRC)/ooxml/analyzemodel.xsl
 
writerfilter_SRC_ooxml_FactoryTools_xsl=$(writerfilter_SRC)/ooxml/factorytools.xsl
diff --git a/writerfilter/README b/writerfilter/README
index 0b66f4b..0e8d1dc 100644
--- a/writerfilter/README
+++ b/writerfilter/README
@@ -11,7 +11,6 @@ Import filter for docx, doc and rtf.
 
 == Source contents ==
  * dmapper: the domain mapper, hiding UNO from the tokenizers, used by DOCX 
and RTF import
- * doctok: incomplete and unused ww8 (.doc) tokenizer
  * filter: the UNO filter service implementations, invoked by UNO and calling
the dmapper + one of the tokenizers
  * ooxml: the docx tokenizer
diff --git a/writerfilter/source/doctok/resources.xmi 
b/writerfilter/source/doctok/resources.xmi
deleted file mode 100644
index f145cfab..000
--- a/writerfilter/source/doctok/resources.xmi
+++ /dev/null
@@ -1,14 +0,0 @@
-?xml version=1.0?
-XMI xmlns:UML=org.omg.xmi.namespace.UML xmi.version=1.2
-  XMI.header
-XMI.documentation/
-  /XMI.header
-  XMI.content
-UML:Model name=WW8Document
-  UML:Namespace.ownedElement
-!--SPRMS--
-!--SPRMS--
-  /UML:Namespace.ownedElement
-/UML:Model
-  /XMI.content
-/XMI
commit af5a4f4cb39eb8e5201d402bc5810d60e9ee72b8
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Mar 8 12:13:34 2014 +0100

writerfilter: remove no longer needed doctok/resourcetools.xsl

Change-Id: I378df2ddfc0912610b5f0d674c2a76601f4440c8

diff --git a/writerfilter/CustomTarget_source.mk 
b/writerfilter/CustomTarget_source.mk
index e2a9732..b562fbc 100644
--- a/writerfilter/CustomTarget_source.mk
+++ b/writerfilter/CustomTarget_source.mk
@@ -72,7 +72,6 @@ 
writerfilter_GEN_ooxml_ResourceIds_hxx=$(writerfilter_WORK)/ooxml/resourceids.hx
 writerfilter_GEN_ooxml_Token_tmp=$(writerfilter_WORK)/token.tmp
 writerfilter_GEN_ooxml_Token_xml=$(writerfilter_WORK)/token.xml
 writerfilter_SRC_doctok_Model=$(writerfilter_SRC)/doctok/resources.xmi
-writerfilter_SRC_doctok_ResourceTools_xsl=$(writerfilter_SRC)/doctok/resourcetools.xsl
 
writerfilter_SRC_model_NamespacePreprocess=$(writerfilter_SRC)/resourcemodel/namespace_preprocess.pl
 
writerfilter_SRC_ooxml_Analyze_model_xsl=$(writerfilter_SRC)/ooxml/analyzemodel.xsl
 
writerfilter_SRC_ooxml_FactoryTools_xsl=$(writerfilter_SRC)/ooxml/factorytools.xsl
diff --git a/writerfilter/source/doctok/resourcetools.xsl 
b/writerfilter/source/doctok/resourcetools.xsl
deleted file mode 100644
index c00dc9c..000
--- a/writerfilter/source/doctok/resourcetools.xsl
+++ /dev/null
@@ -1,386 +0,0 @@
-!--
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public

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

2014-03-08 Thread Miklos Vajna
 unusedcode.easy|1 -
 writerfilter/source/dmapper/DomainMapper_Impl.cxx  |3 +--
 writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx |5 -
 writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx |1 -
 4 files changed, 1 insertion(+), 9 deletions(-)

New commits:
commit 58a06b28d96b746014de0eb07cf90e75c3736d1a
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Mar 8 12:29:12 2014 +0100

copypaste from xmloff

Change-Id: I3d700c439fa7112f391f464f744d6e0dcb8e43cf

diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 7d63908..516c436 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -3595,9 +3595,8 @@ void DomainMapper_Impl::CloseFieldCommand()
 /* Unsupported fields will be handled here for docx file.
  * To handle unsupported fields used fieldmark API.
  */
-static const OUString sAPI_unsupportedfield( 
com.sun.star.text.Fieldmark);
 OUString aCode( pContext-GetCommand().trim() );
-xFieldInterface = 
m_xTextFactory-createInstance(sAPI_unsupportedfield);
+xFieldInterface = 
m_xTextFactory-createInstance(com.sun.star.text.Fieldmark);
 const uno::Referencetext::XTextContent 
xTextContent(xFieldInterface, uno::UNO_QUERY_THROW);
 uno::Reference text::XTextAppend   xTextAppend;
 xTextAppend = m_aTextAppendStack.top().xTextAppend;
commit 73eb16923b8b36ecd1e4f434bd248e206b775078
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Mar 8 12:28:22 2014 +0100

unused OOXMLUniversalMeasureValue ctor

Change-Id: I4f956cc9aeab0ad761076f25e920c79cdb75c115

diff --git a/unusedcode.easy b/unusedcode.easy
index e7dbded..2e3550e 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -200,4 +200,3 @@ 
std::auto_ptrformula::FormulaTokenArray::auto_ptr(std::auto_ptrformula::Formu
 
std::auto_ptrformula::FormulaTokenArray::auto_ptr(std::auto_ptr_refformula::FormulaTokenArray)
 std::vectorrtl::Referenceoox::xls::(anonymous namespace)::WorkerThread, 
std::allocatorrtl::Referenceoox::xls::(anonymous namespace)::WorkerThread  
::reserve(unsigned long)
 vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, bool)
-writerfilter::ooxml::OOXMLUniversalMeasureValue::OOXMLUniversalMeasureValue(unsigned
 int)
diff --git a/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx 
b/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
index 15027b5..5d97521 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySetImpl.cxx
@@ -660,11 +660,6 @@ string OOXMLHexValue::toString() const
 
 // OOXMLUniversalMeasureValue
 
-OOXMLUniversalMeasureValue::OOXMLUniversalMeasureValue(sal_uInt32 nValue)
-: mnValue(nValue)
-{
-}
-
 OOXMLUniversalMeasureValue::OOXMLUniversalMeasureValue(const OUString rValue)
 {
 if (rValue.endsWith(pt))
diff --git a/writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx 
b/writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx
index 58815b6..c3ce87f 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx
@@ -220,7 +220,6 @@ class OOXMLUniversalMeasureValue : public OOXMLValue
 protected:
 sal_uInt32 mnValue;
 public:
-explicit OOXMLUniversalMeasureValue(sal_uInt32 nValue);
 explicit OOXMLUniversalMeasureValue(const OUString rValue);
 virtual ~OOXMLUniversalMeasureValue();
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-03-08 Thread Markus Mohrhard
 include/oox/export/utils.hxx |   12 ++--
 oox/source/export/chartexport.cxx|2 ++
 oox/source/export/drawingml.cxx  |9 +
 oox/source/helper/propertymap.cxx|1 -
 sw/source/filter/ww8/docxattributeoutput.cxx |   10 +-
 5 files changed, 18 insertions(+), 16 deletions(-)

New commits:
commit 6b34a4cbcc7e8b9cd118b55c6ca77a1f61049f5f
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Sat Mar 8 14:22:11 2014 +0100

fix OOXML validation error

Change-Id: Ib87eadad99285e19d73f4de58690de501084293c

diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 70445d1..980f4fb 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -4031,12 +4031,12 @@ void DocxAttributeOutput::StartStyle( const OUString 
rName, StyleType eType,
 m_pSerializer-singleElementNS(XML_w, XML_uiPriority,
 FSNS(XML_w, XML_val), OUStringToOString(aUiPriority, 
RTL_TEXTENCODING_UTF8).getStr(),
 FSEND);
-if (bQFormat)
-m_pSerializer-singleElementNS(XML_w, XML_qFormat, FSEND);
 if (bSemiHidden)
 m_pSerializer-singleElementNS(XML_w, XML_semiHidden, FSEND);
 if (bUnhideWhenUsed)
 m_pSerializer-singleElementNS(XML_w, XML_unhideWhenUsed, FSEND);
+if (bQFormat)
+m_pSerializer-singleElementNS(XML_w, XML_qFormat, FSEND);
 if (bLocked)
 m_pSerializer-singleElementNS(XML_w, XML_locked, FSEND);
 if (!aRsid.isEmpty())
commit 381613916d42a1e18e2824b5d41028dcfe19659a
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Sat Mar 8 14:21:26 2014 +0100

fix OOXML validaition error

Change-Id: I26e063cd1971d980583e884ca2f4e0ba9d9391ad

diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index f51d892..70445d1 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -4024,6 +4024,9 @@ void DocxAttributeOutput::StartStyle( const OUString 
rName, StyleType eType,
 FSNS(XML_w, XML_val), OUStringToOString(aLink, 
RTL_TEXTENCODING_UTF8).getStr(),
 FSEND);
 
+if ( bAutoUpdate )
+m_pSerializer-singleElementNS( XML_w, XML_autoRedefine, FSEND );
+
 if (!aUiPriority.isEmpty())
 m_pSerializer-singleElementNS(XML_w, XML_uiPriority,
 FSNS(XML_w, XML_val), OUStringToOString(aUiPriority, 
RTL_TEXTENCODING_UTF8).getStr(),
@@ -4040,9 +4043,6 @@ void DocxAttributeOutput::StartStyle( const OUString 
rName, StyleType eType,
 m_pSerializer-singleElementNS(XML_w, XML_rsid,
 FSNS(XML_w, XML_val), OUStringToOString(aRsid, 
RTL_TEXTENCODING_UTF8).getStr(),
 FSEND);
-
-if ( bAutoUpdate )
-m_pSerializer-singleElementNS( XML_w, XML_autoRedefine, FSEND );
 }
 
 void DocxAttributeOutput::EndStyle()
commit a2a40409e28e7db7d2341396401072a3f912d29a
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Sat Mar 8 13:48:44 2014 +0100

remove one more debug output

Change-Id: Ib4b94d2a7e429721299fd07db4bd7a97c7773c0d

diff --git a/oox/source/helper/propertymap.cxx 
b/oox/source/helper/propertymap.cxx
index a06afd9..5a153be 100644
--- a/oox/source/helper/propertymap.cxx
+++ b/oox/source/helper/propertymap.cxx
@@ -222,7 +222,6 @@ bool PropertyMap::empty() const
 
 void PropertyMap::assignUsed( const PropertyMap rPropMap )
 {
-SAL_WARN_IF(rPropMap.maProperties.size()  maProperties.size(), oox, 
too many properties);
 maProperties.insert(rPropMap.maProperties.begin(), 
rPropMap.maProperties.end());
 }
 
commit 79ed9ebb6ed64a10928ad3a10924708c312703a3
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Sat Mar 8 13:32:23 2014 +0100

fix OOXML validation error, related fdo#36731

Missing elements for gradient fill background export.

Change-Id: Ib3ed3b5e353d3b02dffa5c118e14fd2187bd924a

diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index 9f8df56..b912bcf 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1218,7 +1218,9 @@ void ChartExport::exportGradientFill( Reference 
XPropertySet  xPropSet )
 uno::Any rValue = xGradient-getByName( sFillGradientName );
 if( (rValue = aGradient) )
 {
+mpFS-startElementNS( XML_a, XML_gradFill, FSEND );
 WriteGradientFill( aGradient );
+mpFS-endElementNS( XML_a, XML_gradFill );
 }
 }
 catch (const uno::Exception  rEx)
commit b1fbb1513a4d183e3194965c1a60feca56dc90bb
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Sat Mar 8 13:01:53 2014 +0100

fix OOXML validation error, related fdo#42698

Missing percentage sign in type. The 

[Libreoffice-commits] core.git: 11 commits - connectivity/source filter/source framework/source include/svx sc/source svx/source

2014-03-08 Thread Caolán McNamara
 connectivity/source/drivers/dbase/DTable.cxx   |4 +--
 filter/source/msfilter/eschesdo.cxx|4 +--
 framework/source/jobs/jobresult.cxx|2 +
 framework/source/layoutmanager/toolbarlayoutmanager.hxx|7 +-
 framework/source/uielement/langselectionmenucontroller.cxx |9 
 include/svx/svdocirc.hxx   |4 ---
 sc/source/ui/docshell/impex.cxx|2 -
 svx/source/svdraw/svdhdl.cxx   |   14 ++---
 svx/source/svdraw/svdoedge.cxx |2 +
 svx/source/svdraw/svdopath.cxx |1 
 10 files changed, 28 insertions(+), 21 deletions(-)

New commits:
commit c66a649a2d9c65b1b0101e404f751255273111c7
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Mar 8 12:55:02 2014 +

coverity#707884 Uninitialized scalar field

Change-Id: I21810eac9579b536017b8187497d04dbbc0109c6

diff --git a/framework/source/uielement/langselectionmenucontroller.cxx 
b/framework/source/uielement/langselectionmenucontroller.cxx
index 1d736eb..952a03b 100644
--- a/framework/source/uielement/langselectionmenucontroller.cxx
+++ b/framework/source/uielement/langselectionmenucontroller.cxx
@@ -74,10 +74,11 @@ DEFINE_XSERVICEINFO_MULTISERVICE_2  (   
LanguageSelectionMenuController
 
 DEFINE_INIT_SERVICE (   LanguageSelectionMenuController, 
{} )
 
-LanguageSelectionMenuController::LanguageSelectionMenuController( const 
::com::sun::star::uno::Reference ::com::sun::star::uno::XComponentContext  
xContext ) :
-svt::PopupMenuControllerBase( xContext ),
-m_bShowMenu( sal_True ),
-m_aLangGuessHelper( xContext )
+LanguageSelectionMenuController::LanguageSelectionMenuController( const 
::com::sun::star::uno::Reference ::com::sun::star::uno::XComponentContext  
xContext )
+: svt::PopupMenuControllerBase(xContext)
+, m_bShowMenu(sal_True)
+, m_nScriptType(LS_SCRIPT_LATIN | LS_SCRIPT_ASIAN | LS_SCRIPT_COMPLEX)
+, m_aLangGuessHelper(xContext)
 {
 }
 
commit 51a954809aebd9f10449a4b9c9d05c25e2a6d668
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Mar 8 12:52:55 2014 +

coverity#707879 Uninitialized scalar field

Change-Id: I618fa64876dc27a3d3ced9281f1b02b97a983166

diff --git a/framework/source/layoutmanager/toolbarlayoutmanager.hxx 
b/framework/source/layoutmanager/toolbarlayoutmanager.hxx
index b4cbb17..8062eb3 100644
--- a/framework/source/layoutmanager/toolbarlayoutmanager.hxx
+++ b/framework/source/layoutmanager/toolbarlayoutmanager.hxx
@@ -184,7 +184,12 @@ class ToolbarLayoutManager : public 
::cppu::WeakImplHelper3 ::com::sun::star::a
 typedef std::vector UIElement  UIElementVector;
 struct SingleRowColumnWindowData
 {
-SingleRowColumnWindowData() : nVarSize( 0 ), nStaticSize( 0 ), 
nSpace( 0 ) {}
+SingleRowColumnWindowData()
+: nVarSize(0)
+, nStaticSize(0)
+, nSpace(0)
+, nRowColumn(0)
+{}
 
 std::vector OUString 
  aUIElementNames;
 std::vector ::com::sun::star::uno::Reference 
::com::sun::star::awt::XWindow   aRowColumnWindows;
commit e769d718b11065de1d61edca3c25549afa9cc871
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Mar 8 12:51:42 2014 +

coverity#707878 Uninitialized scalar field

Change-Id: I80289d98a5ce58a539516d08d1fc37258ca97e52

diff --git a/framework/source/jobs/jobresult.cxx 
b/framework/source/jobs/jobresult.cxx
index f932f0c1..19c9142 100644
--- a/framework/source/jobs/jobresult.cxx
+++ b/framework/source/jobs/jobresult.cxx
@@ -37,6 +37,7 @@ namespace framework{
 */
 JobResult::JobResult()
 : ThreadHelpBase(Application::GetSolarMutex())
+, m_bDeactivate(false)
 {
 // reset the flag mask!
 // It will reset the accessible state of this object.
commit e917d3065a1f1f5cbf8ca4dc37ed30aa72145e37
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Mar 8 12:51:11 2014 +

coverity#707877 Uninitialized scalar field

Change-Id: I9454da6940f4d63f916e655b237d78fc701025e9

diff --git a/framework/source/jobs/jobresult.cxx 
b/framework/source/jobs/jobresult.cxx
index 703cbc5..f932f0c1 100644
--- a/framework/source/jobs/jobresult.cxx
+++ b/framework/source/jobs/jobresult.cxx
@@ -90,6 +90,7 @@ JobResult::JobResult()
 */
 JobResult::JobResult( /*IN*/ const css::uno::Any aResult )
 : ThreadHelpBase(Application::GetSolarMutex())
+, m_bDeactivate(false)
 {
 // safe the pure result
 // May someone need it later ...
commit a02181f5ae6ef39ca988f13f8ce50c294652ddba
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Mar 8 12:49:47 2014 +

coverity#708370 Uninitialized scalar field

Change-Id: I9496ce4f5b5233e700aac0a46794e391929d7fbc

diff 

[Libreoffice-commits] core.git: 6 commits - include/tools include/unotools svx/source sw/qa sw/source tools/source unotools/source writerfilter/source

2014-03-08 Thread Jacobo Aragunde Pérez
 dev/null|binary
 include/tools/datetimeutils.hxx |6 +
 include/unotools/datetime.hxx   |3 
 svx/source/items/numfmtsh.cxx   |2 
 sw/qa/extras/ooxmlexport/data/date-control.docx |binary
 sw/qa/extras/ooxmlexport/ooxmlexport.cxx|   26 +---
 sw/source/filter/ww8/docxattributeoutput.cxx|   52 
 tools/source/datetime/datetimeutils.cxx |   20 ++
 unotools/source/misc/datetime.cxx   |   75 +---
 writerfilter/source/dmapper/DomainMapper.cxx|3 
 writerfilter/source/dmapper/SdtHelper.cxx   |   23 ++-
 writerfilter/source/dmapper/SdtHelper.hxx   |5 +
 writerfilter/source/ooxml/model.xml |1 
 13 files changed, 192 insertions(+), 24 deletions(-)

New commits:
commit ec1b9bfd9b444fcd3a3559ce1281b08afce19362
Author: Jacobo Aragunde Pérez jaragu...@igalia.com
Date:   Fri Mar 7 20:01:38 2014 +0100

ooxml: fix export of empty date controls

The text contained in the sdtContent tag acts both as a help message
to the user and as the actual data; for example, Word 2010 is able to
set the date of the control from the text in the content if the
w:fullDate attribute in date tag is not set. For that reason we
should not use the sdtContent as the HelpText property of the
control in any case, only when it is empty.

The name of the parameter rDefaultText was modified to reflect that
string does not represent any default text, only the content of the
sdtContent tag.

Change-Id: Ic10334a949969ec8c7c3e25f73fb937a50ee0f7f
TODO: is it worth to internationalize the help text?

diff --git a/writerfilter/source/dmapper/SdtHelper.cxx 
b/writerfilter/source/dmapper/SdtHelper.cxx
index 1e1aa4c..ababd53 100644
--- a/writerfilter/source/dmapper/SdtHelper.cxx
+++ b/writerfilter/source/dmapper/SdtHelper.cxx
@@ -91,11 +91,11 @@ void SdtHelper::createDropDownControl()
 m_aDropDownItems.clear();
 }
 
-void SdtHelper::createDateControl(OUString rDefaultText)
+void SdtHelper::createDateControl(OUString rContentText)
 {
 uno::Referenceawt::XControlModel 
xControlModel(m_rDM_Impl.GetTextFactory()-createInstance(com.sun.star.form.component.DateField),
 uno::UNO_QUERY);
 uno::Referencebeans::XPropertySet xPropertySet(xControlModel, 
uno::UNO_QUERY);
-xPropertySet-setPropertyValue(HelpText, uno::makeAny(rDefaultText));
+
 xPropertySet-setPropertyValue(Dropdown, uno::makeAny(sal_True));
 xPropertySet-setPropertyValue(DateFormat, uno::makeAny(*m_oDateFormat));
 m_oDateFormat.reset();
@@ -106,10 +106,13 @@ void SdtHelper::createDateControl(OUString rDefaultText)
 {
 utl::extractDate(aDateTime, aDate);
 xPropertySet-setPropertyValue(Date, uno::makeAny(aDate));
+xPropertySet-setPropertyValue(HelpText, 
uno::makeAny(OUString(Click here to enter a date)));
 }
+else
+xPropertySet-setPropertyValue(HelpText, uno::makeAny(rContentText));
 
 std::vectorOUString aItems;
-createControlShape(lcl_getOptimalWidth(m_rDM_Impl.GetStyleSheetTable(), 
rDefaultText, aItems), xControlModel);
+createControlShape(lcl_getOptimalWidth(m_rDM_Impl.GetStyleSheetTable(), 
rContentText, aItems), xControlModel);
 }
 
 void SdtHelper::createControlShape(awt::Size aSize, 
uno::Referenceawt::XControlModel xControlModel)
diff --git a/writerfilter/source/dmapper/SdtHelper.hxx 
b/writerfilter/source/dmapper/SdtHelper.hxx
index f58f008..65a736b 100644
--- a/writerfilter/source/dmapper/SdtHelper.hxx
+++ b/writerfilter/source/dmapper/SdtHelper.hxx
@@ -74,7 +74,7 @@ public:
 /// Create drop-down control from w:sdt's w:dropDownList.
 void createDropDownControl();
 /// Create date control from w:sdt's w:date.
-void createDateControl(OUString rDefaultText);
+void createDateControl(OUString rContentText);
 };
 
 } // namespace dmapper
commit b2385830711ec700956869ace7670edd845a50df
Author: Jacobo Aragunde Pérez jaragu...@igalia.com
Date:   Fri Mar 7 18:04:09 2014 +0100

ooxml: export date controls properly

Export date controls as ooxml Standard Document Tags (SDT) instead
of replacing them with plain text.

SDT date controls contain the date in ISO format as an attribute of
date tag, a custom date format that can be specified by the user
in the dateFormat tag and the date formatted in that custom format
in the w:sdtContent tag.

The unit test testFormControl from ooxmlexport suite was removed,
it only checked if the date control was exported as text and it
obviously fails now. A new test that checks the values of the
exported control was written instead.

A pair of date format functions were added to datetimeutils.hxx.

TODO: to avoid supporting all the posible custom formats that can be
specified in the dateFormat tag, it is forced to dd/mm/ on
   

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

2014-03-08 Thread Jacobo Aragunde Pérez
 sw/qa/extras/ooxmlexport/ooxmlexport.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 25cd2f4bb4459c4195aaaf4ae0c89a61bd47e724
Author: Jacobo Aragunde Pérez jaragu...@igalia.com
Date:   Sat Mar 8 17:59:21 2014 +0100

Fix types in a test

Change-Id: I2f857f564e100cc4cf6b885c5a8f96e506b4046f

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
index b870866..80189af 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
@@ -2968,9 +2968,9 @@ DECLARE_OOXMLEXPORT_TEST(testDateControl, 
date-control.docx)
 // check imported control
 uno::Referencedrawing::XControlShape xControl(getShape(1), 
uno::UNO_QUERY);
 util::Date aDate = getPropertyutil::Date(xControl-getControl(), Date);
-CPPUNIT_ASSERT_EQUAL(5, sal_Int32(aDate.Day));
-CPPUNIT_ASSERT_EQUAL(3, sal_Int32(aDate.Month));
-CPPUNIT_ASSERT_EQUAL(2014,  sal_Int32(aDate.Year));
+CPPUNIT_ASSERT_EQUAL(sal_Int32(5),sal_Int32(aDate.Day));
+CPPUNIT_ASSERT_EQUAL(sal_Int32(3),sal_Int32(aDate.Month));
+CPPUNIT_ASSERT_EQUAL(sal_Int32(2014), sal_Int32(aDate.Year));
 }
 
 #endif
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 3 commits - sc/qa sw/qa test/source xmloff/source

2014-03-08 Thread Markus Mohrhard
 sc/qa/unit/helper/qahelper.cxx |2 ++
 sw/qa/extras/inc/swmodeltestbase.hxx   |   14 +-
 test/source/bootstrapfixture.cxx   |   12 +++-
 xmloff/source/style/PageMasterStyleMap.cxx |6 --
 4 files changed, 26 insertions(+), 8 deletions(-)

New commits:
commit 54195c53a915b28302bf36333d2b328e57881b30
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Sat Mar 8 18:28:02 2014 +0100

add disabled support for export validation in writer tests

Still too many validation errors to enable it.

Change-Id: I45830f6cff8ef52bc63fdda61a99985f4f7d242a

diff --git a/sw/qa/extras/inc/swmodeltestbase.hxx 
b/sw/qa/extras/inc/swmodeltestbase.hxx
index 77c32c2..a3c3dec 100644
--- a/sw/qa/extras/inc/swmodeltestbase.hxx
+++ b/sw/qa/extras/inc/swmodeltestbase.hxx
@@ -444,13 +444,25 @@ protected:
 uno::Referenceframe::XStorable xStorable(mxComponent, 
uno::UNO_QUERY);
 uno::Sequencebeans::PropertyValue aArgs(1);
 aArgs[0].Name = FilterName;
-aArgs[0].Value = OUString::createFromAscii(pFilter);
+OUString aFilterName = OUString::createFromAscii(pFilter);
+aArgs[0].Value = aFilterName;
 m_aTempFile.EnableKillingFile();
 xStorable-storeToURL(m_aTempFile.GetURL(), aArgs);
 uno::Referencelang::XComponent xComponent(xStorable, uno::UNO_QUERY);
 xComponent-dispose();
 m_bExported = true;
 mxComponent = loadFromDesktop(m_aTempFile.GetURL(), 
com.sun.star.text.TextDocument);
+if(aFilterName == Office Open XML Text)
+{
+// too many validation errors right now
+// validate(m_aTempFile.GetFileName(), test::OOXML);
+}
+else if(aFilterName == writer8)
+{
+// still a few validation errors
+// validate(m_aTempFile.GetFileName(), test::ODF);
+}
+
 if (mpXmlBuffer)
 {
 xmlBufferFree(mpXmlBuffer);
commit e896b8ecdbdf62a30c4097e283b0ad67a91ab60f
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Sat Mar 8 17:13:38 2014 +0100

fix ODF validation error

that attribute was only written for backwards compatibility

Change-Id: Icf06300809c55c3a20a74ee3b9d36644d6f5c2d9

diff --git a/xmloff/source/style/PageMasterStyleMap.cxx 
b/xmloff/source/style/PageMasterStyleMap.cxx
index 458bfdf..1fe2c17 100644
--- a/xmloff/source/style/PageMasterStyleMap.cxx
+++ b/xmloff/source/style/PageMasterStyleMap.cxx
@@ -28,8 +28,6 @@ using namespace ::xmloff::token;
 MAP(name,prefix,token,type|XML_TYPE_PROP_PAGE_LAYOUT,context, 
SvtSaveOptions::ODFVER_010)
 #define PLMAP_12(name,prefix,token,type,context) \
 MAP(name,prefix,token,type|XML_TYPE_PROP_PAGE_LAYOUT,context, 
SvtSaveOptions::ODFVER_012)
-#define PLMAP_EX(name,prefix,token,type,context) \
-MAP(name,prefix,token,type|XML_TYPE_PROP_PAGE_LAYOUT,context, 
SvtSaveOptions::ODFVER_012_EXT_COMPAT)
 #define HFMAP(name,prefix,token,type,context) \
 MAP(name,prefix,token,type|XML_TYPE_PROP_HEADER_FOOTER,context, 
SvtSaveOptions::ODFVER_010)
 
@@ -102,10 +100,6 @@ const XMLPropertyMapEntry aXMLPageMasterStyleMap[] =
 //text grid enhancement for better CJK support
 PLMAP_12( GridBaseWidth, XML_NAMESPACE_STYLE, 
XML_LAYOUT_GRID_BASE_WIDTH, XML_TYPE_MEASURE, CTP_PM_GRID_BASE_WIDTH ),
 PLMAP_12( GridSnapToChars, XML_NAMESPACE_STYLE, XML_LAYOUT_GRID_SNAP_TO, 
XML_TYPE_BOOL, CTP_PM_GRID_SNAP_TO ),
-// fdo#44073: layout-grid-snap-to-characters does not exist in ODF:
-// write this in extended mode purely for backward compatibility so old
-// OOo/LO versions that don't understand layout-grid-snap-to read it
-PLMAP_EX( GridSnapToChars, XML_NAMESPACE_STYLE, 
XML_LAYOUT_GRID_SNAP_TO_CHARS, XML_TYPE_BOOL, CTP_PM_GRID_SNAP_TO_CHARS ),
   //export as a default attribute
 PLMAP_12( StandardPageMode, XML_NAMESPACE_STYLE, 
XML_LAYOUT_GRID_STANDARD_MODE, XML_TYPE_BOOL|MID_FLAG_DEFAULT_ITEM_EXPORT, 
CTF_PM_STANDARD_MODE ),
 
commit 50532e3f63421f107e519242e58f03b90fdf3679
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Sat Mar 8 16:51:47 2014 +0100

enable ODF export validation

Change-Id: I09f517a49507a2eb31118f88f31dc2ff8b03de6a

diff --git a/sc/qa/unit/helper/qahelper.cxx b/sc/qa/unit/helper/qahelper.cxx
index 320ab5e..776955f 100644
--- a/sc/qa/unit/helper/qahelper.cxx
+++ b/sc/qa/unit/helper/qahelper.cxx
@@ -616,6 +616,8 @@ ScDocShellRef ScBootstrapFixture::saveAndReload(
 ScDocShellRef xDocSh = load(aTempFile.GetURL(), rFilter, rUserData, 
rTypeName, nFormatType, nFormat );
 if(nFormatType == XLSX_FORMAT_TYPE)
 validate(aTempFile.GetFileName(), test::OOXML);
+else if (nFormatType == ODS_FORMAT_TYPE)
+validate(aTempFile.GetFileName(), test::ODF);
 return xDocSh;
 }
 
diff --git a/test/source/bootstrapfixture.cxx b/test/source/bootstrapfixture.cxx
index 137a284..a980731 100644
--- 

[Libreoffice-commits] core.git: Branch 'private/kohei/opencl-kernel-crash' - 0 commits -

2014-03-08 Thread Unknown
Rebased ref, commits from common ancestor:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


RE: HELP: Impress language dictionary

2014-03-08 Thread Alexandre Vicenzi
It's work for a single word/paragraph. I want to change the entire document. 
There's an option for this?

 Date: Fri, 7 Mar 2014 14:00:12 +0100
 From: t...@documentfoundation.org
 To: vicenzi.alexan...@gmail.com
 CC: libreoffice@lists.freedesktop.org
 Subject: Re: HELP: Impress language dictionary
 
 Alexandre Vicenzi wrote:
  I was using Impress yesterday, and I can't find where I choose the
  current dictionary for spelling.  On Writer is on page bottom.
  
 Hi Alexandre,
 
 this is the LibreOffice development list - please refer to
 http://www.libreoffice.org/get-help/community-support/ for having user
 questions answered.
 
 To your question - simply change the language your text is in
 (e.g. via Format-Character), LibreOffice then picks a suitable
 dictionary automatically.
 
 HTH,
 
 -- Thorsten
  ___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2014-03-08 Thread Takeshi Abe
 vcl/source/gdi/gfxlink.cxx |9 +
 vcl/source/gdi/impanmvw.cxx|   10 --
 vcl/source/gdi/impgraph.cxx|   27 ---
 vcl/source/gdi/impvect.cxx |   22 +++---
 vcl/source/gdi/outdev4.cxx |   19 +++
 vcl/source/gdi/outdev6.cxx |   19 +--
 vcl/source/gdi/pdfwriter_impl2.cxx |   15 +++
 vcl/unx/generic/gdi/salbmp.cxx |   19 ++-
 vcl/unx/generic/gdi/salgdi2.cxx|   11 +--
 9 files changed, 70 insertions(+), 81 deletions(-)

New commits:
commit 06024a58e01a41fe5ce5af38b7714ea6c66a6832
Author: Takeshi Abe t...@fixedpoint.jp
Date:   Sun Mar 9 00:44:27 2014 +0900

Avoid possible resource leaks with boost::scoped_ptr

Change-Id: Ic6e8482dfb022f32532b5c1a6e045092c3485106

diff --git a/vcl/source/gdi/gfxlink.cxx b/vcl/source/gdi/gfxlink.cxx
index 1d726ba..3d6ba2951 100644
--- a/vcl/source/gdi/gfxlink.cxx
+++ b/vcl/source/gdi/gfxlink.cxx
@@ -28,6 +28,7 @@
 #include vcl/gfxlink.hxx
 #include vcl/cvtgrf.hxx
 #include com/sun/star/ucb/CommandAbortedException.hpp
+#include boost/scoped_ptr.hpp
 
 GfxLink::GfxLink() :
 meType  ( GFX_LINK_TYPE_NONE ),
@@ -346,12 +347,12 @@ ImpSwap::ImpSwap( sal_uInt8* pData, sal_uLong nDataSize ) 
:
 maURL = aTempFile.GetURL();
 if( !maURL.isEmpty() )
 {
-SvStream* pOStm = ::utl::UcbStreamHelper::CreateStream( maURL, 
STREAM_READWRITE | STREAM_SHARE_DENYWRITE );
+boost::scoped_ptrSvStream 
pOStm(::utl::UcbStreamHelper::CreateStream( maURL, STREAM_READWRITE | 
STREAM_SHARE_DENYWRITE ));
 if( pOStm )
 {
 pOStm-Write( pData, mnDataSize );
 bool bError = ( ERRCODE_NONE != pOStm-GetError() );
-delete pOStm;
+pOStm.reset();
 
 if( bError )
 {
@@ -375,7 +376,7 @@ sal_uInt8* ImpSwap::GetData() const
 
 if( IsSwapped() )
 {
-SvStream* pIStm = ::utl::UcbStreamHelper::CreateStream( maURL, 
STREAM_READWRITE );
+boost::scoped_ptrSvStream 
pIStm(::utl::UcbStreamHelper::CreateStream( maURL, STREAM_READWRITE ));
 if( pIStm )
 {
 pData = new sal_uInt8[ mnDataSize ];
@@ -386,7 +387,7 @@ sal_uInt8* ImpSwap::GetData() const
 {
 bError = true;
 }
-delete pIStm;
+pIStm.reset();
 
 if( bError )
 delete[] pData, pData = NULL;
diff --git a/vcl/source/gdi/impanmvw.cxx b/vcl/source/gdi/impanmvw.cxx
index 5a54530..ee34d1fd 100644
--- a/vcl/source/gdi/impanmvw.cxx
+++ b/vcl/source/gdi/impanmvw.cxx
@@ -22,6 +22,7 @@
 #include vcl/virdev.hxx
 #include vcl/window.hxx
 #include tools/helpers.hxx
+#include boost/scoped_ptr.hpp
 
 ImplAnimView::ImplAnimView( Animation* pParent, OutputDevice* pOut,
 const Point rPt, const Size rSz,
@@ -155,7 +156,7 @@ void ImplAnimView::ImplGetPosSize( const AnimationBitmap 
rAnm, Point rPosPix,
 void ImplAnimView::ImplDrawToPos( sal_uLong nPos )
 {
 VirtualDevice   aVDev;
-Region* pOldClip = !maClip.IsNull() ? new Region( 
mpOut-GetClipRegion() ) : NULL;
+boost::scoped_ptrRegion pOldClip(!maClip.IsNull() ? new Region( 
mpOut-GetClipRegion() ) : NULL);
 
 aVDev.SetOutputSizePixel( maSzPix, false );
 nPos = std::min( nPos, (sal_uLong) mpParent-Count() - 1UL );
@@ -169,10 +170,7 @@ void ImplAnimView::ImplDrawToPos( sal_uLong nPos )
 mpOut-DrawOutDev( maDispPt, maDispSz, Point(), maSzPix, aVDev );
 
 if( pOldClip )
-{
 mpOut-SetClipRegion( *pOldClip );
-delete pOldClip;
-}
 }
 
 void ImplAnimView::ImplDraw( sal_uLong nPos )
@@ -269,7 +267,7 @@ void ImplAnimView::ImplDraw( sal_uLong nPos, VirtualDevice* 
pVDev )
 
 if( !pVDev )
 {
-Region* pOldClip = !maClip.IsNull() ? new Region( 
mpOut-GetClipRegion() ) : NULL;
+boost::scoped_ptrRegion pOldClip(!maClip.IsNull() ? new Region( 
mpOut-GetClipRegion() ) : NULL);
 
 if( pOldClip )
 mpOut-SetClipRegion( maClip );
@@ -279,7 +277,7 @@ void ImplAnimView::ImplDraw( sal_uLong nPos, VirtualDevice* 
pVDev )
 if( pOldClip )
 {
 mpOut-SetClipRegion( *pOldClip );
-delete pOldClip;
+pOldClip.reset();
 }
 
 delete pDev;
diff --git a/vcl/source/gdi/impgraph.cxx b/vcl/source/gdi/impgraph.cxx
index a118405..7f346cf 100644
--- a/vcl/source/gdi/impgraph.cxx
+++ b/vcl/source/gdi/impgraph.cxx
@@ -37,6 +37,7 @@
 #include impgraph.hxx
 #include com/sun/star/ucb/CommandAbortedException.hpp
 #include vcl/dibtools.hxx
+#include boost/scoped_ptr.hpp
 
 #define GRAPHIC_MAXPARTLEN  256000L
 #define GRAPHIC_MTFTOBMP_MAXEXT 2048
@@ -1097,10 +1098,10 @@ bool ImpGraphic::ImplReadEmbedded( SvStream rIStm, 
bool bSwap )
 
   

[Libreoffice-commits] core.git: 13 commits - framework/source hwpfilter/source i18npool/source idlc/source idl/inc idl/source io/source oox/source sc/source sw/source

2014-03-08 Thread Caolán McNamara
 framework/source/uielement/uicommanddescription.cxx   |8 +---
 hwpfilter/source/hbox.cxx |4 +++-
 i18npool/source/indexentry/indexentrysupplier_default.cxx |6 +-
 idl/inc/lex.hxx   |6 +-
 idl/source/objects/slot.cxx   |2 ++
 idlc/source/astdeclaration.cxx|1 +
 io/source/stm/omark.cxx   |   11 ++-
 oox/source/drawingml/chart/datasourcecontext.cxx  |5 +++--
 sc/source/filter/oox/defnamesbuffer.cxx   |1 +
 sw/source/core/doc/doccomp.cxx|3 ++-
 10 files changed, 33 insertions(+), 14 deletions(-)

New commits:
commit c8117c46f1e4f9aaf6245d5d68f26d5656116b39
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Mar 8 20:26:17 2014 +

coverity#708413 Uninitialized scalar field

Change-Id: Id4ffee405f4047845223a53595f08c5bcd86b52a

diff --git a/sw/source/core/doc/doccomp.cxx b/sw/source/core/doc/doccomp.cxx
index 990d645d..d36b16c 100644
--- a/sw/source/core/doc/doccomp.cxx
+++ b/sw/source/core/doc/doccomp.cxx
@@ -435,7 +435,7 @@ void CompareData::CheckForChangesInLine( const CompareData 
,
 }
 
 Hash::Hash( sal_uLong nSize )
-: nCount( 1 )
+: nCount(1)
 {
 
 static const sal_uLong primes[] =
@@ -471,6 +471,7 @@ static const sal_uLong primes[] =
 pDataArr[0].nNext = 0;
 pDataArr[0].nHash = 0,
 pDataArr[0].pLine = 0;
+nPrime = primes[0];
 
 for( i = 0; primes[i]  nSize / 3;  i++)
 if( !primes[i] )
commit a506455b0e5f72d7ebbcfb53a5ea70c05ded485c
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Mar 8 20:23:16 2014 +

coverity#707957 Uninitialized scalar field

Change-Id: Ia18a00985a6d9c392a7470b445248c13977475d0

diff --git a/sc/source/filter/oox/defnamesbuffer.cxx 
b/sc/source/filter/oox/defnamesbuffer.cxx
index b06fec8..fa462bf 100644
--- a/sc/source/filter/oox/defnamesbuffer.cxx
+++ b/sc/source/filter/oox/defnamesbuffer.cxx
@@ -262,6 +262,7 @@ DefinedName::DefinedName( const WorkbookHelper rHelper ) :
 DefinedNameBase( rHelper ),
 mpScRangeData(NULL),
 mnTokenIndex( -1 ),
+mnCalcSheet( 0 ),
 mcBuiltinId( BIFF_DEFNAME_UNKNOWN ),
 mnFmlaSize( 0 )
 {
commit 62b2e8828b2feaf0b866fd529305e6d0a002d687
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Mar 8 20:21:30 2014 +

coverity#707955 Uninitialized scalar field

Change-Id: Ia6416e8c3c2e90bdf33908b53f67a77abef765b1

diff --git a/oox/source/drawingml/chart/datasourcecontext.cxx 
b/oox/source/drawingml/chart/datasourcecontext.cxx
index d310645..b6aed19 100644
--- a/oox/source/drawingml/chart/datasourcecontext.cxx
+++ b/oox/source/drawingml/chart/datasourcecontext.cxx
@@ -110,8 +110,9 @@ void DoubleSequenceContext::onCharacters( const OUString 
rChars )
 
 
 
-StringSequenceContext::StringSequenceContext( ContextHandler2Helper rParent, 
DataSequenceModel rModel ) :
-DataSequenceContextBase( rParent, rModel )
+StringSequenceContext::StringSequenceContext( ContextHandler2Helper rParent, 
DataSequenceModel rModel )
+: DataSequenceContextBase( rParent, rModel )
+, mnPtIndex(-1)
 {
 }
 
commit 00715826feeaa8c37c27f6da41fffaedf82480c1
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Mar 8 20:20:26 2014 +

coverity#707939 Uninitialized scalar field

Change-Id: I5cbb4e2fef4361085840c914e26bb494566a4600

diff --git a/io/source/stm/omark.cxx b/io/source/stm/omark.cxx
index 9489be2..4e43b93 100644
--- a/io/source/stm/omark.cxx
+++ b/io/source/stm/omark.cxx
@@ -147,10 +147,11 @@ private:
 };
 
 OMarkableOutputStream::OMarkableOutputStream( )
+: m_bValidStream(false)
+, m_nCurrentPos(0)
+, m_nCurrentMark(0)
 {
 m_pBuffer = new MemRingBuffer;
-m_nCurrentPos = 0;
-m_nCurrentMark = 0;
 }
 
 OMarkableOutputStream::~OMarkableOutputStream()
commit 3debbdf80c66e3d8b4e8c13efc88df96cb686331
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Mar 8 20:19:40 2014 +

coverity#707938 Uninitialized scalar field

Change-Id: Ic76e70a33ed33a94e06faf0168e9a740c736a19e

diff --git a/io/source/stm/omark.cxx b/io/source/stm/omark.cxx
index 970c7e7..9489be2 100644
--- a/io/source/stm/omark.cxx
+++ b/io/source/stm/omark.cxx
@@ -561,13 +561,13 @@ private:
 };
 
 OMarkableInputStream::OMarkableInputStream()
+: m_bValidStream(false)
+, m_nCurrentPos(0)
+, m_nCurrentMark(0)
 {
-m_nCurrentPos = 0;
-m_nCurrentMark = 0;
 m_pBuffer = new MemRingBuffer;
 }
 
-
 OMarkableInputStream::~OMarkableInputStream()
 {
 if( m_pBuffer ) {
commit ec689e4561ea300ed1e381eae016b05211601763
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Mar 8 20:18:18 2014 +

coverity#707935 Uninitialized scalar field

Change-Id: I7c957419b72cc97dbec819c51acb521bcd716624

diff --git a/idlc/source/astdeclaration.cxx 

[Libreoffice-commits] core.git: 3 commits - include/ucbhelper ucbhelper/source ucb/source

2014-03-08 Thread Norbert Thiebaud
 include/ucbhelper/activedatastreamer.hxx   |   33 +
 include/ucbhelper/commandenvironment.hxx   |   46 +--
 ucb/source/ucp/ftp/ftpintreq.cxx   |  145 ++---
 ucb/source/ucp/ftp/ftpintreq.hxx   |  100 ++---
 ucbhelper/source/client/activedatastreamer.cxx |   52 
 ucbhelper/source/client/commandenvironment.cxx |   70 +---
 6 files changed, 61 insertions(+), 385 deletions(-)

New commits:
commit d364e6eb08dfdc867515d5bf596208cc67b004ad
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sat Mar 8 15:27:04 2014 -0600

de-macroize ucb ftpcontent

Change-Id: I33bc2982ba9c4490b4a649dd95225328d2877490

diff --git a/ucb/source/ucp/ftp/ftpintreq.cxx b/ucb/source/ucp/ftp/ftpintreq.cxx
index e968e9c..f2e6beb 100644
--- a/ucb/source/ucp/ftp/ftpintreq.cxx
+++ b/ucb/source/ucp/ftp/ftpintreq.cxx
@@ -36,47 +36,9 @@ XInteractionApproveImpl::XInteractionApproveImpl()
 {
 }
 
-
-void SAL_CALL
-XInteractionApproveImpl::acquire( void )
-throw()
-{
-OWeakObject::acquire();
-}
-
-
-void SAL_CALL
-XInteractionApproveImpl::release( void )
-throw()
-{
-OWeakObject::release();
-}
-
-
-
-Any SAL_CALL
-XInteractionApproveImpl::queryInterface( const Type rType )
-throw( RuntimeException, std::exception )
-{
-Any aRet = cppu::queryInterface(
-rType,
-(static_cast lang::XTypeProvider* (this)),
-(static_cast XInteractionApprove* (this)) );
-return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType );
-}
-
-
-
-//  XTypeProvider
-
-
-XTYPEPROVIDER_IMPL_2( XInteractionApproveImpl,
-  XTypeProvider,
-  XInteractionApprove )
-
-
 void SAL_CALL XInteractionApproveImpl::select()
-throw (RuntimeException, std::exception)
+throw (RuntimeException,
+   std::exception)
 {
 m_bSelected = true;
 }
@@ -95,107 +57,28 @@ XInteractionDisapproveImpl::XInteractionDisapproveImpl()
 {
 }
 
-
-void SAL_CALL
-XInteractionDisapproveImpl::acquire( void )
-throw()
-{
-OWeakObject::acquire();
-}
-
-
-void SAL_CALL
-XInteractionDisapproveImpl::release( void )
-throw()
-{
-OWeakObject::release();
-}
-
-
-
-Any SAL_CALL
-XInteractionDisapproveImpl::queryInterface( const Type rType )
-throw( RuntimeException, std::exception )
-{
-Any aRet = cppu::queryInterface(
-rType,
-(static_cast lang::XTypeProvider* (this)),
-(static_cast XInteractionDisapprove* (this)) );
-return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType );
-}
-
-
-
-//  XTypeProvider
-
-
-XTYPEPROVIDER_IMPL_2( XInteractionDisapproveImpl,
-  XTypeProvider,
-  XInteractionDisapprove )
-
-
 void SAL_CALL XInteractionDisapproveImpl::select()
-throw (RuntimeException, std::exception)
-
+throw (RuntimeException,
+   std::exception)
 {
 m_bSelected = true;
 }
 
-
 // XInteractionRequestImpl
 
 XInteractionRequestImpl::XInteractionRequestImpl(const OUString aName)
-: p1( new XInteractionApproveImpl ),
-  p2( new XInteractionDisapproveImpl ),
-  m_aName(aName),
-  m_aSeq( 2 )
+: p1( new XInteractionApproveImpl )
+, p2( new XInteractionDisapproveImpl )
+, m_aName(aName)
+, m_aSeq( 2 )
 {
 m_aSeq[0] = ReferenceXInteractionContinuation(p1);
 m_aSeq[1] = ReferenceXInteractionContinuation(p2);
 }
 
-
-void SAL_CALL
-XInteractionRequestImpl::acquire( void )
-throw()
-{
-OWeakObject::acquire();
-}
-
-
-
-void SAL_CALL
-XInteractionRequestImpl::release( void )
-throw()
-{
-OWeakObject::release();
-}
-
-
-
-Any SAL_CALL
-XInteractionRequestImpl::queryInterface( const Type rType )
-throw( RuntimeException, std::exception )
-{
-Any aRet = cppu::queryInterface(
-rType,
-(static_cast lang::XTypeProvider* (this)),
-(static_cast XInteractionRequest* (this)) );
-return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType );
-}
-
-
-
-//  XTypeProvider
-
-
-XTYPEPROVIDER_IMPL_2( XInteractionRequestImpl,
-  XTypeProvider,
-  XInteractionRequest )
-
-
 Any SAL_CALL XInteractionRequestImpl::getRequest(  )
-throw (RuntimeException, std::exception)
+throw (RuntimeException,
+   std::exception)
 {
 Any aAny;
 UnsupportedNameClashException excep;
@@ -204,15 +87,13 @@ Any SAL_CALL XInteractionRequestImpl::getRequest(  )
 return aAny;
 }
 
-
-SequenceReferenceXInteractionContinuation   SAL_CALL
-XInteractionRequestImpl::getContinuations(  )
-throw (RuntimeException, std::exception)
+SequenceReferenceXInteractionContinuation   SAL_CALL 
XInteractionRequestImpl::getContinuations()
+throw (RuntimeException,
+   std::exception)
 {
 return m_aSeq;
 }
 
-
 bool XInteractionRequestImpl::approved() const
 {
 return p1-isSelected();
diff --git a/ucb/source/ucp/ftp/ftpintreq.hxx b/ucb/source/ucp/ftp/ftpintreq.hxx
index 

[Libreoffice-qa] 4.2.1 is a Stable version???

2014-03-08 Thread Pedro
http://www.libreoffice.org/download/libreoffice-fresh/

Since when an x.x.1 version is Stable???

LibreOffice is available in the following stable versions:
4.1.5
4.2.1


You (TDF) don't even follow your own rules. This is all a joke!

I guess you have still haven't understood why LibreOffice credibility isn't
growing and OpenOffice (in spite of being well behind LO in features) is
still the name that people care about... It's because of Quality!!!

As long as Marketing is more important than Quality, this won't change.

My disappointed 2 cents...



--
View this message in context: 
http://nabble.documentfoundation.org/4-2-1-is-a-Stable-version-tp4100538.html
Sent from the QA mailing list archive at Nabble.com.
___
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] 4.2.1 is a Stable version???

2014-03-08 Thread Florian Reisinger

Hi Pedro,

I agree with you. It might be wise to make the stable version much more 
visible :) [LibreOffice release versions are: 4.1.5 4.2.1 ]


Am 08.03.2014 11:00, schrieb Pedro:

http://www.libreoffice.org/download/libreoffice-fresh/

Since when an x.x.1 version is Stable???

LibreOffice is available in the following stable versions:
 4.1.5
 4.2.1


You (TDF) don't even follow your own rules. This is all a joke!

I guess you have still haven't understood why LibreOffice credibility isn't
growing and OpenOffice (in spite of being well behind LO in features) is
still the name that people care about... It's because of Quality!!!

As long as Marketing is more important than Quality, this won't change.

My disappointed 2 cents...



--
View this message in context: 
http://nabble.documentfoundation.org/4-2-1-is-a-Stable-version-tp4100538.html
Sent from the QA mailing list archive at Nabble.com.
___
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/


--
Liebe Grüße | Yours,
Florian Reisinger

___
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] 4.2.1 is a Stable version???

2014-03-08 Thread Christian Lohmaier
Hi Pedro,

On Sat, Mar 8, 2014 at 11:00 AM, Pedro pedl...@gmail.com wrote:
 http://www.libreoffice.org/download/libreoffice-fresh/

 Since when an x.x.1 version is Stable???

I'm alsways astonished about your memory

It has always been that way. we have testing (the RCs), stable (the
final versions) and old (the archived releases).

.0 and .1 were always stable.

They are not for conservative users, but that is different from being
stable vs testing.

/me this time won't write a comment that people surely will
misinterpret, yaddayadda..

ciao
Christian
___
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-qa] [MozTrap] Basic check that the help is open on the wiki when it is not installed or in as summary of test case #36?

2014-03-08 Thread Thomas Hackert
Hello Sophie, *,
as I wanted to test a little bit further in MozTrap, I discovered 
the line

quote
Basic check that the help is open on the wiki when it is not 
installed or in
/quote

as a summary for test case #36 
(http://manual-test.libreoffice.org/manage/caseversion/1085/) ... :( Should 
this 
not be something like

quote
Basic check that the help opens on the wiki when it is not installed 
or opens the installed application help
/quote

or something like that ;? Or is it a problem with my system / 
browser?

Discovered with
Browser: Firefox 29.0a2 (2014-03-07)
OS: Debian Testing i386

Sorry for the inconvenience
Thomas.

-- 
He who attacks the fundamentals of the American broadcasting 
industry attacks democracy itself.
-- William S. Paley, chairman of CBS

___
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] 4.2.1 is a Stable version???

2014-03-08 Thread Pedro
Hi Christian, *


Christian Lohmaier-3 wrote
 They are not for conservative users, but that is different from being
 stable vs testing.

You are right about Stable vs Testing. My mistake (but that is just
nit-picking...)

The fact that version 4.2.1 is being pushed to every new user (with an
almost hidden and currently outdated Release Notes as an argument that
people are warned) proves that Quality is an after-thought...

Still disappointed. 



--
View this message in context: 
http://nabble.documentfoundation.org/4-2-1-is-a-Stable-version-tp4100538p4100564.html
Sent from the QA mailing list archive at Nabble.com.
___
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] 4.2.1 is a Stable version???

2014-03-08 Thread M Henri Day
2014-03-08 17:50 GMT+01:00 Pedro pedl...@gmail.com:

 Hi Christian, *


 Christian Lohmaier-3 wrote
  They are not for conservative users, but that is different from being
  stable vs testing.

 You are right about Stable vs Testing. My mistake (but that is just
 nit-picking...)

 The fact that version 4.2.1 is being pushed to every new user (with an
 almost hidden and currently outdated Release Notes as an argument that
 people are warned) proves that Quality is an after-thought...

 Still disappointed.


​But Pedro, surely quality is not a function of terminology - or
numerology, ​
​for that matter ? Whether version 4.2.1 is ready for release to the
general public without a warning has more to do with how well and how
reliably it functions than that the third digit is a «1»

Kudos to the developers, who in my opinion, have done a great job in
providing us users with quality products !...

Henri
___
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-qa] [Math] Icons flickering, when moving mouse pointer between different symbols

2014-03-08 Thread Thomas Hackert
Hello @ll,
sorry for that lame subject, but I do not know the right names for 
the side panel, its symbols, etc. ... :(

As I tested in MozTrap, where I reached test #43 
(http://manual-test.libreoffice.org/manage/caseversion/1090/), I discovered, 
that 
moving the mouse pointer between the symbols on the left (this plus 
sign with shadowed square there, for example ... ;) ), leads to a 
flickering of the other symbols there ... :( Is this intended, or is 
it a bug?

Discovered with
LO: Version: 4.2.2.1 Build-ID: 
3be8cda0bddd8e430d8cda1ebfd581265cca5a0f
OS: Debian Testing i386
Graphics chip: Intel Mobile 945 GSE Express
driver: xserver-xorg-video-intel 2.21.15-2+b1 w/ libdrm-intel1 
2.4.52-1

Can someone confirm this with a different OS/architecture/graphics 
chip (card)/etc?

Thanks for testing in advance
Thomas.

-- 
Apathy Club meeting this Friday. If you want to come, you're not 
invited.

___
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 73232] cell borders are displayed incorrectly

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73232

Kohei Yoshida libreoff...@kohei.us changed:

   What|Removed |Added

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

--- Comment #2 from Kohei Yoshida libreoff...@kohei.us ---


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

-- 
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 52578] FILESAVE: XLSX thin and medium cell border widths increment until thick

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52578

Kohei Yoshida libreoff...@kohei.us changed:

   What|Removed |Added

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

--- Comment #8 from Kohei Yoshida libreoff...@kohei.us ---


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

-- 
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 62802] FILESAVE: Colored tabs don't save in xlsx

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62802

Kohei Yoshida libreoff...@kohei.us changed:

   What|Removed |Added

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

--- Comment #4 from Kohei Yoshida libreoff...@kohei.us ---


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

-- 
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 58307] FILESAVE sheet tab color isn't correctly exported using xls and xlsx

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58307

Kohei Yoshida libreoff...@kohei.us changed:

   What|Removed |Added

 CC||ene...@gmail.com

--- Comment #5 from Kohei Yoshida libreoff...@kohei.us ---
*** Bug 62802 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 71305] FILESAVE: Save as XLSX created a file which cannot be opened

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71305

Kohei Yoshida libreoff...@kohei.us changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Whiteboard||target:4.2.0
 Resolution|--- |WORKSFORME

--- Comment #4 from Kohei Yoshida libreoff...@kohei.us ---
I'll mark this as fixed in 4.2.0 per Comment 2 and 3.

-- 
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 75907] New: Column is showing the wrong width with merged cells

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75907

  Priority: medium
Bug ID: 75907
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Column is showing the wrong width with merged cells
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: sworddrag...@aol.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.2.2.1 rc
 Component: Spreadsheet
   Product: LibreOffice

Steps to reproduce:

1. Create a new document.
2. Set the column width of A to 3cm and B to 5cm.
3. Select A1 and B1 and merge the cells.
4. Look at the column width of B.


It will now show you that the column width is 3cm but it should be 5cm.

-- 
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 74333] Textfield or Picture inside a chart is hidden

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74333

--- Comment #14 from ape idler@mail.ru ---
Created attachment 95345
  -- https://bugs.freedesktop.org/attachment.cgi?id=95345action=edit
LO-4.1.6 - OK (my confusion)

Sorry, that's my confusion. LibreOffice-4.1.6.0.0+ opens the Chart file
correctly. The description of the ODC file is writing up correctly.
I made a mistake, because not looked the version of LibreOffice. It was 4.3.0.0
+.

-- 
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 75904] Different behavior of formulas if copied or cutted

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75904

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 OS|Linux (All) |All
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
reproducible with LO 4.2.1.1 (Win 8.1)

In the bug report seems to be a small typing error:
Step 5: Select A1 and B1 - Select A2 and B2

-- 
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 74333] Textfield or Picture inside a chart is hidden

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74333

--- Comment #15 from ape idler@mail.ru ---
Created attachment 95346
  -- https://bugs.freedesktop.org/attachment.cgi?id=95346action=edit
Eckert.ods exported to the ODC (chart) file Eckert.odc by LO-4.1.6.0.0+

-- 
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 75903] FORMATTING: Copying a user defined date format results in wrong date

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75903

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
not reproducible with LO 4.2.1.1 (Win 8.1)

@Bug Reporter: Does this issue still also persist for you with the latest
release of LO?

-- 
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 75904] Different behavior of formulas if copied or cutted

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75904

--- Comment #2 from sworddrag...@aol.com ---
You are right with the typo and there is even another typo: 'Normally I would
expect that the formula would be =SUMME(A$1:A2) too.' - 'Normally I would
expect that the formula would be =SUMME(A$1:A4) too.'. But it seems I can't
edit my post.

-- 
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 75901] CONFIGURATION: closing (locally installed) Help window crashes LibO

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75901

--- Comment #10 from A (Andy) stgohi-lob...@yahoo.de ---
for me not reproducible with LO 4.2.1.1 (Win 8.1, German)

-- 
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 75683] SLIDESHOW: LibreOffice: no sound on some pps files

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75683

--- Comment #28 from Julien Nabet serval2...@yahoo.fr ---
Alex:
1) I haven't logged the output so can't make the comparison
2) in your attachment 95336, I noticed this:
checking whether to enable the new GStreamer 1.0 avmedia backend... no
checking whether to enable the GStreamer avmedia backend... yes
checking for GSTREAMER_0_10... yes
So it seems gstreamer 1.0 isn't recognized by LO.
But since you haven't disabled gstreamer 0.10, it's not the pb.
You might confirm this by adding these 2 lines on your autogen.input:
--disable-gstreamer-0.10
--enable-gstreamer
then just run ./autogen.sh (without arguments)

3)
The control of the presence of gstreamer is in configure.ac:
  10190 ENABLE_GSTREAMER=
  10191 
  10192 if test $build_gstreamer = yes; then
  10193 
  10194 AC_MSG_CHECKING([whether to enable the new GStreamer 1.0 avmedia
backend])
  10195 if test x$enable_gstreamer != xno; then
  10196 ENABLE_GSTREAMER=TRUE
  10197 AC_MSG_RESULT([yes])
  10198 PKG_CHECK_MODULES( GSTREAMER, gstreamer-1.0
gstreamer-plugins-base-1.0 gstreamer-video-1.0 )
  10199 GSTREAMER_CFLAGS=$(printf '%s' $GSTREAMER_CFLAGS | sed -e
s/-I/${ISYSTEM?}/g)
  10200 else
  10201 AC_MSG_RESULT([no])
  10202 fi
  10203 fi
  10204 AC_SUBST(GSTREAMER_CFLAGS)
  10205 AC_SUBST(GSTREAMER_LIBS)
  10206 AC_SUBST(ENABLE_GSTREAMER)


Now to have more traces, included debug ones. I would add these lines in your
autogen.input:
--enable-werror
--enable-debug
--enable-dbgutil

Again, after having added any lines in your autogen.input, just run
./autogen.sh (without arguments)

Then make again to build with traces.

For information, here are the version of gstreamer I got:
root@julienPC:/home/julien/compile-libreoffice/libo# apt-cache show
gstreamer0.10-plugins-base
Package: gstreamer0.10-plugins-base
Source: gst-plugins-base0.10
Version: 0.10.36-1.1

root@julienPC:/home/julien/compile-libreoffice/libo# apt-cache show
gstreamer1.0-plugins-base
Package: gstreamer1.0-plugins-base
Source: gst-plugins-base1.0
Version: 1.2.3-1

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


[Libreoffice-bugs] [Bug 75907] Column is showing the wrong width with merged cells

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75907

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
not reproducible with LO 4.2.1.1 (Win 8.1)

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


[Libreoffice-bugs] [Bug 74333] Textfield or Picture inside a chart is hidden

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74333

--- Comment #16 from ape idler@mail.ru ---
Created attachment 95350
  -- https://bugs.freedesktop.org/attachment.cgi?id=95350action=edit
'chart_text.ods' exported to 'chart_text-42.odc' file by LibO-4.2.2.1

Look at attachment 95345 and chart_text-42.odc (an attachment):

the lines:
- style:style style:name=gr1 style:family=graphic
  style:graphic-properties draw:stroke=none svg:stroke-color=#00
draw:fill=none draw:fill-color=#ff fo:min-height=1.747cm / 
  /style:style
- style:style style:name=P1 style:family=paragraph
  style:text-properties fo:font-family=Arial style:font-style-name=Fett
style:font-family-generic=swiss style:font-pitch=variable
fo:font-size=14pt fo:font-weight=bold style:font-size-asian=24pt
style:font-size-complex=24pt / 
  /style:style
- style:style style:name=T1 style:family=text
  style:text-properties fo:font-family=Arial style:font-style-name=Fett
style:font-family-generic=swiss style:font-pitch=variable
fo:font-size=14pt fo:font-weight=bold style:font-size-asian=24pt
style:font-size-complex=24pt / 
  /style:style
- text:list-style style:name=L1
- text:list-level-style-number text:level=1 style:num-format=A
  style:list-level-properties / 
  style:text-properties fo:color=#00 fo:font-size=100% / 
  /text:list-level-style-number
- text:list-level-style-number text:level=2 style:num-format=A
  style:list-level-properties text:space-before=0.8cm / 
  style:text-properties fo:color=#00 fo:font-size=100% / 
  /text:list-level-style-number
+ text:list-level-style-number text:level=3 style:num-format=A
  style:list-level-properties text:space-before=1.6cm / 
  style:text-properties fo:color=#00 fo:font-size=100% / 
  /text:list-level-style-number
- text:list-level-style-number text:level=4 style:num-format=A
  style:list-level-properties text:space-before=2.4cm / 
  style:text-properties fo:color=#00 fo:font-size=100% / 
  /text:list-level-style-number
- text:list-level-style-number text:level=5 style:num-format=A
  style:list-level-properties text:space-before=3.2cm / 
  style:text-properties fo:color=#00 fo:font-size=100% / 
  /text:list-level-style-number
- text:list-level-style-number text:level=6 style:num-format=A
  style:list-level-properties text:space-before=4cm / 
  style:text-properties fo:color=#00 fo:font-size=100% / 
  /text:list-level-style-number
- text:list-level-style-number text:level=7 style:num-format=A
  style:list-level-properties text:space-before=4.8cm / 
  style:text-properties fo:color=#00 fo:font-size=100% / 
  /text:list-level-style-number
- text:list-level-style-number text:level=8 style:num-format=A
  style:list-level-properties text:space-before=5.6cm / 
  style:text-properties fo:color=#00 fo:font-size=100% / 
  /text:list-level-style-number
- text:list-level-style-number text:level=9 style:num-format=A
  style:list-level-properties text:space-before=6.4cm / 
  style:text-properties fo:color=#00 fo:font-size=100% / 
  /text:list-level-style-number
- text:list-level-style-number text:level=10 style:num-format=A
  style:list-level-properties text:space-before=7.2cm / 
  style:text-properties fo:color=#00 fo:font-size=100% / 
  /text:list-level-style-number
  /text:list-style
  /office:automatic-styles

between:
- style:style style:name=ch8 style:family=chart
  style:graphic-properties svg:stroke-color=#b3b3b3
draw:fill-color=#cc / 
  /style:style

and:
- office:body
- office:chart
- chart:chart svg:width=16cm svg:height=9cm xlink:href=..
xlink:type=simple

have been omitted in the description (content.xml).

-- 
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 75838] FORMATTING: Red underline by spell checker is broken if you change the (cell) language

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75838

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from A (Andy) stgohi-lob...@yahoo.de ---
reproducible with LO 4.2.1.1 (Win 8.1)

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


[Libreoffice-bugs] [Bug 75836] UI: Automatic scroll using middle mouse not working

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75836

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
for me not reproducible with LO 4.2.1.1 (Win 8.1)

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


[Libreoffice-bugs] [Bug 75758] FORMULAEDITOR: Vectors using letters as l, b etc. do not fit to frame of formula

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75758

u.fu...@yahoo.de changed:

   What|Removed |Added

Version|4.2.1.1 release |4.2.2.1 rc

--- Comment #3 from u.fu...@yahoo.de ---
(In reply to comment #2)
 (In reply to comment #1)
  Cannot reproduce:
  Ubuntu 13.10
  LibreOffice 4.2.2.1 rc
  
  Marking as WFM - if you can reproduce with 4.2.2.1 (which is a pre-release
  and definitely not recommended for general use) mark as UNCONFIRMED and I'll
  get a second opinion. To confirm it's working I just zoomed in to 200%, at
  100% it does look a bit scrunched (but not cut off like yours), at 200%
  clearly everything is visible
  
  Thanks!
 
 
 Arrow is (half) missing also if you save document as pdf. Workaround is for
 me as follows: instead of M cdot vec x = vec l I write M^{} vec x = vec l.
 So the height of the frame is calculated correctly.

Update: I have tested it with LO 4.2.2.1 rc. Same problem. Height of formula is
not calculated correctly, arrow on vector is horizontally cut!

-- 
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 75835] Document recovery depends on spelling of username

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75835

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||jbf.fa...@sud-ouest.org

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


[Libreoffice-bugs] [Bug 75835] Document recovery depends on spelling of username

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75835

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Set back to UNCONFIRMED because this bug report has not been confirmed
independently.

Thank you for your understanding.
Best regards. JBF

-- 
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 75801] EDITING: Calc: wrong visible text when inserting document hyperlink into occupied cell.

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75801

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
for me not reproducible with LO 4.2.1.1 (Win 8.1)

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


[Libreoffice-bugs] [Bug 75758] FORMULAEDITOR: Vectors using letters as l, b etc. do not fit to frame of formula

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75758

--- Comment #4 from u.fu...@yahoo.de ---
Created attachment 95351
  -- https://bugs.freedesktop.org/attachment.cgi?id=95351action=edit
New screenshot

Formula plus created pdf-document.

-- 
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 75815] EDITING: References of links to external files are changed, inserting or deleting rows above them.

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75815

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

 CC||jbf.fa...@sud-ouest.org
Version|unspecified |4.2.0.4 release

--- Comment #3 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Set the missing version number.

Best regards. JBF

-- 
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 75698] UI: the hide table boundaries in Writer command does not work anymore

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75698

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
reproducible with LO 4.2.1.1 (Win 8.1)

Note: To reproduce this bug you have to assure that BORDER in the OPTION
section in the INSERT TABLE dialog box is unchecked.

-- 
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 62990] Reading MS Excel XML ss:Index attribute ignored in ss:Row tag

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62990

Urmas davian...@gmail.com changed:

   What|Removed |Added

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

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

-- 
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 75684] EDITING: slow refresh of the table during editing

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75684

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
not reproducible with LO 4.2.1.1 (Win 8.1)

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


[Libreoffice-bugs] [Bug 75684] EDITING: slow refresh of the table during editing

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75684

--- Comment #2 from A (Andy) stgohi-lob...@yahoo.de ---
*** Bug 75679 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 75679] EDITING: slowdown while table contenent

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75679

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

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

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---


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

-- 
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 32664] Keyboard volume keys don't work when LibreOffice is in focus

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=32664

Wormbo wormdotnos...@online.de changed:

   What|Removed |Added

 CC||wormdotnos...@online.de

--- Comment #39 from Wormbo wormdotnos...@online.de ---
For me (using LibreOffice 4.2.1.1 on Windows 7 x64 SP1 with Logitech MX5500
keyboard and SetPoint 6.61.15) it's actually the opposite way:
Volume up/down/mute keys work fine with LibreOffice having focus, while
Play/Pause, Previous Track and Next Track don't.

I can see why those keys could be useful during a presentation, but they
clearly serve no purpose while working with e.g. a spreadsheet or a text
document.

-- 
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 75650] Formulas with boolean result change cell format while other formulas keep it

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75650

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from A (Andy) stgohi-lob...@yahoo.de ---
reproducible with LO 4.2.1.1 (Win 8.1)

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


[Libreoffice-bugs] [Bug 75910] New: Download links broken: Kurdish (latin script) and Kurdish

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75910

  Priority: medium
Bug ID: 75910
CC: webs...@global.libreoffice.org
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Download links broken: Kurdish (latin script) and
Kurdish
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: gerry.trep...@googlemail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: WWW
   Product: LibreOffice

The download links on the LibreOffice website are broken for following
languages
(https://www.libreoffice.org/download/libreoffice-fresh/?type=deb-x86_64version=4.2lang=pick):

* Kurdish (latin script) (kmr-Latn). The download does not seem to exist.

* Kurdish (ku): On the new download page, there is no link anymore for
Kurdish. The download does exist, though. Please see:
https://de.libreoffice.org/download/?type=deb-x86_64lang=kuversion=4.2.1

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


[Libreoffice-bugs] [Bug 46883] VIEWING: Template Dialog

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46883

Jorendc jore...@libreoffice.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX
 CC||jore...@libreoffice.org

--- Comment #4 from Jorendc jore...@libreoffice.org ---
marking this bug as RESOLVED WONTFIX due the fact a new template dialog/manager
is introduced.

Kind regards,
Joren

-- 
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 50507] On MacOS X, the new zoom slider always looks like disabled

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50507

Jorendc jore...@libreoffice.org changed:

   What|Removed |Added

   Assignee|jore...@libreoffice.org |libreoffice-b...@lists.free
   ||desktop.org

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


[Libreoffice-bugs] [Bug 52568] VIEWING: Filenames are shown incorrectly at open recent file menu

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52568

Jorendc jore...@libreoffice.org changed:

   What|Removed |Added

 CC||jore...@libreoffice.org

--- Comment #6 from Jorendc jore...@libreoffice.org ---
Can someone please attach a sample file to test with?

Thanks,
Joren

-- 
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 75675] Can't access LibreOffice built-in Help facility

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75675

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||stgohi-lob...@yahoo.de
 Ever confirmed|0   |1

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
Is my understanding right that you tried to open the offline LibreOffice help
installed on your computer, but it opens only the online LibreOffice help?

Have you already tried to install LibreOffice and the LibreOffice help once
again?

-- 
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 75910] Download links broken: Kurdish (latin script) and Kurdish

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75910

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
for me not reproducible

Have you tried it once again a few minutes later?

Can anybody else confirm this issue?

-- 
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 74333] Textfield or Picture inside a chart is hidden

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74333

--- Comment #17 from ape idler@mail.ru ---
Created attachment 95352
  -- https://bugs.freedesktop.org/attachment.cgi?id=95352action=edit
The text block was added in the chart by LibO-4.2.2.1

It seems to me that the reason is how the program (LbO-4.2.x and LibODev-4.3.0)
reads the chart. See the ‘chart_text_42new.odc’ file (an attachment).
 I've completed these steps (using LibreOffice-4.2.2.1): 
 1. Open the ‘chart_text.ods’ file (attachment 93183): the text box is not
displayed. 
 2. Select the chart. 
 3. Create a new text block. 
 4. Save as a new chart - ‘chart_text_42new.odc’. 
 You can see the new text in LibO-4.1.6. But you will not see the new text, if
you open a new chart by LibO-4.2.2 or LibODev-4.3.0.

-- 
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 75910] Download links broken: Kurdish (latin script) and Kurdish

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75910

--- Comment #2 from Gerry gerry.trep...@googlemail.com ---
Hi Andy, thanks for looking into this bug. I just visited the download page
again and the problems are still there:

If you click on Kurdish (latin script) (kmr-Latn) you get to a download page
where there is no Kurdish download. It does not work.

Furthermore, there is no download link at all for Kurdish Kurdi (ku). This is
missing, but you can actually download this local from the link in the original
bug description.

Can you confirm these two issues?

-- 
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 74746] FILEOPEN: different content right/left in footer is not opened correctly

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74746

--- Comment #1 from Marian Ciobanu ci...@inbox.com ---
Got the same issue (unsurprisingly)
Using LibreOffice 4.1.4.2 on openSUSE 13.1

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


[Libreoffice-bugs] [Bug 75688] Only Default Style in the Headers list after creating a new style

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75688

--- Comment #6 from regi...@nt1.pw ---
Created attachment 95353
  -- https://bugs.freedesktop.org/attachment.cgi?id=95353action=edit
ctrl+N: Creating a new document.

-- 
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 75688] Only Default Style in the Headers list after creating a new style

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75688

--- Comment #7 from regi...@nt1.pw ---
Created attachment 95354
  -- https://bugs.freedesktop.org/attachment.cgi?id=95354action=edit
pressing F11

Not sure what screenshot was asked for. Tried to upload a series of
screenshots. Turned out I can only upload one attachment at a time. More
screenshots follow. I hope it will make the picture complete.

-- 
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 74697] CONFIGURATION: Android Impress Remote Connection failed via bluetooth

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74697

Sylvain Deverre deverre.s...@gmail.com changed:

   What|Removed |Added

   Hardware|Other   |All

--- Comment #2 from Sylvain Deverre deverre.s...@gmail.com ---
Same issue here (I'm using archlinux too with bluez5).

After investigating, I noticed that LibreOffice Impress uses the old Bluez4
D-BUS API, instead of the new Bluez5 D-BUS API (cf
http://cgit.freedesktop.org/libreoffice/core/tree/sd/source/ui/remotecontrol/Server.cxx).

One solution to fix the problem is to downgrade to bluez4 (even if it's an UGLY
solution and may break a lot of things, since bluez5 replaces bluez4 and is
not compatible with it.

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


[Libreoffice-bugs] [Bug 75688] Only Default Style in the Headers list after creating a new style

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75688

--- Comment #8 from regi...@nt1.pw ---
Created attachment 95355
  -- https://bugs.freedesktop.org/attachment.cgi?id=95355action=edit
Creating a new testStyle.

Screenshot is taken just before pressing OK.

-- 
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 75688] Only Default Style in the Headers list after creating a new style

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75688

--- Comment #9 from regi...@nt1.pw ---
Created attachment 95356
  -- https://bugs.freedesktop.org/attachment.cgi?id=95356action=edit
Newly created testStyle is there

Newly created testStyle is there.  screenshot was taken immediately after
confirming the creation of testStyle in the Create Style window. The document
picked it up automatically. I didn't had to double-click the name in the list
to apply the style to the current page.  Which doen't agree with step 4 of
https://help.libreoffice.org/Writer/Creating_a_Page_Style_Based_on_the_Current_Page.

-- 
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 75688] Only Default Style in the Headers list after creating a new style

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75688

--- Comment #10 from regi...@nt1.pw ---
Created attachment 95357
  -- https://bugs.freedesktop.org/attachment.cgi?id=95357action=edit
No testStyle header is available

For completeness, a screenshot to show that testStyle is supposedly, or truly,
applied to the page. Yet there is no testStyle for the header.

-- 
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 74333] DATALOSS: Textfield or Picture inside a chart is hidden

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74333

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

   Hardware|Other   |All
   Severity|normal  |critical
Summary|Textfield or Picture inside |DATALOSS: Textfield or
   |a chart is hidden   |Picture inside a chart is
   ||hidden

--- Comment #18 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Added DATALOSS in the summary, because even if the hidden data are still there,
the user can't know that unless she has the mean to open the file with a
previous version like 4.1.x. Manny Linux users with the version provided by
their distribution are not able to install another version. So for them it is a
dataloss.
Set severity accordingly.

Best regards. JBF

-- 
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 75654] LO cannot open files LO wrote, FILEOPEN, FORMCONTROLS

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75654

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

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

-- 
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 75698] UI: the hide table boundaries in Writer command does not work anymore

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75698

--- Comment #2 from Andy silva...@katamail.com ---
Yes, of course this is not a problem if you want to have table fully with
borders; 
however, tables without borders are often used as a tool to organize the
placement of some data on the page but without an explicit table with cells to
be shown; 
even more common is the case when you create a table that should have SOME, but
not all, borders visible (e.g. a table outlined only through vertical borders).
In this latter case you may prefer to see all boundaries while editing the
table, but then you want to hide boundaries to check the final look of the
table with borders only where you need them.
Finally, if you want the table to have thin grey borders for some cells, it
impossible to distinguish them from the boundaries, thus the correct working of
hide boundaries function is then essential.

-- 
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 75565] EDITING: LO crash when copypaste a column from Calc to Writer as formated text (rtf)

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75565

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

   Hardware|Other   |All
   Severity|normal  |critical
   Priority|medium  |highest
 CC||jbf.fa...@sud-ouest.org

--- Comment #3 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
The crash comes from a memory leak. Set the severity to CRITICAL according to
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Severity

Best regards. JBF

-- 
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 75565] CRASH: LO crash when copypaste a column from Calc to Writer as formated text (rtf)

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75565

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

Summary|EDITING: LO crash when  |CRASH: LO crash when
   |copypaste a column from|copypaste a column from
   |Calc to Writer as formated  |Calc to Writer as formated
   |text (rtf)  |text (rtf)

-- 
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 75873] EDITING: freezes screen and crashes system

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75873

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

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

-- 
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 75435] Default tabulator position always set back to 12.70 millimeters

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75435

--- Comment #5 from Zoltán Hegedüs x...@hdsnet.hu ---
In my previous comment, I exchanged 7.5 mm and 8 mm, sorry.

-- 
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 75873] EDITING: freezes screen and crashes system

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75873

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbf.fa...@sud-ouest.org
 Ever confirmed|0   |1

--- Comment #3 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
No freeze for me when opening this file with version 4.2.3.0.0+ or the master.
Please, could you describe step by step a scenario to reproduce the freeze.
Additionally, you defined the platform to PowerPC, is it correct? AFAIK TDF
does not support PowerPC under Linux, only x86 and x86-64.

Set status to NEEDINFO, please set back to UNCONFIRMED once the requested
information have been provided.

Best regards. JBF

-- 
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 75675] Can't access LibreOffice built-in Help facility

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75675

--- Comment #2 from Peter Elliott phelli...@btinternet.com ---
from a forum site I fund that I had to change the the language of the UK
version of the LibreOffice software from English (US) to English (UK).  This
resolves my problem but leaves the question why does the download for English
UK need to be altered from English US - is this the bug that should be chased?

Thanks,

Peter Elliott

Sent from my iPad

 On 8 Mar 2014, at 10:48, bugzilla-dae...@freedesktop.org wrote:
 
 A (Andy) changed bug 75675 
 What  Removed Added
 StatusUNCONFIRMED NEEDINFO
 CCstgohi-lob...@yahoo.de
 Ever confirmed1
 Comment # 1 on bug 75675 from A (Andy)
 Is my understanding right that you tried to open the offline LibreOffice help
 installed on your computer, but it opens only the online LibreOffice help?
 
 Have you already tried to install LibreOffice and the LibreOffice help once
 again?
 You are receiving this mail because:
 You reported the bug.

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


[Libreoffice-bugs] [Bug 74940] Formatting subscripts

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74940

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jbf.fa...@sud-ouest.org
 Ever confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Reproducible with version 4.2.3.0.0+ under Linux / Ubuntu 13.10 x86-64

I experienced this bug before reading this bug report during a real life use of
Impress and I did not see that the size of the subscripts was set to 1% and it
seemed that the formatted text was removed. Very annoying.

That said, once I have changed the bad default values to something else for a
first character formatting, then next formattings remember the modified values,
even if I close and reopen LibreOffice.

Best regards. JBF

-- 
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 75845] When I install the new version, the macros that I created are erased.

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75845

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 75845] When I install the new version, the macros that I created are erased.

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75845

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||jbf.fa...@sud-ouest.org

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Set status to UNCONFIRMED because this bug report has not been independently
confirmed.

Thank you for your understanding
Best regards. JBF

-- 
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 75856] VIEWING: Complex Word document Completely Unusable in LibreOffice

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75856

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

  Attachment #95258|application/x-zip   |application/msword
  mime type||

-- 
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 75838] FORMATTING: Red underline by spell checker is broken if you change the (cell) language

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75838

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 52568] VIEWING: Filenames are shown incorrectly at open recent file menu

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52568

--- Comment #7 from Urmas davian...@gmail.com ---
Created attachment 95358
  -- https://bugs.freedesktop.org/attachment.cgi?id=95358action=edit
sample

-- 
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 52568] VIEWING: Filenames are shown incorrectly at open recent file menu

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52568

Jorendc jore...@libreoffice.org changed:

   What|Removed |Added

  Attachment #95358|application/octet-stream|application/x-7z-compressed
  mime type||

-- 
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 75675] Can't access LibreOffice built-in Help facility

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75675

--- Comment #3 from A (Andy) stgohi-lob...@yahoo.de ---
If you go to TOOLS - OPTIONS - LANGUAGE SETTINGS section - LANGUAGES, then
in the USER INTERFACE field the language has to be exactly the same as the
language help file you had downloaded.  
If you try to open the LibreOffice help and have a different language in the
USER INTERFACE field and in the downloaded help file, then the online help will
be opened, because LibreOffice supposes that you have not the corresponding
help file on your computer.

On the LibreOffice homepage you can download three English versions (Englisch
[US], Englisch [UK] and English [ZA]).  In the USER INTERFACE you then will
have to have selected the same languages.
Of course, if you think of UK and US English there is no big difference and
this seems to be strange that you will need the same in the help file und the
USER INTERFACE field, but for LibreOffice these are two different languages.
I (for instance) have the German LibreOffice version and if I select in the
USER INTERFACE English (UK) then not the downloaded (in my case German) help
file will be opened, but the English (UK) online help.
Therefore, I think this is no bug (if I understand your issue right).

-- 
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 42698] EDITING, FILEOPEN

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42698

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard||target:4.3.0

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

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

fix OOXML validation error, related fdo#42698



The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


[Libreoffice-bugs] [Bug 75772] UI: Outline Numbering dialogue has incorrect name

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75772

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Windows (All)   |All
 CC||jbf.fa...@sud-ouest.org

--- Comment #2 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Reproducible under Linux too.

Best regards. JBF

-- 
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 75786] Pictures in the document when saved after selecting the format do not get saved with the chosen format

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75786

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

 CC||jbf.fa...@sud-ouest.org

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Confirmed with version 4.2.3.0.0+

Not sure if this function is intended to allow to save the picture in another
format. Perhaps the problem is that the save dialog allows to choose the file
format and it shouldn't.

Please do not set your own bug reports to NEW, they must be independently
confirmed.

Thank you for your understanding.
Best regards. JBF

-- 
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 75912] New: Version Incompatibility. Incorrect version.

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75912

  Priority: medium
Bug ID: 75912
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Version Incompatibility. Incorrect version.
  Severity: blocker
Classification: Unclassified
OS: All
  Reporter: ovidiu@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.5.3 release
 Component: Libreoffice
   Product: LibreOffice

Created attachment 95359
  -- https://bugs.freedesktop.org/attachment.cgi?id=95359action=edit
File created by touch

Cannot open files created using touch. (odt files)
It returns this error message: Version Incompatibility. Incorrect version.
and then closes.

-- 
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 75912] Version Incompatibility. Incorrect version.

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75912

Ovidiu-Florin Bogdan ovidiu@gmail.com changed:

   What|Removed |Added

   Hardware|Other   |x86-64 (AMD64)
 OS|All |Linux (All)

-- 
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 75912] Version Incompatibility. Incorrect version.

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75912

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #1 from Urmas davian...@gmail.com ---
An empty compound document, not ODF.

-- 
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 69495] FORMATTING: Toggling off bold/italic does not turn it off, but instead applies no-bold/no-italic. This messes up any style afterwards that has bold/italic in it (until C

2014-03-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69495

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

   What|Removed |Added

 Whiteboard|BSA |BSA prebibisect
Version|4.0.2.2 release |3.5.0 Beta0
   Keywords|regression  |

--- Comment #9 from Björn Michaelsen bjoern.michael...@canonical.com ---
The behaviour described in the description is already present since commit 
4b9740b4ec3987e1d4d2ad6d20b4dcf996a4fa2 with both bold and italic, so at least
all versions of LibreOffice since 3.5 exhibit it.

As per comment 2, this has been this way all the way back until 3.3.4 for bold
at least, which I can confirm at least for the bibisect range = NOT a
regression.

Comment 2 also claims this used to work for italic/underscore. I cant confirm
that: Trying italic/Heading 2, I found the buggy behaviour all the way back to
4b9740b4ec3987e1d4d2ad6d20b4dcf996a4fa2.

If this indeed did break for italic underscore between 3.3.4 and
4b9740b4ec3987e1d4d2ad6d20b4dcf996a4fa2, please file a new bug for that and
mark that one as a regression.

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


  1   2   3   >