[Libreoffice-commits] .: ucb/source

2012-09-16 Thread Libreoffice Gerrit user
 ucb/source/ucp/cmis/cmis_repo_content.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 660e72bda2bc7587c6e0f321c82f80310562e451
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Sep 16 09:20:41 2012 +0200

Fix for inefficient checking for 'm_aRepositories' emptiness

Change-Id: I33785ba3b9fb100b1ffb0d0ac78894593bf52ee9

diff --git a/ucb/source/ucp/cmis/cmis_repo_content.cxx 
b/ucb/source/ucp/cmis/cmis_repo_content.cxx
index 791cf6e..5e384e3 100644
--- a/ucb/source/ucp/cmis/cmis_repo_content.cxx
+++ b/ucb/source/ucp/cmis/cmis_repo_content.cxx
@@ -138,7 +138,7 @@ namespace cmis
 
 void RepoContent::getRepositories( const uno::Reference 
ucb::XCommandEnvironment   xEnv )
 {
-if ( m_aRepositories.size( ) == 0 )
+if ( m_aRepositories.empty() )
 {
 // Get the auth credentials
 AuthProvider authProvider( xEnv, 
m_xIdentifier-getContentIdentifier( ), m_aURL.getBindingUrl( ) );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sw/source

2012-09-16 Thread Libreoffice Gerrit user
 sw/source/ui/vba/vbaselection.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 823d44d390ae57e7e13a7edfa57060af9c3c561e
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Sep 16 09:28:07 2012 +0200

Fix consecutive return, goto... statements are unnecessary

Change-Id: Ia0c399470b933824ae6fefbb486cf742f72312fd

diff --git a/sw/source/ui/vba/vbaselection.cxx 
b/sw/source/ui/vba/vbaselection.cxx
index 491a8a6..6913dd9 100644
--- a/sw/source/ui/vba/vbaselection.cxx
+++ b/sw/source/ui/vba/vbaselection.cxx
@@ -353,7 +353,6 @@ SwVbaSelection::Move( const uno::Any _unit, const 
uno::Any _count, const uno::
 default:
 {
 throw uno::RuntimeException( rtl::OUString( 
RTL_CONSTASCII_USTRINGPARAM(Not implemented) ), uno::Reference 
uno::XInterface () );
-break;
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


cppcheck duplicateExpression in filter/source/graphicfilter/icgm/actimpr.cxx

2012-09-16 Thread julien2412
Hello,

Cppcheck reported this:
[filter/source/graphicfilter/icgm/actimpr.cxx:340] -
[filter/source/graphicfilter/icgm/actimpr.cxx:338]: (style) Found duplicate
branches for if and else

Here are the lines:
338 if ( mpCGM-pElement-nAspectSourceFlags  ASF_LINECOLOR )
339 aHatch.Color = nFillColor;
340 else
341 aHatch.Color = nFillColor;

Can I just remove the if else and keep aHatch.Color = nFillColor; since
it's like that from the first commit of this file in 2009?

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/cppcheck-duplicateExpression-in-filter-source-graphicfilter-icgm-actimpr-cxx-tp4007770.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: testtools/source

2012-09-16 Thread Libreoffice Gerrit user
 testtools/source/performance/ubtest.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5bfa5cb86a9737ad97e068fd9d1ea40397d2ac3f
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Sep 16 10:24:59 2012 +0200

Fix duplicate branches for if and else

Change-Id: Ic602fd4df63e6807f49c256ce7849ae587eeb82d

diff --git a/testtools/source/performance/ubtest.cxx 
b/testtools/source/performance/ubtest.cxx
index a8ca0e0..356fd6d 100644
--- a/testtools/source/performance/ubtest.cxx
+++ b/testtools/source/performance/ubtest.cxx
@@ -1035,7 +1035,7 @@ sal_Int32 TestImpl::run( const Sequence OUString   
rArgs )
 out(  log= );
 if (stream == stderr)
 out( stderr );
-else if (stream == stderr)
+else if (stream == stdout)
 out( stdout loop= );
 else
 out( aLogStr );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] add osl_atomic_* api to allow for inlined atomic increment/d...

2012-09-16 Thread Norbert Thiebaud (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/631

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/31/631/1

add osl_atomic_* api to allow for inlined atomic increment/decrement

atomic increment/decrement is provided by
osl_increment/decrementInterlockedCount()
but that is a exported dll function, so it cannot be inlined.

valgrind analysis of a run, loading a medium sized spreadsheet, shows
that these 2 functions were called 3.5 millions times for a total cost of
55 millions of instructions... a cost of 8 instructions per call,
which is at least a 300% overhead since an atomic inc/dec is 2 instructions
iow we could save about 1% of the total instruction count of that run(4.6B)

We cannot change the existing api, as this would break ABI.
but we can add a new api. and migrate internal user to it.

osl_atomic_decrement/osl_atomic_increment do the same task,
than osl_*IntelockedCount() but do that inlined if possible.

Note that this version only optimize the case GCC with atomic built-in.
but support for other case should not be very hard.

follows-up patches will replace the use of the osl_*InterlockedCount()
in the product with their osl_atomic_* equivalent.

Change-Id: If4dcbf94ea6f62eb6d55d30613fe65878ffb8023
---
M sal/inc/osl/interlck.h
1 file changed, 14 insertions(+), 0 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/631
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If4dcbf94ea6f62eb6d55d30613fe65878ffb8023
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Norbert Thiebaud nthieb...@gmail.com

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


[Libreoffice-commits] .: filter/source

2012-09-16 Thread Libreoffice Gerrit user
 filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 8b950e8213c25212e6656a3e0da3ff6f470dcbfe
Author: Peter Jentsch pj...@guineapics.de
Date:   Mon Apr 30 16:52:31 2012 +0200

fix endless recursion with some characters in spreadsheetml headers/footers

diff --git a/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl 
b/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
index de3d6e9..fe0a01e 100644
--- a/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
+++ b/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
@@ -7560,6 +7560,9 @@
xsl:with-param name=current-pos 
select=string-length($temp)+$current-pos+3/
/xsl:call-template
/xsl:when
+   xsl:when test=starts-with($current-style-data, 
'amp;')
+   xsl:value-of select=$current-pos + 1/
+   /xsl:when
xsl:otherwise
xsl:value-of select=$current-pos/
/xsl:otherwise
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: xmlhelp/source

2012-09-16 Thread Libreoffice Gerrit user
 xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 21fbe158f17c82c882ef91d3387f8adf15b6eb7c
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Sep 16 11:38:17 2012 +0200

Remove useless variable

Change-Id: Id554c4aba878b329351b2c61e0e90d4515debd6a

diff --git a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx 
b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
index 037bf8d..9032ba7 100644
--- a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
+++ b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
@@ -56,7 +56,6 @@
 
 #include algorithm
 #include set
-
 #include qe/Query.hxx
 #include qe/DocGenerator.hxx
 #include resultsetforquery.hxx
@@ -233,8 +232,7 @@ ResultSetForQuery::ResultSetForQuery( const uno::Reference 
lang::XMultiServiceF
 for( int i = 0 ; i  nItemCount ; ++i )
 {
 const HitItem rItem = rQueryResultVector[ i ];
-set rtl::OUString ::iterator it;
-if( (it = aResultSet.find( rItem.m_aURL )) != 
aResultSet.end() )
+if( (aResultSet.find( rItem.m_aURL )) != 
aResultSet.end() )
 {
 HitItem aItemCopy( rItem );
 aItemCopy.m_fScore /= nQueryListSize;   // To get 
average score
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Cppcheck Dangerous iterator usage after erase()-method

2012-09-16 Thread Noel Grandin
On Sat, Sep 15, 2012 at 9:13 PM, Markus Mohrhard
markus.mohrh...@googlemail.com wrote:
 Hey,



 Here are the lines:
 178 void SwBlink::FrmDelete( const SwRootFrm* pRoot )
 179 {
 180 for( SwBlinkList::iterator it = aList.begin(); it !=
 aList.end(); )
 181 {
 182 if( pRoot == (*it).GetRootFrm() )
 183 aList.erase( it );
 184 else
 185 ++it;
 186 }
 187 }

 I must recognize, I don't understand how can it work above all if we go  in
 the if since there's no increment.

 Any idea?

 It can't. Line 183 is supposed to be:

 aList.erase(it++);


No, it should be
   it = aList.erase(it);

Once you have called erase(), the iterator becomes invalid, so it must
be replaced by the iterator returned by erase(), which returns the
next valid position,
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: Branch 'feature/gbuild_ure' - 2 commits - solenv/gbuild testtools/CustomTarget_uno_test.mk

2012-09-16 Thread Libreoffice Gerrit user
 solenv/gbuild/CliAssembly.mk|2 +-
 solenv/gbuild/CppunitTest.mk|2 ++
 solenv/gbuild/platform/WNT_INTEL_MSC.mk |4 +++-
 solenv/gbuild/platform/com_GCC_defs.mk  |4 +++-
 testtools/CustomTarget_uno_test.mk  |4 +++-
 5 files changed, 12 insertions(+), 4 deletions(-)

New commits:
commit f5e41d6ba0fe7ddcb0c37f5f442e0c3f4249b632
Author: David Tardon dtar...@redhat.com
Date:   Sun Sep 16 12:40:58 2012 +0200

fix URE deps

Change-Id: Ifbcd2c7db1985ca8fcc74dbbe74ffb93177d6490

diff --git a/solenv/gbuild/CppunitTest.mk b/solenv/gbuild/CppunitTest.mk
index e1fe68d..c31f928 100644
--- a/solenv/gbuild/CppunitTest.mk
+++ b/solenv/gbuild/CppunitTest.mk
@@ -154,8 +154,10 @@ endef
 define gb_CppunitTest_use_ure
 $(call gb_CppunitTest_use_rdb,$(1),ure/services)
 $(call gb_CppunitTest_get_target,$(1)) : URE := $(true)
+$(call gb_CppunitTest_get_target,$(1)) : $(call 
gb_Library_get_target,$(gb_CPPU_ENV)_uno)
 $(call gb_CppunitTest_get_target,$(1)) : $(call 
gb_Library_get_target,unobootstrapprotector)
 $(call gb_CppunitTest_get_target,$(1)) : $(call 
gb_Library_get_target,unoexceptionprotector)
+$(call gb_CppunitTest_get_target,$(1)) : $(call 
gb_Package_get_target,cppuhelper_unorc)
 
 endef
 
diff --git a/solenv/gbuild/platform/WNT_INTEL_MSC.mk 
b/solenv/gbuild/platform/WNT_INTEL_MSC.mk
index 978fcf4..f06f882 100644
--- a/solenv/gbuild/platform/WNT_INTEL_MSC.mk
+++ b/solenv/gbuild/platform/WNT_INTEL_MSC.mk
@@ -49,6 +49,8 @@ ifneq ($(origin CXX),default)
 gb_CXX := $(CXX)
 endif
 
+gb_CPPU_ENV := msci
+
 gb_COMPILERDEFS := \
-DMSC \
-D_CRT_NON_CONFORMING_SWPRINTFS \
@@ -57,7 +59,7 @@ gb_COMPILERDEFS := \
-D_MT \
-D_DLL \
-DBOOST_MEM_FN_ENABLE_CDECL \
-   -DCPPU_ENV=msci \
+   -DCPPU_ENV=$(gb_CPPU_ENV) \
-DM1500 \
 
 gb_CPUDEFS := -D_X86_=1
diff --git a/solenv/gbuild/platform/com_GCC_defs.mk 
b/solenv/gbuild/platform/com_GCC_defs.mk
index 60ae0c3..dad141d 100644
--- a/solenv/gbuild/platform/com_GCC_defs.mk
+++ b/solenv/gbuild/platform/com_GCC_defs.mk
@@ -52,9 +52,11 @@ endif
 
 gb_CCVER := $(shell $(gb_CC) -dumpversion | $(gb_AWK) -F. -- '{ print 
$$1*1+$$2*100+$$3 }')
 
+gb_CPPU_ENV := gcc3
+
 gb_COMPILERDEFS := \
-D$(COM) \
-   -DCPPU_ENV=gcc3 \
+   -DCPPU_ENV=$(gb_CPPU_ENV) \
-DGXX_INCLUDE_PATH=$(GXX_INCLUDE_PATH) \
 
 gb_CFLAGS_COMMON := \
diff --git a/testtools/CustomTarget_uno_test.mk 
b/testtools/CustomTarget_uno_test.mk
index ac907f5..bed453d 100644
--- a/testtools/CustomTarget_uno_test.mk
+++ b/testtools/CustomTarget_uno_test.mk
@@ -36,7 +36,9 @@ $(call gb_CustomTarget_get_target,testtools/uno_test) : \
$(call gb_Rdb_get_outdir_target,uno_services) \
$(call gb_Rdb_get_outdir_target,ure/services) \
$(call gb_Executable_get_target_for_build,uno) \
-   $(call gb_InternalUnoApi_get_target,bridgetest)
+   $(call gb_InternalUnoApi_get_target,bridgetest) \
+   $(call gb_Library_get_target,$(gb_CPPU_ENV)_uno) \
+   $(call gb_Package_get_target,cppuhelper_unorc)
$(call gb_Helper_abbreviate_dirs,\
$(call gb_Executable_get_target_for_build,uno) \
-ro $(OUTDIR)/xml/uno_services.rdb \
commit a11ad8aae90b4dbc56a0936835817b089f30d31d
Author: David Tardon dtar...@redhat.com
Date:   Sun Sep 16 09:22:50 2012 +0200

convert file path

Change-Id: I1e6a4b3b787ee503feda04fc27a593dbd8e93d0e

diff --git a/solenv/gbuild/CliAssembly.mk b/solenv/gbuild/CliAssembly.mk
index 8ada2c7..d068fa5 100644
--- a/solenv/gbuild/CliAssembly.mk
+++ b/solenv/gbuild/CliAssembly.mk
@@ -58,7 +58,7 @@ $(call gb_Helper_abbreviate_dirs,\
al \
-out:$(1) \
-version:$(CLI_ASSEMBLY_VERSION) \
-   -keyfile:$(CLI_ASSEMBLY_KEYFILE) \
+   -keyfile:$(call gb_Helper_windows_path,$(CLI_ASSEMBLY_KEYFILE)) 
\
-link:$(CLI_ASSEMBLY_CONFIGFILE) \
$(if 
$(CLI_ASSEMBLY_PLATFORM),-platform:$(CLI_ASSEMBLY_PLATFORM)) \
 )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Cppcheck Dangerous iterator usage after erase()-method

2012-09-16 Thread Markus Mohrhard
Hey Noel,


 It can't. Line 183 is supposed to be:

 aList.erase(it++);


 No, it should be
it = aList.erase(it);

 Once you have called erase(), the iterator becomes invalid, so it must
 be replaced by the iterator returned by erase(), which returns the
 next valid position,

In a set my version is totally correct. it++ returns the old iterator
and then increments it, so we increment before we erase the element
and in sets only iterators to the erased element are invalidated.

For lists and sets the code I have shown is a common idiom to delete an element.

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


Re: Cppcheck Dangerous iterator usage after erase()-method

2012-09-16 Thread Julien Nabet

On 16/09/2012 12:26, Noel Grandin wrote:

On Sat, Sep 15, 2012 at 9:13 PM, Markus Mohrhard
markus.mohrh...@googlemail.com  wrote:

Hey,



Here are the lines:
 178 void SwBlink::FrmDelete( const SwRootFrm* pRoot )
 179 {
 180 for( SwBlinkList::iterator it = aList.begin(); it !=
aList.end(); )
 181 {
 182 if( pRoot == (*it).GetRootFrm() )
 183 aList.erase( it );
 184 else
 185 ++it;
 186 }
 187 }

I must recognize, I don't understand how can it work above all if we go  in
the if since there's no increment.

Any idea?

It can't. Line 183 is supposed to be:

aList.erase(it++);


No, it should be
it = aList.erase(it);

Once you have called erase(), the iterator becomes invalid, so it must
be replaced by the iterator returned by erase(), which returns the
next valid position,
Except that SwBlinkList inherits from boost::ptr_set, I don't know how 
iterator works with this class.
Some container returns an iterator when you call erase method, some not. 
Sometimes it depends on if you use C++11
Moreover what kind of things can invalidate iterator still seem hard to 
remember (see 
http://cb.nowan.net/blog/2004/12/30/what-will-invalidate-your-iterators/).

So I let experts decide :)

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


[Libreoffice-commits] .: Branch 'feature/mork' - connectivity/source

2012-09-16 Thread Libreoffice Gerrit user
 connectivity/source/drivers/mork/MConnection.cxx |   44 +
 connectivity/source/drivers/mork/MConnection.hxx |3 
 connectivity/source/drivers/mork/MDatabaseMetaData.hxx   |1 
 connectivity/source/drivers/mork/MDatabaseMetaDataHelper.hxx |1 
 connectivity/source/drivers/mork/MDriver.cxx |3 
 connectivity/source/drivers/mork/MErrorResource.hxx  |   71 ++
 connectivity/source/drivers/mork/MQueryHelper.cxx|   22 
 connectivity/source/drivers/mork/MQueryHelper.hxx|  119 +++
 connectivity/source/drivers/mork/MResultSet.cxx  |  389 +--
 connectivity/source/drivers/mork/MResultSet.hxx  |4 
 connectivity/source/drivers/mork/MStatement.cxx  |   16 
 connectivity/source/inc/resource/conn_shared_res.hrc |2 
 connectivity/source/inc/resource/mork_res.hrc|   63 +
 13 files changed, 660 insertions(+), 78 deletions(-)

New commits:
commit e1dcf3bfb8308c586e764d56697379c0c86073b8
Author: David Ostrovsky da...@ostrovsky.org
Date:   Sun Sep 16 14:10:14 2012 +0200

mork driver: add Sorting

Change-Id: I4442bf72e75912a6fc4eeed0020549c481b60fb8

diff --git a/connectivity/source/drivers/mork/MConnection.cxx 
b/connectivity/source/drivers/mork/MConnection.cxx
index 9a7ae5b..bb16d72 100644
--- a/connectivity/source/drivers/mork/MConnection.cxx
+++ b/connectivity/source/drivers/mork/MConnection.cxx
@@ -20,6 +20,7 @@
 #include connectivity/dbexception.hxx
 #include connectivity/sqlerror.hxx
 
+#include resource/mork_res.hrc
 #include resource/common_res.hrc
 
 #include com/sun/star/sdbc/ColumnValue.hpp
@@ -346,7 +347,50 @@ Reference XTablesSupplier  SAL_CALL 
OConnection::createCatalog()
 }
 // 
-
 
+// 
-
+void OConnection::throwSQLException( const ErrorDescriptor _rError, const 
Reference XInterface  _rxContext )
+{
+if ( _rError.getResId() != 0 )
+{
+OSL_ENSURE( ( _rError.getErrorCondition() == 0 ),
+OConnection::throwSQLException: unsupported error code 
combination! );
 
+::rtl::OUString sParameter( _rError.getParameter() );
+if ( !sParameter.isEmpty() )
+{
+const ::rtl::OUString sError( 
getResources().getResourceStringWithSubstitution(
+_rError.getResId(),
+$1$, sParameter
+ ) );
+::dbtools::throwGenericSQLException( sError, _rxContext );
+OSL_FAIL( OConnection::throwSQLException: unreachable (1)! );
+}
+
+throwGenericSQLException( _rError.getResId(), _rxContext );
+OSL_FAIL( OConnection::throwSQLException: unreachable (2)! );
+}
+
+if ( _rError.getErrorCondition() != 0 )
+{
+SQLError aErrorHelper( getDriver()-getFactory() );
+::rtl::OUString sParameter( _rError.getParameter() );
+if ( !sParameter.isEmpty() )
+aErrorHelper.raiseException( _rError.getErrorCondition(), 
_rxContext, sParameter );
+else
+aErrorHelper.raiseException( _rError.getErrorCondition(), 
_rxContext);
+OSL_FAIL( OConnection::throwSQLException: unreachable (3)! );
+}
+
+throwGenericSQLException( STR_UNSPECIFIED_ERROR, _rxContext );
+}
+
+// 
-
+void OConnection::throwSQLException( const sal_uInt16 _nErrorResourceId, const 
Reference XInterface  _rxContext )
+{
+ErrorDescriptor aError;
+aError.setResId( _nErrorResourceId );
+throwSQLException( aError, _rxContext );
+}
 
 } } // namespace connectivity::mork
 
diff --git a/connectivity/source/drivers/mork/MConnection.hxx 
b/connectivity/source/drivers/mork/MConnection.hxx
index fd478ff..5dd1a78 100644
--- a/connectivity/source/drivers/mork/MConnection.hxx
+++ b/connectivity/source/drivers/mork/MConnection.hxx
@@ -109,6 +109,9 @@ namespace connectivity
 // Added to enable me to use SQLInterpreter which requires an
 // XNameAccess i/f to access tables.
 ::com::sun::star::uno::Reference 
::com::sun::star::sdbcx::XTablesSupplier  SAL_CALL createCatalog();
+
+void throwSQLException( const ErrorDescriptor _rError, const 
::com::sun::star::uno::Reference ::com::sun::star::uno::XInterface  
_rxContext );
+void throwSQLException( const sal_uInt16 _nErrorResourceId, const 
::com::sun::star::uno::Reference ::com::sun::star::uno::XInterface  
_rxContext );
 };
 }
 }
diff --git a/connectivity/source/drivers/mork/MDatabaseMetaData.hxx 
b/connectivity/source/drivers/mork/MDatabaseMetaData.hxx
index e0cbe18..28c84de 100644
--- a/connectivity/source/drivers/mork/MDatabaseMetaData.hxx
+++ b/connectivity/source/drivers/mork/MDatabaseMetaData.hxx
@@ -14,6 +14,7 @@
 #include connectivity/OSubComponent.hxx
 
 

Change in dev-tools[master]: update ccache for MSVC from 2.4 to 3.1.8

2012-09-16 Thread Peter Foley (via Code Review)
Peter Foley has uploaded a new patch set (#3).

Change subject: update ccache for MSVC from 2.4 to 3.1.8
..

update ccache for MSVC from 2.4 to 3.1.8
---
M ccache-msvc/README.txt
M ccache-msvc/bin/ccache.exe
D ccache-msvc/patches/0001-MSVC-Add-MSVC-under-Cygwin-support.patch
A ccache-msvc/patches/0001-make-MSVC-work.patch
D ccache-msvc/patches/0002-MSVC-Fix-detection-of-the-MSVC-compiler.patch
A ccache-msvc/patches/0002-redirect-stdout-for-showIncludes.patch
D 
ccache-msvc/patches/0003-MSVC-Re-route-the-preprocessor-s-stderr-to-stdout-to.patch
A ccache-msvc/patches/0003-cl.exe-does-not-like-unix-style-paths.patch
D 
ccache-msvc/patches/0004-MSVC-Handle-the-error-output-correctly-when-the-comp.patch
9 files changed, 342 insertions(+), 908 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/dev-tools refs/changes/26/626/3
--
To view, visit https://gerrit.libreoffice.org/626
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I934c43d203b17234f835b745d5392622112199ea
Gerrit-PatchSet: 3
Gerrit-Project: dev-tools
Gerrit-Branch: master
Gerrit-Owner: Peter Foley pefol...@verizon.net
Gerrit-Reviewer: David Ostrovsky david.ostrov...@gmx.de
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Peter Foley pefol...@verizon.net

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


[Libreoffice-commits] .: helpcontent2/source

2012-09-16 Thread Libreoffice Gerrit user
 helpcontent2/source/text/sbasic/shared/03020303.xhp |   56 ++--
 helpcontent2/source/text/sbasic/shared/03050200.xhp |   28 +-
 helpcontent2/source/text/sbasic/shared/03090401.xhp |   19 +++---
 helpcontent2/source/text/sbasic/shared/03101110.xhp |   26 +
 helpcontent2/source/text/sbasic/shared/03120402.xhp |   12 ++--
 helpcontent2/source/text/sbasic/shared/03130100.xhp |   12 ++--
 helpcontent2/source/text/sbasic/shared/03130600.xhp |   16 +++--
 helpcontent2/source/text/sbasic/shared/03132100.xhp |9 +--
 8 files changed, 98 insertions(+), 80 deletions(-)

New commits:
commit f4b8249675346948f0dfc5f6a3495a86465fb744
Author: Andras Timar ati...@suse.com
Date:   Sun Sep 16 19:17:05 2012 +0200

indented Basic source code + enabled syntax highlight for wiki

Change-Id: I4f139d3f3cdfc1492c2d7c0cbdf0a0014879c4a9

diff --git a/helpcontent2/source/text/sbasic/shared/03020303.xhp 
b/helpcontent2/source/text/sbasic/shared/03020303.xhp
index 9eab076..5d3b09d 100644
--- a/helpcontent2/source/text/sbasic/shared/03020303.xhp
+++ b/helpcontent2/source/text/sbasic/shared/03020303.xhp
@@ -47,7 +47,9 @@
 paragraph role=paragraph id=par_id3146794 xml-lang=en-US l10n=U 
oldref=2Returns the size of an open file in bytes./paragraph
 /section
 paragraph role=heading id=hd_id3153380 xml-lang=en-US level=2 
l10n=U oldref=3Syntax:/paragraph
-paragraph role=code id=par_id3150359 xml-lang=en-US l10n=U 
oldref=4Lof (FileNumber)/paragraph
+bascode
+paragraph role=bascode id=par_id3150359 xml-lang=en-US l10n=U 
oldref=4Lof (FileNumber)/paragraph
+/bascode
 paragraph role=heading id=hd_id3154141 xml-lang=en-US level=2 
l10n=U oldref=5Return value:/paragraph
 paragraph role=paragraph id=par_id3147230 xml-lang=en-US l10n=U 
oldref=6Long/paragraph
 paragraph role=heading id=hd_id3156281 xml-lang=en-US level=2 
l10n=U oldref=7Parameters:/paragraph
@@ -58,30 +60,32 @@
 embed href=text/sbasic/shared/0003.xhp#err5/
 embed href=text/sbasic/shared/0003.xhp#err52/
 paragraph role=heading id=hd_id3155415 xml-lang=en-US level=2 
l10n=U oldref=10Example:/paragraph
-paragraph role=code id=par_id3151074 xml-lang=en-US l10n=U 
oldref=11Sub ExampleRandomAccess/paragraph
-paragraph role=code id=par_id3145251 xml-lang=en-US l10n=U 
oldref=12Dim iNumber As Integer/paragraph
-paragraph role=code id=par_id3154730 xml-lang=en-US l10n=U 
oldref=13Dim sText As Variant REM must be a Variant/paragraph
-paragraph role=code id=par_id3145646 xml-lang=en-US l10n=U 
oldref=14Dim aFile As String/paragraph
-paragraph role=code id=par_id3153157 xml-lang=en-US l10n=U 
oldref=15aFile = c:\data.txt/paragraph
-paragraph role=code id=par_id3149403 xml-lang=en-US l10n=U 
oldref=17iNumber = Freefile/paragraph
-paragraph role=code id=par_id3149121 xml-lang=en-US l10n=U 
oldref=18Open aFile For Random As #iNumber Len=32/paragraph
-paragraph role=code id=par_id3156276 xml-lang=en-US l10n=U 
oldref=19Seek #iNumber,1 REM Position at start/paragraph
-paragraph role=code id=par_id3148405 xml-lang=en-US l10n=U 
oldref=20Put #iNumber,, This is the first line of text REM Fill with 
text/paragraph
-paragraph role=code id=par_id3154756 xml-lang=en-US l10n=U 
oldref=21Put #iNumber,, This is the second line of text/paragraph
-paragraph role=code id=par_id3145643 xml-lang=en-US l10n=U 
oldref=22Put #iNumber,, This is the third line of text/paragraph
-paragraph role=code id=par_id3156383 xml-lang=en-US l10n=U 
oldref=23Seek #iNumber,2/paragraph
-paragraph role=code id=par_id3155333 xml-lang=en-US l10n=U 
oldref=24Get #iNumber,,sText/paragraph
-paragraph role=code id=par_id3149255 xml-lang=en-US l10n=U 
oldref=25Print sText/paragraph
-paragraph role=code id=par_id3154702 xml-lang=en-US l10n=U 
oldref=26Close #iNumber/paragraph
-paragraph role=code id=par_id3153965 xml-lang=en-US l10n=U 
oldref=28iNumber = Freefile/paragraph
-paragraph role=code id=par_id3163807 xml-lang=en-US l10n=U 
oldref=29Open aFile For Random As #iNumber Len=32/paragraph
-paragraph role=code id=par_id3155607 xml-lang=en-US l10n=U 
oldref=30Get #iNumber,2,sText/paragraph
-paragraph role=code id=par_id3150299 xml-lang=en-US l10n=U 
oldref=31Put #iNumber,,This is a new line of text/paragraph
-paragraph role=code id=par_id3147002 xml-lang=en-US l10n=U 
oldref=32Get #iNumber,1,sText/paragraph
-paragraph role=code id=par_id3149036 xml-lang=en-US l10n=U 
oldref=33Get #iNumber,2,sText/paragraph
-paragraph role=code id=par_id3166425 xml-lang=en-US l10n=U 
oldref=34Put #iNumber,20,This is the text in record 20/paragraph
-paragraph role=code id=par_id3149817 xml-lang=en-US l10n=U 
oldref=35Print Lof(#iNumber)/paragraph
-paragraph role=code id=par_id3146811 xml-lang=en-US l10n=U 
oldref=36Close #iNumber/paragraph
-paragraph role=code id=par_id3154200 xml-lang=en-US l10n=U 
oldref=38end sub/paragraph
+bascode
+paragraph role=bascode localize=false id=par_id3151074 
xml-lang=en-USSub ExampleRandomAccess/paragraph
+paragraph role=bascode localize=false id=par_id3145251 

[Libreoffice-commits] .: Branch 'feature/gbuild_ure' - solenv/gbuild

2012-09-16 Thread Libreoffice Gerrit user
 solenv/gbuild/Library.mk|7 +--
 solenv/gbuild/LinkTarget.mk |   12 
 2 files changed, 13 insertions(+), 6 deletions(-)

New commits:
commit fc4181678c72b891ae6fe909409ba486c26a6f1e
Author: David Tardon dtar...@redhat.com
Date:   Sun Sep 16 19:50:15 2012 +0200

SOVERSION is used by LinkTarget, so set it there

Relying on inheritance of variables by prerequisites may cause all sorts
of weird problems, e.g., an executable being linked with
-Wl,--soname=... just because a library with explicitly set soname
happened to depend on it. I wonder if we should make most of the
target-specific variables private

Change-Id: Id337ace462973e7af12e62414b81739e3e873d96

diff --git a/solenv/gbuild/Library.mk b/solenv/gbuild/Library.mk
index 157be8c..38a9bac 100644
--- a/solenv/gbuild/Library.mk
+++ b/solenv/gbuild/Library.mk
@@ -62,7 +62,6 @@ $$(eval $$(call gb_Output_error,Library $(1) must be 
registered in Repository.mk
 endif
 $(call gb_Library_get_target,$(1)) : AUXTARGETS :=
 $(call gb_Library_get_target,$(1)) : SOVERSION :=
-$(call gb_Library_get_target,$(1)) : SOVERSIONSCRIPT :=
 $(call gb_Library__Library_impl,$(1),$(call 
gb_Library_get_linktargetname,$(1)))
 
 endef
@@ -84,15 +83,11 @@ $(call gb_Deliver_add_deliverable,$(call 
gb_Library_get_target,$(1)),$(call gb_L
 endef
 
 define gb_Library__set_soversion_script
-$(call gb_LinkTarget_get_target,$(call gb_Library_get_linktargetname,$(1))) : \
-   $(3)
+$(call gb_LinkTarget_set_soversion_script,$(call 
gb_Library_get_linktargetname,$(1)),$(2),$(3))
 $(call gb_Library_get_target,$(1)) : SOVERSION := $(2)
-$(call gb_Library_get_target,$(1)) : SOVERSIONSCRIPT := $(3)
 $(call gb_Library_get_target,$(1)) \
 $(call gb_Library_get_clean_target,$(1)) : \
AUXTARGETS += $(call gb_Library_get_target,$(1)).$(2)
-$(call gb_LinkTarget_add_auxtargets,$(call 
gb_Library_get_linktargetname,$(1)),\
-   $(call gb_LinkTarget_get_target,$(call 
gb_Library_get_linktargetname,$(1))).$(2))
 endef
 
 # for libraries that maintain stable ABI: set SOVERSION and version script
diff --git a/solenv/gbuild/LinkTarget.mk b/solenv/gbuild/LinkTarget.mk
index 7599597..4d9dea0 100644
--- a/solenv/gbuild/LinkTarget.mk
+++ b/solenv/gbuild/LinkTarget.mk
@@ -491,6 +491,8 @@ $(call gb_LinkTarget_get_target,$(1)) : PDBFILE :=
 $(call gb_LinkTarget_get_target,$(1)) : EXTRAOBJECTLISTS :=
 $(call gb_LinkTarget_get_target,$(1)) : NATIVERES :=
 $(call gb_LinkTarget_get_target,$(1)) : WARNINGS_NOT_ERRORS :=
+$(call gb_LinkTarget_get_target,$(1)) : SOVERSION :=
+$(call gb_LinkTarget_get_target,$(1)) : SOVERSIONSCRIPT :=
 
 ifeq ($(gb_FULLDEPS),$(true))
 -include $(call gb_LinkTarget_get_dep_target,$(1))
@@ -514,10 +516,20 @@ $(call gb_LinkTarget_get_dep_target,$(1)) : TARGETTYPE :=
 $(call gb_LinkTarget_get_dep_target,$(1)) : LIBRARY_X64 :=
 $(call gb_LinkTarget_get_dep_target,$(1)) : EXTRAOBJECTLISTS :=
 $(call gb_LinkTarget_get_dep_target,$(1)) : WARNINGS_NOT_ERRORS :=
+$(call gb_LinkTarget_get_dep_target,$(1)) : SOVERSION :=
+$(call gb_LinkTarget_get_dep_target,$(1)) : SOVERSIONSCRIPT :=
 endif
 
 endef
 
+define gb_LinkTarget_set_soversion_script
+$(call gb_LinkTarget_get_target,$(1)) : $(3)
+$(call gb_LinkTarget_get_target,$(1)) : SOVERSION := $(2)
+$(call gb_LinkTarget_get_target,$(1)) : SOVERSIONSCRIPT := $(3)
+$(call gb_LinkTarget_add_auxtargets,$(1),$(call 
gb_LinkTarget_get_target,$(1)).$(2))
+
+endef
+
 define gb_LinkTarget_add_defs
 $(call gb_LinkTarget_get_headers_target,$(1)) \
 $(call gb_LinkTarget_get_target,$(1)) : DEFS += $(2)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: helpcontent2/source

2012-09-16 Thread Libreoffice Gerrit user
 helpcontent2/source/text/sbasic/shared/03090401.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1107ddd5c564f1157434abce777a4150753877ac
Author: Andras Timar ati...@suse.com
Date:   Sun Sep 16 20:38:12 2012 +0200

typo fix

Change-Id: Idfd803ea65eb7bf15a41413cd395ccef8f0ed7d4

diff --git a/helpcontent2/source/text/sbasic/shared/03090401.xhp 
b/helpcontent2/source/text/sbasic/shared/03090401.xhp
index b05874f..434cb71 100644
--- a/helpcontent2/source/text/sbasic/shared/03090401.xhp
+++ b/helpcontent2/source/text/sbasic/shared/03090401.xhp
@@ -58,7 +58,7 @@
 bascode
 paragraph role=bascode id=par_id3159254 xml-lang=en-US 
localize=falseSub ExampleCall/paragraph
 paragraph role=bascode id=par_id3161832 xml-lang=en-US 
localize=falseDim sVar As String/paragraph
-paragraph role=bascode id=par_id3147317 xml-lang=en-US 
localize=falsesVar = LibreOffice/paragraph
+paragraph role=bascode id=par_id3147317 xml-lang=en-US 
localize=falsesVar = LibreOffice/paragraph
 paragraph role=bascode id=par_id3145273 xml-lang=en-US 
localize=falseCall f_callFun sVar/paragraph
 paragraph role=bascode id=par_id3147435 xml-lang=en-US 
localize=falseEnd Sub/paragraph
 paragraph role=bascode id=par_id3147436 xml-lang=en-US 
localize=false/paragraph
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-5' - sal/osl

2012-09-16 Thread Libreoffice Gerrit user
 sal/osl/w32/salinit.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3d2a4ea716f0072a539d9810bf0f5d60167c99e1
Author: Fridrich Strba fridrich.st...@bluewin.ch
Date:   Sat Sep 15 16:23:01 2012 +0200

Bin SAL_UNUSED_PARAMETER

Change-Id: Ieee86e5d024c650065e855a9213e2f7421493d17
Signed-off-by: Andras Timar ati...@suse.com

diff --git a/sal/osl/w32/salinit.cxx b/sal/osl/w32/salinit.cxx
index 50fb3ba..4d0c003 100644
--- a/sal/osl/w32/salinit.cxx
+++ b/sal/osl/w32/salinit.cxx
@@ -45,7 +45,7 @@ namespace {
 
 extern C void invalidParameterHandler(
 wchar_t const * expression, wchar_t const * function, wchar_t const * file,
-unsigned int line, SAL_UNUSED_PARAMETER uintptr_t)
+unsigned int line, uintptr_t)
 {
 std::wcerr
  LInvalid parameter in \  (expression ? expression : L???)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


problem with a c++ construct in calc, fdo#54498

2012-09-16 Thread Markus Mohrhard
Hey guys,

I was debugging a calc crash for the last days that seems to be
related to ScRangeList::UpdateReference ([1]). As Kohei found out
removing

// delete all entries that are fully deleted
if( eUpdateRefMode == URM_INSDEL  (nDx  0 || nDy  0) )
{
vectorScRange*::iterator itr =
std::remove_if(maRanges.begin(), maRanges.end(), FindDeletedRange(nDx,
nDy));
for_each(itr, maRanges.end(), ScDeleteObjectByPtrScRange());
maRanges.erase(itr, maRanges.end());
}

from the method prevents this crash. At least according to my
understanding of c++ this piece of code is at least from a c++ POV
correct (from a calc POV it is wrong).

When I failed to find anything obviously wrong with this code I tried
to rewrite it with a simple own loop:

for(size_t i = 0; i  maRanges.size();)
{
if(FindDeletedRange(nDx, nDy)(maRanges[i]))
{
ScRange* pRange = Remove(i);
delete pRange;
}
else
++i;
}

As soon as I did this the crash vanishs and memcheck seems to be
happy. So I concluded that there must be an error in my first version
but somehow we missed the point.

Does anyone have an explanation for this problem?

Regards,
Markus

[1] 
http://opengrok.libreoffice.org/xref/core/sc/source/core/tool/rangelst.cxx#398
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 44446] LibreOffice 3.6 most annoying bugs

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

Bug 6 depends on bug 54621, which changed state.

Bug 54621 Summary: EDITING: CRASH  in .ods documents with lots of (conditional) 
formatting
https://bugs.freedesktop.org/show_bug.cgi?id=54621

   What|Old Value   |New Value

 Resolution||DUPLICATE
 Status|NEW |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 44446] LibreOffice 3.6 most annoying bugs

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

Bug 6 depends on bug 54733, which changed state.

Bug 54733 Summary: EDITING: CRASH when deleting cell content (of sheet with 
conditional formatting?)
https://bugs.freedesktop.org/show_bug.cgi?id=54733

   What|Old Value   |New Value

 Resolution||DUPLICATE
 Status|NEW |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: Branch 'feature/mork' - connectivity/source

2012-09-16 Thread Libreoffice Gerrit user
 connectivity/source/drivers/mork/MQueryHelper.cxx |  154 +-
 connectivity/source/drivers/mork/MQueryHelper.hxx |2 
 2 files changed, 149 insertions(+), 7 deletions(-)

New commits:
commit 4ba4ca8d39485ecbb4cd02a684c17d6731d73ff6
Author: David Ostrovsky da...@ostrovsky.org
Date:   Sun Sep 16 23:41:57 2012 +0200

mork driver: add query

Change-Id: I8f32f04d2c0e0b026bbe960c6bc8895906988419

diff --git a/connectivity/source/drivers/mork/MQueryHelper.cxx 
b/connectivity/source/drivers/mork/MQueryHelper.cxx
index 74fd046..ffc2a5f 100644
--- a/connectivity/source/drivers/mork/MQueryHelper.cxx
+++ b/connectivity/source/drivers/mork/MQueryHelper.cxx
@@ -38,6 +38,9 @@ using namespace ::com::sun::star::sdbc;
 using namespace connectivity;
 
 
+extern
+::std::vector sal_Bool  entryMatchedByExpression(MQueryHelper* _aQuery, 
MQueryExpression* _aExpr, MQueryHelperResultEntry* entry);
+
 MQueryHelperResultEntry::MQueryHelperResultEntry()
 {
 }
@@ -83,7 +86,8 @@ MQueryHelper::MQueryHelper(const OColumnAlias _ca)
 
 MQueryHelper::~MQueryHelper()
 {
-OSL_TRACE(IN MQueryHelper::~MQueryHelper());
+SAL_INFO(connectivity.mork, MQueryHelper::~MQueryHelper());
+
 clear_results();
 OSL_TRACE(OUT MQueryHelper::~MQueryHelper());
 }
@@ -91,7 +95,8 @@ MQueryHelper::~MQueryHelper()
 // -
 void MQueryHelper::setAddressbook(::rtl::OUString ab)
 {
-OSL_TRACE(IN MQueryHelper::setAddressbook());
+SAL_INFO(connectivity.mork, MQueryHelper::setAddressbook());
+
 ::osl::MutexGuard aGuard(m_aMutex);
 
 m_aAddressbook = ab;
@@ -101,6 +106,7 @@ void MQueryHelper::setAddressbook(::rtl::OUString ab)
 // -
 void MQueryHelper::setExpression( MQueryExpression _expr )
 {
+SAL_INFO(connectivity.mork, MQueryHelper::setExpression());
 OSL_TRACE(IN MQueryHelper::setExpression());
 ::osl::MutexGuard aGuard(m_aMutex);
 
@@ -111,7 +117,7 @@ void MQueryHelper::setExpression( MQueryExpression _expr )
 
 void MQueryHelper::append(MQueryHelperResultEntry* resEnt)
 {
-//SAL_INFO(connectivity.mork, MQueryHelper::append() );
+//SAL_INFO(connectivity.mork, MQueryHelper::append());
 
 if ( resEnt != NULL ) {
 m_aResults.push_back( resEnt );
@@ -170,9 +176,9 @@ MQueryHelper::getByIndex(sal_uInt32 nRow)
 
 sal_Int32 MQueryHelper::getResultCount() const
 {
-SAL_INFO(connectivity.mork, MQueryHelper::getResultCount() );
+//SAL_INFO(connectivity.mork, MQueryHelper::getResultCount() );
 sal_Int32 result = static_castsal_Int32(m_aResults.size());
-SAL_INFO(connectivity.mork, result:   result);
+//SAL_INFO(connectivity.mork, result:   result);
 
 return result;
 }
@@ -229,6 +235,7 @@ sal_Int32 MQueryHelper::executeQuery(OConnection* 
xConnection)
 SAL_INFO(connectivity.mork, MQueryHelper::executeQuery() );
 reset();
 
+//dumpExpression(this, m_aExpr);
 MorkTableMap::iterator tableIter;
 MorkTableMap *Tables = xConnection-getMorkParser()-getTables( 0x80 );
 MorkRowMap *Rows = 0;
@@ -260,7 +267,14 @@ sal_Int32 MQueryHelper::executeQuery(OConnection* 
xConnection)
 rtl::OUString valueOUString = 
::rtl::OStringToOUString( valueOString, RTL_TEXTENCODING_UTF8 );
 entry-setValue(key, valueOUString);
 }
-append(entry);
+::std::vector sal_Bool  vector = 
entryMatchedByExpression(this, m_aExpr, entry);
+sal_Bool result = sal_True;
+for (::std::vectorsal_Bool::iterator iter = 
vector.begin(); iter != vector.end(); ++iter) {
+result = result  *iter;
+}
+if (result) {
+append(entry);
+}
 }
 }
 }
@@ -269,4 +283,132 @@ sal_Int32 MQueryHelper::executeQuery(OConnection* 
xConnection)
 return 0;
 }
 
+::std::vector sal_Bool  entryMatchedByExpression(MQueryHelper* _aQuery, 
MQueryExpression* _aExpr, MQueryHelperResultEntry* entry)
+{
+::std::vector sal_Bool  resultVector;
+MQueryExpression::ExprVector::iterator evIter;
+for( evIter = _aExpr-getExpressions().begin();
+ evIter != _aExpr-getExpressions().end();
+ ++evIter )
+{
+if ( (*evIter)-isStringExpr() ) {
+MQueryExpressionString* evStr = 
static_castMQueryExpressionString* (*evIter);
+
+// Set the 'name' property of the boolString.
+// Check if it's an alias first...
+rtl::OString attrName = 
_aQuery-getColumnAlias().getProgrammaticNameOrFallbackToUTF8Alias( 
evStr-getName() );
+//OSL_TRACE(Name = %s ;, attrName.getStr() );
+SAL_INFO(connectivity.mork, Name =   attrName.getStr());
+// Set the 'matchType' property of the boolString. Check for 

[Libreoffice-commits] .: 2 commits - sc/CppunitTest_sc_rangelst_test.mk sc/inc sc/Module_sc.mk sc/qa sc/source

2012-09-16 Thread Libreoffice Gerrit user
 sc/CppunitTest_sc_rangelst_test.mk |  133 +
 sc/Module_sc.mk|1 
 sc/inc/scdll.hxx   |4 -
 sc/qa/unit/rangelst_test.cxx   |   76 +
 sc/source/core/tool/rangelst.cxx   |2 
 5 files changed, 214 insertions(+), 2 deletions(-)

New commits:
commit 21edfcb82484be3e30e8e7f27f4cf68ec1cb8c4b
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Sep 17 02:11:02 2012 +0200

test case for ScRangeList

Change-Id: I371ac1b3236777a73e4f25f93d465041308e34b4

diff --git a/sc/CppunitTest_sc_rangelst_test.mk 
b/sc/CppunitTest_sc_rangelst_test.mk
new file mode 100644
index 000..67762d9
--- /dev/null
+++ b/sc/CppunitTest_sc_rangelst_test.mk
@@ -0,0 +1,133 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+#
+# The contents of this file are subject to the Mozilla Public License Version
+# 1.1 (the License); you may not use this file except in compliance with
+# the License or as specified alternatively below. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an AS IS basis,
+# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+# for the specific language governing rights and limitations under the
+# License.
+#
+# Major Contributor(s):
+# Copyright (C) 2011 Red Hat, Inc., Caolán McNamara caol...@redhat.com
+#  (initial developer)
+#
+# All Rights Reserved.
+#
+# For minor contributions see the git repository.
+#
+# Alternatively, the contents of this file may be used under the terms of
+# either the GNU General Public License Version 3 or later (the GPLv3+), or
+# the GNU Lesser General Public License Version 3 or later (the LGPLv3+),
+# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+# instead of those above.
+
+$(eval $(call gb_CppunitTest_CppunitTest,sc_rangelst_test))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,sc_rangelst_test, \
+sc/qa/unit/rangelst_test \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,sc_rangelst_test, \
+avmedia \
+basegfx \
+comphelper \
+cppu \
+cppuhelper \
+drawinglayer \
+editeng \
+fileacc \
+for \
+forui \
+i18nisolang1 \
+msfilter \
+oox \
+sal \
+salhelper \
+sax \
+sb \
+sc \
+sfx \
+sot \
+svl \
+svt \
+svx \
+svxcore \
+   test \
+tl \
+tk \
+ucbhelper \
+   unotest \
+utl \
+vbahelper \
+vcl \
+xo \
+   $(gb_STDLIBS) \
+))
+
+$(eval $(call gb_CppunitTest_set_include,sc_rangelst_test,\
+-I$(SRCDIR)/sc/source/ui/inc \
+-I$(SRCDIR)/sc/inc \
+$$(INCLUDE) \
+))
+
+$(eval $(call gb_CppunitTest_use_api,sc_rangelst_test,\
+offapi \
+oovbaapi \
+udkapi \
+))
+
+$(eval $(call gb_CppunitTest_use_ure,sc_rangelst_test))
+
+$(eval $(call gb_CppunitTest_use_components,sc_rangelst_test,\
+basic/util/sb \
+chart2/source/controller/chartcontroller \
+chart2/source/chartcore \
+comphelper/util/comphelp \
+configmgr/source/configmgr \
+dbaccess/util/dba \
+embeddedobj/util/embobj \
+eventattacher/source/evtatt \
+fileaccess/source/fileacc \
+filter/source/config/cache/filterconfig1 \
+forms/util/frm \
+framework/util/fwk \
+i18npool/util/i18npool \
+oox/util/oox \
+package/source/xstor/xstor \
+package/util/package2 \
+sax/source/expatwrap/expwrap \
+sax/source/fastparser/fastsax \
+sc/util/sc \
+sc/util/scd \
+sc/util/scfilt \
+sc/util/vbaobj \
+scaddins/source/analysis/analysis \
+scaddins/source/datefunc/date \
+scripting/source/basprov/basprov \
+scripting/util/scriptframe \
+sfx2/util/sfx \
+sot/util/sot \
+svl/source/fsstor/fsstorage \
+svl/util/svl \
+svx/util/svx \
+toolkit/util/tk \
+ucb/source/core/ucb1 \
+ucb/source/ucp/file/ucpfile1 \
+ucb/source/ucp/tdoc/ucptdoc1 \
+unotools/util/utl \
+unoxml/source/rdf/unordf \
+unoxml/source/service/unoxml \
+xmloff/util/xo \
+))
+
+$(eval $(call gb_CppunitTest_use_configuration,sc_rangelst_test))
+
+$(eval $(call gb_CppunitTest_use_filter_configuration,sc_rangelst_test))
+
+$(eval $(call gb_CppunitTest_use_unittest_configuration,sc_rangelst_test))
+
+# vim: set noet sw=4 ts=4:
diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk
index dc63ff7..c5c0449 100644
--- a/sc/Module_sc.mk
+++ b/sc/Module_sc.mk
@@ -44,6 +44,7 @@ endif
 $(eval $(call gb_Module_add_check_targets,sc,\
 CppunitTest_sc_ucalc \
 CppunitTest_sc_filters_test \
+CppunitTest_sc_rangelst_test \
 ))
 
 $(eval $(call gb_Module_add_slowcheck_targets,sc,\
diff --git a/sc/inc/scdll.hxx b/sc/inc/scdll.hxx
index bd86e49..983f91d 100644
--- a/sc/inc/scdll.hxx
+++ b/sc/inc/scdll.hxx
@@ -36,6 +36,8 @@ class SfxFilter;
 #include sfx2/module.hxx
 

[Libreoffice-commits] .: sc/qa

2012-09-16 Thread Libreoffice Gerrit user
 sc/qa/unit/rangelst_test.cxx |   39 +++
 1 file changed, 39 insertions(+)

New commits:
commit c4a6a8d239d2e3da2e4a772efe095c292ca69827
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Sep 17 02:43:18 2012 +0200

add more test for ScRangeList::DeleteArea

Change-Id: I2484603b74cbdb1f92c08eac6c02d9a091e06eb9

diff --git a/sc/qa/unit/rangelst_test.cxx b/sc/qa/unit/rangelst_test.cxx
index a65a0eb..2901965 100644
--- a/sc/qa/unit/rangelst_test.cxx
+++ b/sc/qa/unit/rangelst_test.cxx
@@ -21,9 +21,13 @@ public:
 virtual void tearDown();
 
 void testDeleteArea_4Ranges();
+void testDeleteArea_2Ranges();
+void testDeleteArea_0Ranges();
 
 CPPUNIT_TEST_SUITE(Test);
 CPPUNIT_TEST(testDeleteArea_4Ranges);
+CPPUNIT_TEST(testDeleteArea_2Ranges);
+CPPUNIT_TEST(testDeleteArea_0Ranges);
 CPPUNIT_TEST_SUITE_END();
 
 
@@ -70,6 +74,41 @@ void Test::testDeleteArea_4Ranges()
 }
 }
 
+void Test::testDeleteArea_2Ranges()
+{
+ScRangeList aList(ScRange(0,0,0,5,5,5));
+ScRangeList aList2(aList);
+
+aList.DeleteArea(4,4,0,6,7,0);
+aList2.DeleteArea(4,4,0,6,7,0);
+CPPUNIT_ASSERT_EQUAL(aList.size(), static_castsize_t(2));
+CPPUNIT_ASSERT_EQUAL(aList2.size(), static_castsize_t(2));
+
+for(SCCOL nCol = 0; nCol = 5; ++nCol)
+{
+for(SCROW nRow = 0; nRow = 5; ++nRow)
+{
+if(nCol=4  nRow = 4)
+CPPUNIT_ASSERT(!aList.Intersects(ScRange(nCol, nRow, 0)));
+else
+CPPUNIT_ASSERT(aList.Intersects(ScRange(nCol, nRow, 0)));
+}
+}
+}
+
+void Test::testDeleteArea_0Ranges()
+{
+ScRangeList aList(ScRange(1,1,0,3,3,0));
+aList.DeleteArea(1,1,0,3,3,0);
+
+CPPUNIT_ASSERT(aList.empty());
+
+ScRangeList aList2(ScRange(1,1,0,3,3,0));
+aList2.DeleteArea(0,0,0,4,4,0);
+
+CPPUNIT_ASSERT(aList.empty());
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] don't add invalid UTF-8 to _NET_WM_NAME and _NET_WM_ICON_NAM...

2012-09-16 Thread Christian Lohmaier (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/633

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/33/633/1

don't add invalid UTF-8 to _NET_WM_NAME and _NET_WM_ICON_NAME

time to get rid of workarounds for broken window managers that were
introduced more than 10 years ago.

Change-Id: I43b4c7aeab1b86b3d4a290a1d1d64c6fcb9a57ef
---
M vcl/unx/generic/app/wmadaptor.cxx
1 file changed, 2 insertions(+), 6 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/633
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I43b4c7aeab1b86b3d4a290a1d1d64c6fcb9a57ef
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christian Lohmaier lohmaier+libreoff...@googlemail.com

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


[Libreoffice-qa] bugzilla password reset

2012-09-16 Thread Mas
anyone else having a problem with bugzilla resetting their password every
24 hours ?



-- 
--
Masekela Walls
Web Security Analyst | Senior Server Administrator
Powserve.com / Gemini ISP Networks
___
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 37884] document conversion from docx into writer (indent and outdent of paragraph is confused)

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37884

--- Comment #11 from sasha.libreoff...@gmail.com 2012-09-16 06:00:01 UTC ---
in 3.5.5 still reproducible
in 3.6.1 already fixed

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 37884] document conversion from docx into writer (indent and outdent of paragraph is confused)

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37884

--- Comment #12 from sasha.libreoff...@gmail.com 2012-09-16 06:01:07 UTC ---
Created attachment 67224
  -- https://bugs.freedesktop.org/attachment.cgi?id=67224
docx document saved using msWord 2007

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 37884] document conversion from docx into writer (indent and outdent of paragraph is confused)

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37884

--- Comment #13 from sasha.libreoff...@gmail.com 2012-09-16 06:01:57 UTC ---
Created attachment 67225
  -- https://bugs.freedesktop.org/attachment.cgi?id=67225
previouse document, saved as PDF using msWord

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54394] : Quit without saving

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54394

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE
 CC||jbf.fa...@sud-ouest.org

--- Comment #2 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org 2012-09-16 
06:10:33 UTC ---
Ctrl+Q always send the warning message box if there is an open modified
document.

Duplicate of bug 51944.

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 44807] LO crashes on MAC if is checked Enable acces for assistance devices

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44807

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

   What|Removed |Added

 Status|RESOLVED|VERIFIED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54400] FORMATTING: conditional formatting

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54400

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 2012-09-16 
06:21:51 UTC ---
Your file (https://bugs.freedesktop.org/attachment.cgi?id=66501) crashes LO
3.6.2.1 and LO 3.6.3.0+ :-(

Please explain how you did your conditional formatting.

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 35779] Automatic color does not work for the notes view

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35779

--- Comment #7 from sasha.libreoff...@gmail.com 2012-09-16 06:35:00 UTC ---
Created attachment 67226
  -- https://bugs.freedesktop.org/attachment.cgi?id=67226
test case of notes problem

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 35779] Automatic color does not work for the notes view

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35779

sasha.libreoff...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|INVALID |
 Ever Confirmed|1   |0

--- Comment #8 from sasha.libreoff...@gmail.com 2012-09-16 06:36:34 UTC ---
reproduced in 3.3.4 and 3.6.1 on Fedora 64 bit
Try to compare tabs Normal and Notes in attachment

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 35779] Automatic color does not work for the notes view

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35779

sasha.libreoff...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53177] CONFIGURATION Use 'English (USA)' locale for numbers messes with dates and insert link to external data

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53177

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

   What|Removed |Added

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

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-09-16 06:40:19 UTC ---
Not a valid bug report, no Idea how to reproduce that.

I tried:
0. Launch Server Installation of  LibreOffice 3.6.0.0.beta2  German UI/Locale
  [Build-ID: f010139] on German WIN7 Home Premium (64bit) 
1. 'Tools - options - Language': All settings to English - USA
2. 'Tools - options - LoadSave - HRML Compatibility' Check Import = Use
   English (USA)
3. New Spreadsheet
4. Menu 'Insert - Link To External Data'
   'Tools - options - Language'
   Enter
5. In dialog Import Options check Language=Automatic, Detect Special 
   Numbers  ok
HTML contents listing appears after few moments
6. Select HTML_tables ok
   HTML page table conetents will appear in spreadsheet after few moments

As expected 1/2 is recognized as date 01/02/2012 . All the rest as expected,
please see my Test_Document.ods (Please open without updating linked
contents). Right from Test area in the sheet I checked Number format of
imported cells.

@reporter:
Thank you for your report – unfortunately important information is missing.
May be hints on http://wiki.documentfoundation.org/BugReport will help you to
find out what information will be useful to reproduce your problem? If you
believe that that  is really sophisticated please as for Help on a user mailing
list
Please:
- Write a meaningful Summary describing exactly what the problem is
- Attach a sample document (not only screenshot) or refer to an existing 
  sample document in an other Bug with a link; to attach a file to this 
  bug report, just click on Add an attachment right on this page.
- Attach screenshots with comments if you believe that that might explain the 
  problem better than a text comment. Best way is to insert your screenshots
  into a DRAW document and to add comments that explain what you want to show
- Contribute a document related step by step instruction containing every 
  key press and every mouse click how to reproduce your problem 
  (similar to example in Bug 43431)
– if possible contribute an instruction how to create a sample document 
  from the scratch
- add information 
  -- what EXACTLY is unexpected
  -- and WHY do you believe it's unexpected (cite Help or Documentation!)
  -- concerning your PC 
  -- concerning your OS (Version, Distribution, Language)
  -- concerning your LibO localization (UI language, Locale setting)
  –- Libo settings that might be related to your problems 
  -- how you launch LibO and how you opened the sample document
  –- Whether your problem persists when you renamed your user profile 
 before you launch LibO (please see
 https://wiki.documentfoundation.org/UserProfile#User_profile_location)
  –- If you can contribute an AOOo Issue that might be useful
  -- everything else crossing your mind after you read linked texts

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54980] New: EDITING: Regression: tab alignment broken

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54980

 Bug #: 54980
   Summary: EDITING: Regression: tab alignment broken
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.1.2 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Presentation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: sergio.calleg...@gmail.com


Problem description: 

Using tabs with tab alignement to center or to right does not work anymore in
libreoffice. Used to work in the past, works with apache openoffice 3.4.1

Steps to reproduce:
1. use edit paragraph, go to tabs, insert tab at some reasonable distance, say
4cm, select right tab alignement
2. insert tab, then some text, see that the text is aligned left

Platform (if different from the browser): 

Browser: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:15.0) Gecko/20100101
Firefox/15.0.1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54403] using sorting icons not recognizing column labels when defining range LO 3.6.1

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54403

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 #1 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org 2012-09-16 
07:39:10 UTC ---
It seems that the problem occurs when there is a column with an empty header.
I do not reproduce the problem if I define a range C1:D8 in your test file.
@reporter: could you test on your side?

If my guess is correct, so it is a duplicate of bug 54382.

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 47109] 'Insert external data' form HTML table imports US dates 31/12/2012 with Text FORMATTING

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47109

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

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|[IMPORT] Link to external   |'Insert external data' form
   |HTML file import dates well |HTML table imports US dates
   |but with the cell formatted |31/12/2012 with Text
   |as text.|FORMATTING

--- Comment #6 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-09-16 07:42:52 UTC ---
It seems that I can not reproduce that problem with Server Installation of
LibreOffice 3.5.1.2 English UI/Locale [Build-ID:
dc9775d-05ecbee-0851ad3-1586698-727bf66] on German WIN7 Home Premium (64bit),
'Tools - options - LoadSave - HRML Compatibility' Check Import = Use English
(USA)

1. New Spreadsheet
2. Menu 'Insert - Link To External Data' for sample document Table with three
   columns, second column is date
3. In dialog Import Options check Language=Automatic, Detect Special 
   Numbers  ok
HTML contents listing appears after few moments
4. Select HTML_tables ok
   HTML page table conetents will appear in spreadsheet after few moments

To check what has been imported I formatted 3 other Columns as Number and in
the cells I did a SUM of 2 vertically adjacent cells, what showed that the
dates in the cells like 01/16/2012 were text, because the result for the
SUM was 0.00

So I can confirm reporter's observations. 

Now we have to check whether the problem persists with latest versions. 

Additionally we will have to check whether there are additional strange
aspects. For example when I import table from
https://wiki.documentfoundation.org/User:RBd/Workbench/Draft1 with 'Tools -
options - LoadSave - HRML Compatibility' Check Import = Use English (USA), it
seems LibO recognizes 1/2 as date and completes it to 01/02/2012, but the
formatting in the Cell is as text what a  =SUM() test will show.

I am pretty sure that this is a bug, but I will have to think about relations
to Bug 53177 - CONFIGURATION Use 'English (USA)' locale for numbers messes
with dates and insert link to external data and others.

Any idea with what version this started?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53667] Poor performance loading a document (i.e., a .ODT) for second time

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53667

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

   What|Removed |Added

 Status|NEW |NEEDINFO

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53667] Poor performance loading a document (i.e., a .ODT) for second time

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53667

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

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 CC||b...@eikota.de
 Ever Confirmed|1   |0

--- Comment #3 from Roman Eisele b...@eikota.de 2012-09-16 07:55:29 UTC ---
Not yet confirmed, therefore reset Status.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53051] Right-Click on LO symbol in osx-dock shows all recently opened documents

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53051

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

   What|Removed |Added

 Status|NEW |NEEDINFO

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53051] Right-Click on LO symbol in osx-dock shows all recently opened documents

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53051

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

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever Confirmed|1   |0

--- Comment #1 from Roman Eisele b...@eikota.de 2012-09-16 07:57:57 UTC ---
Not yet confirmed, therefore reset Status.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54933] EDITING Report builder: mouse-move control: gap between mouse position

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54933

--- Comment #3 from rob...@familiegrosskopf.de 2012-09-16 08:05:00 UTC ---
I have tested the following:
Open a report for editing. Mark a control with the mouse. move the control with
the mouse from Detail to Group and back. The cursor look like a hand. It is
positioned in the middle of the control.
My System: OpenSuSE 11.4, 
teted with 
LO-Dev Version 3.6.3.0+ (Build ID: 0c3fcef)
LO Version 3.6.1.1 (Build ID: 4db6344)
LO 3.3.4

When I have seen the videos at
https://bugs.freedesktop.org/show_bug.cgi?id=44721 I don't understand what you
mean. There isn't moved a control with the mouse. The mouse is used for
changing the width or hight of a control. Could be you mean the cursor hand,
which suddenly appears while changing the width? Haven't seen such a behaviour
before.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54415] Correction of textes in english -LibreOffice 3.5.2.2 is crashing, restore is possible

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54415

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 #1 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org 2012-09-16 
08:07:20 UTC ---
Bug description missing. Please contribute useful information.

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54417] SLIDESHOW: Work wrong on 2560 x 1440

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54417

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 #1 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org 2012-09-16 
08:08:48 UTC ---
Please attach a screen-copy showing the problem.

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54933] EDITING Report builder: mouse-move control: gap between mouse position

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54933

--- Comment #4 from Jochen d...@jochenschiffers.de 2012-09-16 08:09:59 UTC ---
@Lionel
I also don´t understand what you want to say respectively I´m not able to
reproduce the single steps respectively the wrong behavior.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54981] New: FILEOPEN: Libre office can't open a MS Access database 2003.

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54981

 Bug #: 54981
   Summary: FILEOPEN: Libre office can't open a MS Access database
2003.
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.1.2 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: soon_1...@yahoo.es


Problem description: 
I have created a personal database with MS Access 2003 (.mdb). I have try to
migrate to LibreOffice creating a libreoffice database conextion between MS
Access 2003 and LibreOffice, but when I try to create a database conexión
between the access and libreoffice the libreoffice hangs up and don't finish
never. I have do the same with openoffice and runs correctly. 

Steps to reproduce:
1. Open LibreOffice Base and select connect to a database Existing
2. Select Microsoft Access in the dropdown
3. Click on Next
4. Select the Access database file (.mdb) and click on next
5. Select No register the database, click on open database for edit and click
on finish
6. Then, the libreoffice hangs up and not finish never.

I have do the same with Open Office and it runs correctly.

Current behavior:
When opening the database, LibreOffice hangs up.

Expected behavior:
Libreoffice open the ms access database and I can migrate from access to
libreoffice base.

Platform (if different from the browser): 
Windows 7 x64  
Browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20100101
Firefox/16.0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50334] BlogPlanet: Wrong Wrap around pictures

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50334

Mas airtime...@yahoo.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||NOTOURBUG

--- Comment #1 from Mas airtime...@yahoo.com 2012-09-16 08:28:03 UTC ---
This is because the stylesheet is not pulled into the planet webpage . This is
not a bug with the planet. You can try setting the alignment inline instead of
using the css file. 

coding issue 

CSS location :
http://s0.wp.com/wp-content/themes/pub/titan/style.css?m=1332172277g

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49926] FORMATTING: Focun unselect

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49926

Mas airtime...@yahoo.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever Confirmed|0   |1

--- Comment #1 from Mas airtime...@yahoo.com 2012-09-16 08:33:08 UTC ---
Hello, 

unfortunately I do not have access to a 50 page document. Can you please
provide us more detailed steps to duplicate the issue. 

What is focal?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 47114] ability to swap open document file dialog with file manager

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47114

Mas airtime...@yahoo.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever Confirmed|0   |1

--- Comment #2 from Mas airtime...@yahoo.com 2012-09-16 08:42:01 UTC ---
This function is built into the operating system already. The OS Determine
which application to use for the file when is opened. If a user clicks on a
Writer file then LO will launch and open the file. 
Please provide additional information if I am not understanding you correctly.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49625] GROUPING PROBLEMS - CANNOT SELECT MULTIPLE GRAPHICS WITH SHIFT KEY, FORMATTING

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49625

Mas airtime...@yahoo.com changed:

   What|Removed |Added

  QAContact||airtime...@yahoo.com

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54956] FORMATTING: Conditional formatting on sheet a lost when I add another condition to sheet b

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54956

--- Comment #3 from rl filtertheo...@web.de 2012-09-16 09:38:17 UTC ---
Well, the problem seems to have disappeared. Don't know why. The other day I
could reproduce this issue easily, but now everything in the very same
spreadsheet works as expected. I also checked a backup copy, but no problem
there either.

I suggest to close this issue.

When I see the problem again, I'll make sure to attach a snapshot of the file.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54983] New: UI: Right click menu not visible on second monitor

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54983

 Bug #: 54983
   Summary: UI: Right click menu not visible on second monitor
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.3 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: n...@cfconline.co.uk


Created attachment 67227
  -- https://bugs.freedesktop.org/attachment.cgi?id=67227
screenshot of window and the rectangle that appears in located in the title bar

Problem description: 

Steps to reproduce:
1. Move window to second monitor on Mac OS X Mountain Lion
2. Right click on a spreadsheet tab
3. The menu does not appear, but a a small empty rectangle appears in the top
of the window

Current behavior:

as above

Expected behavior:

Right click menu should appear

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1
(KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54374] JRE path isn't updated

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54374

--- Comment #21 from Joop Lanting j.f.lant...@inter.nl.net 2012-09-16 
09:57:38 UTC ---
Hi Jean, good news on my 16th Wedding anniversary day: it works well.

Both on Windows-XP (32) and Windows7 (64) I:
- made a backup of the '3/user' tree,
- restored from a Norton Backup at least 3 months old,
- un-installed LO 3.6.1
- installed LO 3.6.2.1
- observed the updating of the file 'javasettings_Windows_x86.xml',
- tested File-Send

All OK.
For the time being I will continue on this release.

Questions to you (as I planned to buy a MacBook next week):
- how intensively is LO developed and tested for OSX?
- does LO follow the OSX-proprietary issues like Full Screen and Retina Screen?

It's important to me as I want to switch completely to Apple and keep testing
all new releases of LibreOffice.

Thanks,

;JOOP!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54985] New: FILEOPEN: Cannot open some DOC files (corrupted symbols/ouput). OpenOffice opens them fine.

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54985

 Bug #: 54985
   Summary: FILEOPEN: Cannot open some DOC files (corrupted
symbols/ouput). OpenOffice opens them fine.
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.1.2 release
  Platform: x86-64 (AMD64)
OS/Version: All
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: x...@fictionpress.com


Created attachment 67228
  -- https://bugs.freedesktop.org/attachment.cgi?id=67228
Test One

Fails in Libreoffice 3.5.6 and 3.6.1.2. When trying to open the following two
attached samples, Libreoffice popups a character set prompt screen but
selecting any does not help as the output is always corrupted with garbage
symbols.

Versus

OpenOffice 3.4.1 opens up these two files perfectly fine without any type of
character set prompt.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54985] FILEOPEN: Cannot open some DOC files (corrupted symbols/ouput). OpenOffice opens them fine.

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54985

--- Comment #1 from x...@fictionpress.com 2012-09-16 10:01:14 UTC ---
Created attachment 67229
  -- https://bugs.freedesktop.org/attachment.cgi?id=67229
Test Two

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 47114] ability to swap open document file dialog with file manager

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47114

Maciej Pilichowski bluedz...@wp.pl changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever Confirmed|1   |0

--- Comment #3 from Maciej Pilichowski bluedz...@wp.pl 2012-09-16 10:02:08 
UTC ---
@Mas, you are thinking in reverse:

You -- open file manager, pick a file, double click on it, the appropriate
module will be launched with selected file

Me -- launch empty module (no file), PICK A FILE

And this (upper case) stage is entire point. Currently for picking a file LO
file selector is used. And this report is about possibility to use other file
selector -- like file manager.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54933] EDITING Report builder: mouse-move control: gap between mouse position

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54933

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #5 from rob...@familiegrosskopf.de 2012-09-16 10:02:47 UTC ---
Now I have had the same behaviour. I wanted to push a rectangle from the footer
of a group to detail. When moving the rectangle the lines, which show this
moving, suddenly jump about 1,5 cm above the mouse-cursor. I wanted to insert
the rectangle at the position which is shown by the lines - but it has been
inserted at the position of the mouse (again in the footer, not in the
detail-section).

I set the status to New.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54968] FILEOPEN CRASH ZipIOException on particular .doc

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54968

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet serval2...@yahoo.fr 2012-09-16 10:10:15 UTC 
---
Just for information:
The file isn't corrupted (I opened it with Word2010, Win7).
Nothing detected with unzip -t:
julien@julienPC:~/compile-libreoffice/bugs/54968_terrence$ unzip -t
Document2.docx
Archive:  Document2.docx
testing: [Content_Types].xml  OK
testing: _rels/.rels  OK
testing: word/_rels/document.xml.rels   OK
testing: word/document.xmlOK
testing: word/theme/theme1.xmlOK
testing: word/settings.xmlOK
testing: word/webSettings.xml OK
testing: word/stylesWithEffects.xml   OK
testing: docProps/core.xmlOK
testing: word/styles.xml  OK
testing: word/fontTable.xml   OK
testing: docProps/app.xml OK
testing: docProps/thumbnail.jpeg   OK
No errors detected in compressed data of Document2.docx.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54968] FILEOPEN CRASH ZipIOException on particular .doc

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54968

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1

--- Comment #2 from Julien Nabet serval2...@yahoo.fr 2012-09-16 10:10:47 UTC 
---
I confirm I can't open too the file on pc Debian x86-64 with master sources
updated today.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54933] EDITING Report builder: mouse-move control: gap between mouse position

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54933

--- Comment #6 from rob...@familiegrosskopf.de 2012-09-16 10:11:29 UTC ---
Another hint:
Same Database-Document - in one report I can reproduce this behaviour in a
different way (pasted at the position of the mouse - shown at another position
by the lines), in another report I can't reproduce the behaviour (report, which
is edited, when choosen English as GUI-Language ...).

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54985] FILEOPEN: Cannot open some DOC files (corrupted symbols/ouput). OpenOffice opens them fine.

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54985

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1
   Keywords||regression

--- Comment #2 from Urmas davian...@gmail.com 2012-09-16 10:17:30 UTC ---
Same with 3.6.l

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54933] EDITING Report builder: mouse-move control: gap between mouse position

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54933

Jochen d...@jochenschiffers.de changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #7 from Jochen d...@jochenschiffers.de 2012-09-16 10:17:46 UTC ---
(In reply to comment #6)
 snip I can reproduce this behaviour 

Hi Robert,

Lionel needs the specification of OS you used (to clarify which OS is
affected).

Changed status to NEEDINFO (please change again to NEW after reply).

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 48848] FILEOPEN: after opening a doc all tables have Allignment:LEFT instead of Automatic

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48848

--- Comment #2 from Marius o...@uoradea.ro 2012-09-16 10:18:28 UTC ---
Created attachment 67230
  -- https://bugs.freedesktop.org/attachment.cgi?id=67230
example1 - please see the table alignment from the header

It is possible that the person who made the table in word didn't specify any
special alignment. Probable the best default alignment for imported tables
would be automatic

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 48848] FILEOPEN: after opening a doc all tables have Allignment:LEFT instead of Automatic

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48848

--- Comment #3 from Marius o...@uoradea.ro 2012-09-16 10:22:33 UTC ---
Created attachment 67231
  -- https://bugs.freedesktop.org/attachment.cgi?id=67231
please see the strange way the tables are imported

Another test is to save the document in doc format from LibreOffice then
reopen it. They appear differences in the look ot the document. It's not ok.
Thanks.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54931] FILESAVE: Save as ODT a Docx file containing an image, duplicates the image

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54931

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 #2 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org 2012-09-16 
10:23:43 UTC ---
Reproducible with LO 3.6.2.1, LO 3.6.3.0+ (Build ID: 77e0a04) and master (LO
3.7.0.0.alpha0+ (Build ID: f49db87)) under Ubuntu 12.04 x86_64

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54981] FILEOPEN: Libre office can't open a MS Access database 2003.

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54981

Jochen d...@jochenschiffers.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||rob...@familiegrosskopf.de
 Ever Confirmed|0   |1

--- Comment #1 from Jochen d...@jochenschiffers.de 2012-09-16 10:25:06 UTC ---
Hi Soon,

is it possible to attach the mdb-file?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 47109] 'Insert external data' form HTML table imports US dates 31/12/2012 with Text FORMATTING

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47109

--- Comment #7 from mariosv mari...@miguelangel.mobi 2012-09-16 10:25:20 UTC 
---
Reproducible 
Win7x64 LibreOffice 3.3.4 OOO330m19 (Build:401) (Portable)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54420] FILESAVE: Incorrect .docx exporting to .odt

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54420

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 2012-09-16 
10:27:29 UTC ---
Problem with duplicate pictures is probably the same as the one described in
bug 54931.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 45207] General Input/Output error while opening docx file

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45207

Urmas davian...@gmail.com changed:

   What|Removed |Added

 OS/Version|Linux (All) |All

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54374] JRE path isn't updated

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54374

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WORKSFORME

--- Comment #22 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org 2012-09-16 
10:45:50 UTC ---
Ok, so closing as WorkForMe

For MacOS question: I do not know and bugzilla is not the right tool to discuss
that. Please ask on Ask-Libo : http://ask.libreoffice.org

Do not forget to upgrade to 3.6.2.2 when the RC2 will be released:
http://wiki.documentfoundation.org/ReleasePlan/3.6#3.6.2_release

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43489] [Task] Incorrect behavior using existing User Profile for upgrade

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43489

Bug 43489 depends on bug 54374, which changed state.

Bug 54374 Summary: JRE path isn't updated
https://bugs.freedesktop.org/show_bug.cgi?id=54374

   What|Old Value   |New Value

 Resolution||WORKSFORME
 Status|UNCONFIRMED |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54986] New: Impossible to deactivate autocorrect

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54986

 Bug #: 54986
   Summary: Impossible to deactivate autocorrect
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.2.1 rc
  Platform: Other
OS/Version: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: jf...@me.com


I tried to deactivate autocorrect whiule typing by unchecking Format 
Autocorrect  While typing and by deactivating all options under Preferences 
Language.
Not matter what, LibreOffice continues to propose a word when typing (by adding
the end of the word, which is not help to me).
Why is it impossible to deactivate that function ?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54426] FORMATTING: Deleting line above formatted headline removes formatting and is not undoable

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54426

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 #1 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org 2012-09-16 
10:51:49 UTC ---
@reporter: What do you mean by headline ?
Please attach a document with the formatting your are using. Doing that we will
be sure to speak about the same things.

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54986] Impossible to deactivate autocorrect

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54986

--- Comment #1 from jf...@me.com 2012-09-16 10:52:11 UTC ---
OK : foundit : Word completion

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54956] FORMATTING: Conditional formatting on sheet a lost when I add another condition to sheet b

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54956

--- Comment #4 from rl filtertheo...@web.de 2012-09-16 10:53:54 UTC ---
Created attachment 67232
  -- https://bugs.freedesktop.org/attachment.cgi?id=67232
Example for spreadsheet loosing conditional formatting

For some reason the issue doesn't always show up. But if it does, this is how
to reproduce it:

1. Assign a condition to B10:E10 in any of the sheets Counts, Counts %,
Risk or Risk %. Use All cells, Color Scale (2 Entries), with Min =
White and Max = Red 2 or Green 2.

2. Repeat step 1 on one of the other sheets mentioned above.

3. Return to the first sheet. You'll find that the conditional formatting you
defined in step 1 is gone.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54374] JRE path isn't updated

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54374

--- Comment #23 from Julien Nabet serval2...@yahoo.fr 2012-09-16 10:56:31 UTC 
---
Joop: there's also user mailing list
here:http://nabble.documentfoundation.org/Users-f1639498.html

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54985] FILEOPEN: Cannot open some DOC files (corrupted symbols/ouput). OpenOffice opens them fine.

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54985

--- Comment #3 from x...@fictionpress.com 2012-09-16 10:58:40 UTC ---
Version 3.6.0.4 (Build ID: 932b512) has no problem at all. This is a very bad
regression in the 3.6.1 new DOC import code.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54985] FILEOPEN: Cannot open some DOC files (corrupted symbols/ouput). OpenOffice opens them fine.

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54985

x...@fictionpress.com changed:

   What|Removed |Added

   Priority|medium  |highest

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54986] Impossible to deactivate autocorrect

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54986

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||INVALID

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49625] No multiselect of images is possible

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49625

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |enhancement
   Priority|medium  |lowest
 Ever Confirmed|0   |1
Summary|GROUPING PROBLEMS - CANNOT  |No multiselect of images is
   |SELECT MULTIPLE GRAPHICS|possible
   |WITH SHIFT KEY, FORMATTING  |

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54417] SLIDESHOW: Work wrong on 2560 x 1440

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54417

--- Comment #2 from urly moglivonw...@t-online.de 2012-09-16 11:07:48 UTC ---
Created attachment 67233
  -- https://bugs.freedesktop.org/attachment.cgi?id=67233
the original side in LO

3 screen-copies are attached: the original LO, slide-show in a little window,
slide-show in fullscreen.
The slide-show in a big window fails too.

Thanks for your attention
urly

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54417] SLIDESHOW: Work wrong on 2560 x 1440

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54417

--- Comment #3 from urly moglivonw...@t-online.de 2012-09-16 11:08:51 UTC ---
Created attachment 67234
  -- https://bugs.freedesktop.org/attachment.cgi?id=67234
Presentation in a little Window

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54417] SLIDESHOW: Work wrong on 2560 x 1440

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54417

--- Comment #4 from urly moglivonw...@t-online.de 2012-09-16 11:09:26 UTC ---
Created attachment 67235
  -- https://bugs.freedesktop.org/attachment.cgi?id=67235
Presentation in full-screen

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52640] tabstops malfunction in Draw and Impress

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52640

raphael.roc...@gmail.com raphael.roc...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |major
   Priority|medium  |high

--- Comment #5 from raphael.roc...@gmail.com raphael.roc...@gmail.com 
2012-09-16 11:16:40 UTC ---
As said before, this bug breaks all Draw  Impress documents with headers 
footers created as text boxes with tab stops.

I think that this bug's importance must be increased.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54974] : calculation based on a field containing a formula with result produces an error

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54974

--- Comment #1 from pierre-yves samyn pierre-yves.sa...@laposte.net 
2012-09-16 11:19:36 UTC ---
Hello

IMHO This is not a bug and it's been like that since version 3.4

See bug 37860 or bug 37942

Already in previous versions (OOo 3.2.1 but 2.4.2 ...):
ISTEXT(B1) = true if B1 = 
ISTEXT(B1) = false if B1 is empty

So a string of zero length is not equal to nothing

It would have been nice if the habit is to use ...
=IF(A1; A1)

... with a cell style no leading zero so as to not
display FALSE in the case of untested alternative ...

Regards
Pierre-Yves

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54965] EDITING: Hide Paragaraph not working

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54965

--- Comment #1 from pierre-yves samyn pierre-yves.sa...@laposte.net 
2012-09-16 11:31:34 UTC ---
Hello

Sorry but I do not reproduce: in the footer, the paragraphs are hidden/shown
when the value of the field changes (with the macro or manually by changing
the variable FusszeileAnzeigen)

Platform: Version 3.6.2.1 (Build ID: ba822cc)  windows 7 64bits

Regards
Pierre-Yves

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54956] FORMATTING: Conditional formatting on sheet a lost when I add another condition to sheet b

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54956

--- Comment #5 from Markus Mohrhard markus.mohrh...@googlemail.com 2012-09-16 
11:37:51 UTC ---
Sorry, I'm unable to reproduce it like that.

Did you maybe also delete any row in the same sheet? This would based on
another bug remove this new conditional format.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54987] New: : Spotted translation errors in original strings

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54987

 Bug #: 54987
   Summary: : Spotted translation errors in original strings
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.2.1 rc
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Localization
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: kobz...@gmail.com


Created attachment 67237
  -- https://bugs.freedesktop.org/attachment.cgi?id=67237
Tombalak List

We, Turkish localization team are tagging the original strings
with the comment tombalak[1] which are:

- Buggy
- Outdated,
- Bad wording
- Vanished feature etc.


I've prepared an ODS spreadsheet, and tried to note the reason and the
component and attach it here. (also
http://dl.dropbox.com/u/38862200/Tombalaks.ods)

There are 43 tombalaks noticed bu Turkish translation team. Most of
them are about the missing or wrong emph tags(self closing emph tags, which
gave xml errors).

1- http://listarchives.libreoffice.org/global/l10n/msg04672.html

Regards,
Zeki

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 51898] Writer instead of russian show obscure characters in RTF document from Garant legal service

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51898

--- Comment #12 from Mike Kaganski mikekagan...@hotmail.com 2012-09-16 
11:48:46 UTC ---
Well, then looks like the whole \ansicpg is ignored? I didn't think it's still
the case... It's a serious flaw. A font only need to define its own charset if
it's different from that of the document default codepage...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54744] Hybrid PDF export are corrupted

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54744

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet serval2...@yahoo.fr 2012-09-16 11:56:32 UTC 
---
On pc Debian x86-64 with master sources updated today, I reproduced the
problem.
I noticed these logs during export:
warn:legacy.osl:19795:1:/home/julien/compile-libreoffice/libo/svl/source/items/custritm.cxx:117:
CntUnencodedStringItem::PutValue(): Wrong type
warn:legacy.osl:19795:1:/home/julien/compile-libreoffice/libo/sfx2/source/appl/appuno.cxx:396:
Property not convertable: FilterName
warn:legacy.osl:19795:1:/home/julien/compile-libreoffice/libo/sfx2/source/doc/docfile.cxx:2471:
Unexpected Output stream parameter!

warn:legacy.osl:19795:1:/home/julien/compile-libreoffice/libo/sfx2/source/doc/docfile.cxx:1842:
Illegal Output stream parameter!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 47209] In SQL mode in Queries, Base crashes when a second SELECT followed by quotes is entered.

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47209

--- Comment #31 from Alex Thurgood ipla...@yahoo.co.uk 2012-09-16 12:09:29 
UTC ---
Created attachment 67239
  -- https://bugs.freedesktop.org/attachment.cgi?id=67239
backtrace no symbols

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52297] Using keyboard in form's table, list-box columns, gives strange result

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52297

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

   What|Removed |Added

 Status|NEW |NEEDINFO

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52297] Using keyboard in form's table, list-box columns, gives strange result

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52297

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

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever Confirmed|1   |0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52297] Using keyboard in form's table, list-box columns, gives strange result

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52297

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

   What|Removed |Added

 CC||b...@eikota.de

--- Comment #6 from Roman Eisele b...@eikota.de 2012-09-16 12:36:25 UTC ---
This issue was not yet confirmed by a person different from the reporter, so I
reset the status to UNCONFIRMED. (No offence -- just sorting bug reports!)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54852] FILEOPEN CRASH for particular .ods

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54852

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

--- Comment #4 from Markus Mohrhard markus.mohrh...@googlemail.com 2012-09-16 
12:36:33 UTC ---
Changing the code in UpdateReference shows that it is just another case of the
problems around ScRangeList.

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54498] EDITING: CRASH when deleting particular row in particular .ods

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54498

--- Comment #9 from Markus Mohrhard markus.mohrh...@googlemail.com 2012-09-16 
12:36:33 UTC ---
*** Bug 54852 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54403] using sorting icons not recognizing column labels when defining range LO 3.6.1

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54403

--- Comment #2 from th tomhube...@gmail.com 2012-09-16 12:39:04 UTC ---
you're right, i've just checked that! rgds tom

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52297] Using keyboard in form's table, list-box columns, gives strange result

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52297

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

   What|Removed |Added

 CC||ipla...@yahoo.co.uk

--- Comment #7 from Roman Eisele b...@eikota.de 2012-09-16 12:40:02 UTC ---
@ Alex Thurgood:

Hi Alex,
you have got more experience with database issues than me (I have to confess
that I am not even sure if I understand the issue completely). Can you confirm
this issue? Seems to be a regression ...

Thank you very much,

Roman

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52270] : MacSpeech Dictate in French: accented letters frequent crash

2012-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52270

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

   What|Removed |Added

 Status|NEW |NEEDINFO

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   >