[Libreoffice-commits] .: Branch 'libreoffice-3-5' - sc/source

2011-12-23 Thread Markus Mohrhard
 sc/source/ui/app/transobj.cxx  |4 
 sc/source/ui/view/viewfun3.cxx |   19 ---
 2 files changed, 4 insertions(+), 19 deletions(-)

New commits:
commit 49a1737b7d3d61304e749c6c164165b8bf68790e
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Fri Dec 23 08:58:17 2011 +0100

fix copy/paste with whole column/row

this fix should restore the old copy/paste behavior in calc and still
only paste relevant entries to external programs

diff --git a/sc/source/ui/app/transobj.cxx b/sc/source/ui/app/transobj.cxx
index c923fd6..a61e5d3 100644
--- a/sc/source/ui/app/transobj.cxx
+++ b/sc/source/ui/app/transobj.cxx
@@ -61,6 +61,7 @@
 #include scmod.hxx
 #include dragdata.hxx
 #include clipdata.hxx
+#include clipparam.hxx
 
 // for InitDocShell
 #include editeng/paperinf.hxx
@@ -171,6 +172,9 @@ ScTransferObj::ScTransferObj( ScDocument* pClipDoc, const 
TransferableObjectDesc
 }
 OSL_ENSURE(!bFirst, no sheet selected);
 
+if (!pDoc-GetClipParam().isMultiRange()  nTab1 == nTab2)
+pDoc-ShrinkToDataArea( nTab1, nCol1, nRow1, nCol2, nRow2 );
+
 //  only limit to used cells if whole sheet was marked
 //  (so empty cell areas can be copied)
 if ( nCol2=MAXCOL  nRow2=MAXROW )
diff --git a/sc/source/ui/view/viewfun3.cxx b/sc/source/ui/view/viewfun3.cxx
index 68ccf21..bd13314 100644
--- a/sc/source/ui/view/viewfun3.cxx
+++ b/sc/source/ui/view/viewfun3.cxx
@@ -277,28 +277,9 @@ sal_Bool ScViewFunc::CopyToClip( ScDocument* pClipDoc, 
sal_Bool bCut, sal_Bool b
 {
 ScRange aRange;
 ScMarkType eMarkType = GetViewData()-GetSimpleArea( aRange );
-ScDocument* pDoc = GetViewData()-GetDocument();
 ScMarkData rMark = GetViewData()-GetMarkData();
 sal_Bool bDone = sal_False;
 
-if( !pClipDoc ) // System Copy - adjust the ranges.
-{
-SCCOL nCol1 = aRange.aStart.Col();
-SCCOL nCol2 = aRange.aEnd.Col();
-SCROW nRow1 = aRange.aStart.Row();
-SCROW nRow2 = aRange.aEnd.Row();
-pDoc-ShrinkToDataArea( aRange.aStart.Tab(), nCol1, nRow1, nCol2, 
nRow2 );
-if( aRange.aStart.Col() == 0  aRange.aEnd.Col() == MAXCOL )
-{
-aRange.aStart.SetCol( nCol1 );
-aRange.aEnd.SetCol( nCol2 );
-}
-if( aRange.aStart.Row() == 0  aRange.aEnd.Row() == MAXROW )
-{
-aRange.aStart.SetRow( nRow1 );
-aRange.aEnd.SetRow( nRow2 );
-}
-}
 if ( eMarkType == SC_MARK_SIMPLE || eMarkType == SC_MARK_SIMPLE_FILTERED )
 {
ScRangeList aRangeList;
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-5' - sw/source

2011-12-23 Thread Cédric Bosdonnat
 sw/source/core/tox/tox.cxx|4 +++-
 sw/source/ui/index/cnttab.cxx |2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

New commits:
commit dfa082d3836d34b19a07b326c46d1e069ed5f50b
Author: Cédric Bosdonnat cedric.bosdonnat@free.fr
Date:   Fri Dec 23 11:27:26 2011 +0100

Writer: Hyperlinks on ToX have 'Index Link' style by default

diff --git a/sw/source/core/tox/tox.cxx b/sw/source/core/tox/tox.cxx
index 002dabf..cc949ed 100644
--- a/sw/source/core/tox/tox.cxx
+++ b/sw/source/core/tox/tox.cxx
@@ -323,7 +323,9 @@ SwForm::SwForm( TOXTypes eTyp ) // #i21237#
 SwFormTokens aTokens;
 if (TOX_CONTENT == eType)
 {
-aTokens.push_back(SwFormToken(TOKEN_LINK_START));
+SwFormToken aLinkStt (TOKEN_LINK_START);
+aLinkStt.sCharStyleName = String(SW_RES(STR_POOLCHR_TOXJUMP));
+aTokens.push_back(aLinkStt);
 aTokens.push_back(SwFormToken(TOKEN_ENTRY_NO));
 aTokens.push_back(SwFormToken(TOKEN_ENTRY_TEXT));
 }
diff --git a/sw/source/ui/index/cnttab.cxx b/sw/source/ui/index/cnttab.cxx
index cab0b19..dfb2ab5 100644
--- a/sw/source/ui/index/cnttab.cxx
+++ b/sw/source/ui/index/cnttab.cxx
@@ -2441,7 +2441,7 @@ IMPL_LINK(SwTOXEntryTabPage, InsertTokenHdl, PushButton*, 
pBtn)
 {
 sText.AssignAscii(SwForm::aFormLinkStt);
 eTokenType = TOKEN_LINK_START;
-sCharStyle = String(SW_RES(STR_POOLCHR_INET_NORMAL));
+sCharStyle = String(SW_RES(STR_POOLCHR_TOXJUMP));
 }
 else if(pBtn == aTabPB)
 {
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/onemsi' - 0 commits -

2011-12-23 Thread Andras Timar
Rebased ref, commits from common ancestor:
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/gbuild_a11y' - 4 commits - accessibility/bridge accessibility/Jar_accessibility.mk solenv/gbuild

2011-12-23 Thread David Tardon
 accessibility/Jar_accessibility.mk |   15 +++--
 accessibility/bridge/Makefile  |   15 +
 solenv/gbuild/Jar.mk   |   40 -
 solenv/gbuild/JavaClassSet.mk  |   15 +
 4 files changed, 60 insertions(+), 25 deletions(-)

New commits:
commit e22fef6bebfb3a5bf3907115223650ff9425eced
Author: David Tardon dtar...@redhat.com
Date:   Fri Dec 23 16:11:57 2011 +0100

use generated java source

diff --git a/accessibility/Jar_accessibility.mk 
b/accessibility/Jar_accessibility.mk
index ffb86ee..2eb0f72 100644
--- a/accessibility/Jar_accessibility.mk
+++ b/accessibility/Jar_accessibility.mk
@@ -31,15 +31,10 @@ $(eval $(call gb_Jar_add_jars,java_accessibility,\
 $(OUTDIR)/bin/jurt.jar \
 $(OUTDIR)/bin/ridl.jar \
 $(OUTDIR)/bin/unoil.jar \
-$(WORKDIR)/CustomTarget/accessibility/bridge/classes \
 ))
 
 $(eval $(call gb_Jar_set_packageroot,java_accessibility,org))
 
-$(eval $(call gb_Jar_add_packagedirs,java_accessibility,\
-$(WORKDIR)/CustomTarget/accessibility/bridge/classes/org \
-))
-
 $(eval $(call gb_Jar_add_sourcefiles,java_accessibility,\
 accessibility/bridge/org/openoffice/java/accessibility/AbstractButton \
 
accessibility/bridge/org/openoffice/java/accessibility/AccessibleActionImpl \
@@ -88,9 +83,13 @@ $(eval $(call gb_Jar_add_sourcefiles,java_accessibility,\
 
accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleTextLog
 \
 ))
 
+$(eval $(call gb_Jar_add_generated_sourcefiles,java_accessibility,\
+CustomTarget/accessibility/bridge/org/openoffice/java/accessibility/Build \
+))
+
 # Dummy dep. to satisfy make's depsolver: .../classes is created by a
 # custom target, so there is no dependency information for it here.
 # It also makes sure that the package is built before this jar .-)
-$(WORKDIR)/CustomTarget/accessibility/bridge/classes :| $(call 
gb_Package_get_target,accessibility_bridge)
+$(call gb_Jar_get_target,java_accessibility) :| $(call 
gb_Package_get_target,accessibility_bridge)
 
 # vim:set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/accessibility/bridge/Makefile b/accessibility/bridge/Makefile
index 67792cd..9ed435a 100644
--- a/accessibility/bridge/Makefile
+++ b/accessibility/bridge/Makefile
@@ -26,10 +26,6 @@
 # instead of those above.
 
 gb_PARTIALBUILD := T
-include $(GBUILDDIR)/gbuild.mk
-
-TARGETDIR := $(WORKDIR)/CustomTarget/accessibility/bridge
-PACKAGE := org/openoffice/java/accessibility
 
 ifeq ($(PRODUCT),)
 DEBUGSWITCH := true
@@ -39,14 +35,7 @@ DEBUGSWITCH := false
 PRODUCTSWITCH := true
 endif
 
-$(TARGETDIR)/done : $(TARGETDIR)/classes/$(PACKAGE)/Build.class
-   mkdir -p $(dir $@)  touch $@
-
-$(TARGETDIR)/classes/$(PACKAGE)/Build.class : 
$(TARGETDIR)/src/$(PACKAGE)/Build.java | $(gb_JavaClassSet_JAVACCOMMAND)
-   mkdir -p $(dir $@)  \
-$(gb_JavaClassSet_JAVACCOMMAND) $(gb_JavaClassSet_JAVACDEBUG) -d 
$(TARGETDIR)/classes $^
-
-$(TARGETDIR)/src/$(PACKAGE)/Build.java :
+org/openoffice/java/accessibility/Build.java :
mkdir -p $(dir $@)  (\
 echo package org.openoffice.java.accessibility\;  \
 echo public class Build \{  \
@@ -58,6 +47,6 @@ $(TARGETDIR)/src/$(PACKAGE)/Build.java :
 .DEFAULT_GOAL := all
 .PHONY : all
 all : \
-   $(TARGETDIR)/done
+   org/openoffice/java/accessibility/Build.java
 
 # vim: set ts=4 sw=4 et:
commit a9afa2b27e1a19066a872b09df14f7a22c3c707b
Author: David Tardon dtar...@redhat.com
Date:   Fri Dec 23 16:08:18 2011 +0100

allow use of generated files in gb_Jar

diff --git a/solenv/gbuild/Jar.mk b/solenv/gbuild/Jar.mk
index 295aa69..b5ba394 100644
--- a/solenv/gbuild/Jar.mk
+++ b/solenv/gbuild/Jar.mk
@@ -140,6 +140,16 @@ $(foreach sourcefile,$(2),$(call 
gb_Jar_add_sourcefile,$(1),$(sourcefile)))
 
 endef
 
+define gb_Jar_add_generated_sourcefile
+$(call gb_JavaClassSet_add_generated_sourcefile,$(call 
gb_Jar_get_classsetname,$(1)),$(2))
+
+endef
+
+define gb_Jar_add_generated_sourcefiles
+$(foreach sourcefile,$(2),$(call 
gb_Jar_add_generated_sourcefile,$(1),$(sourcefile)))
+
+endef
+
 define gb_JarTest_set_classpath
 $(call gb_JavaClassSet_set_classpath,$(call gb_Jar_get_classsetname,$(1)),$(2))
 
diff --git a/solenv/gbuild/JavaClassSet.mk b/solenv/gbuild/JavaClassSet.mk
index 61cb4e8..6befda1 100644
--- a/solenv/gbuild/JavaClassSet.mk
+++ b/solenv/gbuild/JavaClassSet.mk
@@ -69,6 +69,10 @@ define gb_JavaClassSet__get_sourcefile
 $(SRCDIR)/$(1).java
 endef
 
+define gb_JavaClassSet__get_generated_sourcefile
+$(WORKDIR)/$(1).java
+endef
+
 define gb_JavaClassSet_add_sourcefile
 $(call gb_JavaClassSet_get_target,$(1)) : $(call 
gb_JavaClassSet__get_sourcefile,$(2))
 
@@ -79,6 +83,17 @@ $(foreach sourcefile,$(2),$(call 
gb_JavaClassSet_add_sourcefile,$(1),$(sourcefil
 
 endef
 
+define gb_JavaClassSet_add_generated_sourcefile
+$(call gb_JavaClassSet_get_target,$(1)) : $(call 
gb_JavaClassSet__get_generated_sourcefile,$(2))
+$(call 

[Libreoffice-commits] .: vcl/source

2011-12-23 Thread Ivan Timofeev
 vcl/source/window/menu.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 22ebb32863f7874ccd1d39881140a0bbcbc5f72a
Author: Ivan Timofeev timofeev@gmail.com
Date:   Fri Dec 23 19:10:18 2011 +0400

don't hide images in menus (fdo#31471, fdo#41264)

diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx
index 65a83a5..c44f906 100644
--- a/vcl/source/window/menu.cxx
+++ b/vcl/source/window/menu.cxx
@@ -960,7 +960,7 @@ void Menu::ImplInit()
 {
 mnHighlightedItemPos = ITEMPOS_INVALID;
 mpSalMenu   = NULL;
-nMenuFlags  = 0;
+nMenuFlags  = MENU_FLAG_SHOWCHECKIMAGES;
 nDefaultItem= 0;
 //bIsMenuBar  = sal_False;  // this is now set in the ctor, must not 
be changed here!!!
 nSelectedId = 0;
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: qadevOOo/Jar_OOoRunner.mk

2011-12-23 Thread David Tardon
 qadevOOo/Jar_OOoRunner.mk |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit f3f77fd5cdd0a04115af255430a97e6dec24d85f
Author: David Tardon dtar...@redhat.com
Date:   Fri Dec 23 17:14:09 2011 +0100

gb_Jar_add_packagefiles only takes 2 args

diff --git a/qadevOOo/Jar_OOoRunner.mk b/qadevOOo/Jar_OOoRunner.mk
index 8268975..c005489 100644
--- a/qadevOOo/Jar_OOoRunner.mk
+++ b/qadevOOo/Jar_OOoRunner.mk
@@ -71,4 +71,6 @@ $(eval $(call gb_Jar_add_sourcefiles,OOoRunner,\
qadevOOo/tests/java/*/*/*/* \
 ))
 
-$(eval $(call 
gb_Jar_add_packagefile,OOoRunner,objdsc,$(SRCDIR)/qadevOOo/objdsc))
+$(eval $(call gb_Jar_add_packagefiles,OOoRunner,\
+$(SRCDIR)/qadevOOo/objdsc \
+))
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: 2 commits - qadevOOo/Jar_OOoRunner.mk solenv/gbuild

2011-12-23 Thread David Tardon
 qadevOOo/Jar_OOoRunner.mk |4 +---
 solenv/gbuild/Jar.mk  |9 -
 2 files changed, 5 insertions(+), 8 deletions(-)

New commits:
commit 88b5b3688e51fa693353a542b6c8302e6a45
Author: David Tardon dtar...@redhat.com
Date:   Fri Dec 23 17:41:59 2011 +0100

gb_Jar_add_packagefile needs three args after all

This partially reverts commit 713e536fe987f4dbd901656fda19ec4908a0a2f1 .

diff --git a/solenv/gbuild/Jar.mk b/solenv/gbuild/Jar.mk
index b5ba394..f1fe144 100644
--- a/solenv/gbuild/Jar.mk
+++ b/solenv/gbuild/Jar.mk
@@ -127,11 +127,10 @@ endef
 # PACKAGEFILES is the list of all root files to pack into the jar
 define gb_Jar_add_packagefile
 $(call gb_Jar_get_target,$(1)) : PACKAGEFILES += $(2)
-
-endef
-
-define gb_Jar_add_packagefiles
-$(foreach packagefile,$(2),$(call gb_Jar_add_packagefile,$(1),$(packagefile)))
+$(call gb_Jar_get_target,$(1)) : $(call gb_Jar_get_workdir,$(1))/$(strip $(2))
+$(call gb_Jar_get_workdir,$(1))/$(strip $(2)) : $(3) $(call 
gb_JavaClassSet_get_target,$(call gb_Jar_get_classsetname,$(1)))
+   mkdir -p $$(dir $$@)
+   cp -rf $(3) $$@
 
 endef
 
commit e3f70a05b3e590fcb2e75cd4e380e2f3a0530c18
Author: David Tardon dtar...@redhat.com
Date:   Fri Dec 23 17:39:52 2011 +0100

Revert gb_Jar_add_packagefiles only takes 2 args

This reverts commit f3f77fd5cdd0a04115af255430a97e6dec24d85f.

diff --git a/qadevOOo/Jar_OOoRunner.mk b/qadevOOo/Jar_OOoRunner.mk
index c005489..8268975 100644
--- a/qadevOOo/Jar_OOoRunner.mk
+++ b/qadevOOo/Jar_OOoRunner.mk
@@ -71,6 +71,4 @@ $(eval $(call gb_Jar_add_sourcefiles,OOoRunner,\
qadevOOo/tests/java/*/*/*/* \
 ))
 
-$(eval $(call gb_Jar_add_packagefiles,OOoRunner,\
-$(SRCDIR)/qadevOOo/objdsc \
-))
+$(eval $(call 
gb_Jar_add_packagefile,OOoRunner,objdsc,$(SRCDIR)/qadevOOo/objdsc))
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: rdbmaker/source remotebridges/examples remotebridges/source reportdesign/source sax/source

2011-12-23 Thread Takeshi Abe
 rdbmaker/source/rdbmaker/rdbmaker.cxx|4 +-
 remotebridges/examples/officeclient.cxx  |8 ++--
 remotebridges/source/unourl_resolver/unourl_resolver.cxx |2 -
 reportdesign/source/core/sdr/RptObject.cxx   |4 +-
 reportdesign/source/filter/xml/xmlHelper.cxx |2 -
 reportdesign/source/ui/dlg/Navigator.cxx |2 -
 reportdesign/source/ui/inspection/DataProviderHandler.cxx|4 +-
 reportdesign/source/ui/inspection/DefaultInspection.cxx  |2 -
 reportdesign/source/ui/inspection/GeometryHandler.cxx|8 ++--
 reportdesign/source/ui/inspection/ReportComponentHandler.cxx |4 +-
 reportdesign/source/ui/misc/RptUndo.cxx  |2 -
 reportdesign/source/ui/misc/UITools.cxx  |6 +--
 reportdesign/source/ui/report/FormattedFieldBeautifier.cxx   |2 -
 reportdesign/source/ui/report/ReportSection.cxx  |4 +-
 reportdesign/source/ui/report/ViewsWindow.cxx|2 -
 sax/source/expatwrap/sax_expat.cxx   |   20 +--
 16 files changed, 38 insertions(+), 38 deletions(-)

New commits:
commit c9a54f532e6fbe2302167a7f8cb829b397f2569c
Author: Takeshi Abe t...@fixedpoint.jp
Date:   Sat Dec 24 01:33:06 2011 +0900

catch exception by constant reference

diff --git a/rdbmaker/source/rdbmaker/rdbmaker.cxx 
b/rdbmaker/source/rdbmaker/rdbmaker.cxx
index fba8469..4a4e8ae 100644
--- a/rdbmaker/source/rdbmaker/rdbmaker.cxx
+++ b/rdbmaker/source/rdbmaker/rdbmaker.cxx
@@ -313,7 +313,7 @@ int __cdecl main( int argc, char * argv[] )
 exit(1);
 }
 }
-catch( IllegalArgument e)
+catch(const IllegalArgument e)
 {
 fprintf(stderr, Illegal option: %s\n, e.m_message.getStr());
 cleanUp(sal_True);
@@ -496,7 +496,7 @@ int __cdecl main( int argc, char * argv[] )
 }
 }
 }
-catch( CannotDumpException e)
+catch(const CannotDumpException e)
 {
 fprintf(stderr, %s ERROR: %s\n,
 options.getProgramName().getStr(),
diff --git a/remotebridges/examples/officeclient.cxx 
b/remotebridges/examples/officeclient.cxx
index 40c9023..adce0c1 100644
--- a/remotebridges/examples/officeclient.cxx
+++ b/remotebridges/examples/officeclient.cxx
@@ -214,25 +214,25 @@ sal_Int32 OfficeClientMain::run( const Sequence OUString 
  aArguments ) throw
 }
 
 }
-catch( ConnectionSetupException e )
+catch( const ConnectionSetupException e )
 {
 OString o = OUStringToOString( e.Message, 
RTL_TEXTENCODING_ASCII_US );
 printf( %s\n, o.pData-buffer );
 printf( couldn't access local resource ( possible security resons 
)\n );
 }
-catch( NoConnectException e )
+catch( const NoConnectException e )
 {
 OString o = OUStringToOString( e.Message, 
RTL_TEXTENCODING_ASCII_US );
 printf( %s\n, o.pData-buffer );
 printf( no server listening on the resource\n );
 }
-catch( IllegalArgumentException e )
+catch( const IllegalArgumentException e )
 {
 OString o = OUStringToOString( e.Message, 
RTL_TEXTENCODING_ASCII_US );
 printf( %s\n, o.pData-buffer );
 printf( uno url invalid\n );
 }
-catch( RuntimeException  e )
+catch( const RuntimeException  e )
 {
 OString o = OUStringToOString( e.Message, 
RTL_TEXTENCODING_ASCII_US );
 printf( %s\n, o.pData-buffer );
diff --git a/remotebridges/source/unourl_resolver/unourl_resolver.cxx 
b/remotebridges/source/unourl_resolver/unourl_resolver.cxx
index 459f2fe..f3abd3d 100644
--- a/remotebridges/source/unourl_resolver/unourl_resolver.cxx
+++ b/remotebridges/source/unourl_resolver/unourl_resolver.cxx
@@ -150,7 +150,7 @@ Reference XInterface  ResolverImpl::resolve( const 
OUString  rUnoUrl )
 aConnectDescr = aUrl.getConnection().getDescriptor();
 aInstanceName = aUrl.getObjectName();
 }
-catch (rtl::MalformedUriException  rEx)
+catch (const rtl::MalformedUriException  rEx)
 {
 throw ConnectionSetupException(rEx.getMessage(), 0);
 }
diff --git a/reportdesign/source/core/sdr/RptObject.cxx 
b/reportdesign/source/core/sdr/RptObject.cxx
index f1c6e4d..ee502b2 100644
--- a/reportdesign/source/core/sdr/RptObject.cxx
+++ b/reportdesign/source/core/sdr/RptObject.cxx
@@ -393,7 +393,7 @@ void OObjectBase::EndListening(sal_Bool /*bRemoveListener*/)
 {
 m_xReportComponent-removePropertyChangeListener( 
::rtl::OUString() , m_xPropertyChangeListener );
 }
-catch(uno::Exception)
+catch(const uno::Exception )
 {
 OSL_FAIL(OObjectBase::EndListening: Exception caught!);
 }
@@ -1204,7 +1204,7 @@ void 

[Libreoffice-commits] .: Branch 'feature/gbuild_conversions' - connectivity/Module_connectivity.mk

2011-12-23 Thread Peter Foley
 connectivity/Module_connectivity.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 772e2509121516428594e62c30dca8a8010d8a24
Author: Peter Foley pefol...@verizon.net
Date:   Thu Dec 22 19:55:36 2011 -0500

connectivity: don't build jars unless java is enabled

diff --git a/connectivity/Module_connectivity.mk 
b/connectivity/Module_connectivity.mk
index 5b80a53..30071ad 100644
--- a/connectivity/Module_connectivity.mk
+++ b/connectivity/Module_connectivity.mk
@@ -31,7 +31,6 @@ $(eval $(call gb_Module_add_targets,connectivity,\
AllLangResTarget_connectivity \
Package_inc \
Package_xml \
-   Jar_sdbc_hsqldb \
Library_dbtools \
Library_sdbc2 \
Library_dbpool2 \
@@ -44,6 +43,7 @@ $(eval $(call gb_Module_add_targets,connectivity,\
 ifneq ($(SOLAR_JAVA),)
 $(eval $(call gb_Module_add_targets,connectivity,\
Jar_ConnectivityTools \
+   Jar_sdbc_hsqldb \
 ))
 endif
 
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: 3 commits - Module_tail_build.mk postprocess/prj

2011-12-23 Thread David Tardon
 Module_tail_build.mk  |3 +++
 postprocess/prj/build.lst |2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 18eb960248ffae70fecac59caf72b37441c677b8
Author: David Tardon dtar...@redhat.com
Date:   Fri Dec 23 18:12:13 2011 +0100

move psprint_config to tail_build

diff --git a/Module_tail_build.mk b/Module_tail_build.mk
index ecc7418..409c928 100644
--- a/Module_tail_build.mk
+++ b/Module_tail_build.mk
@@ -48,6 +48,7 @@ $(eval $(call gb_Module_add_moduledirs,tail_end,\
 oox \
 package \
 padmin \
+psprint_config \
 reportdesign \
 sc \
 scaddins \
diff --git a/postprocess/prj/build.lst b/postprocess/prj/build.lst
index 10428c8..a372450 100644
--- a/postprocess/prj/build.lst
+++ b/postprocess/prj/build.lst
@@ -1,4 +1,4 @@
-po  postprocess ::  BINFILTER:binfilter configmgr 
CRASHREP:crashrep CT2N:ct2n embeddedobj embedserv EPM:epm DESKTOP:extensions 
extras DESKTOP:fpicker HELP:helpcontent2 io LIBRSVG:librsvg ODK:odk officecfg 
psprint_config remotebridges scp2 DESKTOP:setup_native sysui testtools ucb 
UnoControls ure wizards MORE_FONTS:more_fonts DICTIONARIES:dictionaries 
PYUNO:pyuno readlicense_oo DESKTOP:unodevtools JFREEREPORT:jfreereport 
REPORTBUILDER:reportbuilder LANGUAGETOOL:languagetool SDEXT:sdext MYSQLC:mysqlc 
NLPSOLVER:nlpsolver STLPORT:stlport LIBXSLT:libxslt smoketest tail_build NULL
+po  postprocess ::  BINFILTER:binfilter configmgr 
CRASHREP:crashrep CT2N:ct2n embeddedobj embedserv EPM:epm DESKTOP:extensions 
extras DESKTOP:fpicker HELP:helpcontent2 io LIBRSVG:librsvg ODK:odk officecfg 
remotebridges scp2 DESKTOP:setup_native sysui testtools ucb UnoControls ure 
wizards MORE_FONTS:more_fonts DICTIONARIES:dictionaries PYUNO:pyuno 
readlicense_oo DESKTOP:unodevtools JFREEREPORT:jfreereport 
REPORTBUILDER:reportbuilder LANGUAGETOOL:languagetool SDEXT:sdext MYSQLC:mysqlc 
NLPSOLVER:nlpsolver STLPORT:stlport LIBXSLT:libxslt smoketest tail_build NULL
 po postprocess usr1-   all 
po_mkout NULL
 po postprocess\checkxmlnmake   -   all po_checkxml NULL
 po postprocess\packconfig  nmake   -   all po_packconfig 
po_checkxml NULL
commit a305c46aa9cc71bfd29713027d783211f5818fac
Author: David Tardon dtar...@redhat.com
Date:   Fri Dec 23 18:07:42 2011 +0100

move dtrans to tail_build

diff --git a/Module_tail_build.mk b/Module_tail_build.mk
index 013a1a2..ecc7418 100644
--- a/Module_tail_build.mk
+++ b/Module_tail_build.mk
@@ -33,6 +33,7 @@ $(eval $(call gb_Module_add_moduledirs,tail_end,\
 cui \
 dbaccess \
 desktop \
+dtrans \
 eventattacher \
 fileaccess \
 filter \
diff --git a/postprocess/prj/build.lst b/postprocess/prj/build.lst
index ca03231..10428c8 100644
--- a/postprocess/prj/build.lst
+++ b/postprocess/prj/build.lst
@@ -1,4 +1,4 @@
-po  postprocess ::  BINFILTER:binfilter configmgr 
CRASHREP:crashrep CT2N:ct2n dtrans embeddedobj embedserv EPM:epm 
DESKTOP:extensions extras DESKTOP:fpicker HELP:helpcontent2 io LIBRSVG:librsvg 
ODK:odk officecfg psprint_config remotebridges scp2 DESKTOP:setup_native sysui 
testtools ucb UnoControls ure wizards MORE_FONTS:more_fonts 
DICTIONARIES:dictionaries PYUNO:pyuno readlicense_oo DESKTOP:unodevtools 
JFREEREPORT:jfreereport REPORTBUILDER:reportbuilder LANGUAGETOOL:languagetool 
SDEXT:sdext MYSQLC:mysqlc NLPSOLVER:nlpsolver STLPORT:stlport LIBXSLT:libxslt 
smoketest tail_build NULL
+po  postprocess ::  BINFILTER:binfilter configmgr 
CRASHREP:crashrep CT2N:ct2n embeddedobj embedserv EPM:epm DESKTOP:extensions 
extras DESKTOP:fpicker HELP:helpcontent2 io LIBRSVG:librsvg ODK:odk officecfg 
psprint_config remotebridges scp2 DESKTOP:setup_native sysui testtools ucb 
UnoControls ure wizards MORE_FONTS:more_fonts DICTIONARIES:dictionaries 
PYUNO:pyuno readlicense_oo DESKTOP:unodevtools JFREEREPORT:jfreereport 
REPORTBUILDER:reportbuilder LANGUAGETOOL:languagetool SDEXT:sdext MYSQLC:mysqlc 
NLPSOLVER:nlpsolver STLPORT:stlport LIBXSLT:libxslt smoketest tail_build NULL
 po postprocess usr1-   all 
po_mkout NULL
 po postprocess\checkxmlnmake   -   all po_checkxml NULL
 po postprocess\packconfig  nmake   -   all po_packconfig 
po_checkxml NULL
commit 75011e3a0fecd371072aa092f34d78e6bf0edf0d
Author: David Tardon dtar...@redhat.com
Date:   Fri Dec 23 18:05:33 2011 +0100

move scaddins to tail_build

diff --git a/Module_tail_build.mk b/Module_tail_build.mk
index 9cc2d90..013a1a2 100644
--- a/Module_tail_build.mk
+++ b/Module_tail_build.mk
@@ -49,6 +49,7 @@ $(eval $(call gb_Module_add_moduledirs,tail_end,\
 padmin \
 reportdesign \
 sc \
+scaddins \
 sccomp \
 scripting \
 sd \
diff --git a/postprocess/prj/build.lst b/postprocess/prj/build.lst
index 8088ea0..ca03231 100644
--- a/postprocess/prj/build.lst
+++ 

[Libreoffice-commits] .: l10ntools/source

2011-12-23 Thread Norbert Thiebaud
 l10ntools/source/filter/merge/FCFGMerge.java |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit ba5edb14040a6b268aa3db3c216fc4505a32e219
Author: Marcel Metz mm...@adrian-brother.net
Date:   Fri Dec 23 11:27:30 2011 -0600

reduce noise from FCFGMerge tool

diff --git a/l10ntools/source/filter/merge/FCFGMerge.java 
b/l10ntools/source/filter/merge/FCFGMerge.java
index 2c2f35b..ca1959b 100644
--- a/l10ntools/source/filter/merge/FCFGMerge.java
+++ b/l10ntools/source/filter/merge/FCFGMerge.java
@@ -56,8 +56,6 @@ public class FCFGMerge
 
 public static void main(java.lang.String[] sCmdLine)
 {
-FCFGMerge.printCopyright();
-
 // create log object in default mode WARNINGS
 // If a command line parameter indicates another
 // level - change it!
@@ -77,6 +75,7 @@ public class FCFGMerge
 // help requested?
 if (aCfg.isHelp())
 {
+FCFGMerge.printCopyright();
 FCFGMerge.printHelp();
 System.exit(-1);
 }
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/gbuild_cppuhelper' - 3 commits - codemaker/source cppuhelper/Module_cppuhelper.mk forms/source odk/util xmlreader/Library_xmlreader.mk

2011-12-23 Thread Stephan Bergmann
 codemaker/source/cppumaker/cpputype.cxx |   91 +---
 cppuhelper/Module_cppuhelper.mk |2 
 forms/source/component/Grid.cxx |2 
 odk/util/check.pl   |   31 ++
 xmlreader/Library_xmlreader.mk  |2 
 5 files changed, 106 insertions(+), 22 deletions(-)

New commits:
commit 3c92f54309df6b8b0008993962719e2d9ae7b94d
Author: Stephan Bergmann sberg...@redhat.com
Date:   Fri Dec 23 18:41:52 2011 +0100

Temporary hack around cppu_detail_getCppuType variants violating ODR.

Which causes cppuhelper to pick wrong variant from other library, now that 
its own
symbols are no longer reduced to private on Mac OS X.  As a temporary hack, 
emit
cppu_detail_getCppuType for the relevant types always as fully 
comprehensive; should
be revisited when improving types.rdb format (routinely generating C++ 
information
for certain UNO types into a dedicated library?).  Requires a fix to 
xmlreader and
a fix to forms that looks like a Mac OS X GCC bug.

diff --git a/codemaker/source/cppumaker/cpputype.cxx 
b/codemaker/source/cppumaker/cpputype.cxx
index 3a436ca..9636f61 100644
--- a/codemaker/source/cppumaker/cpputype.cxx
+++ b/codemaker/source/cppumaker/cpputype.cxx
@@ -79,6 +79,77 @@ rtl::OString translateSimpleUnoType(rtl::OString const  
unoType, bool cppuUnoTy
 return trans[sort];
 }
 
+bool isBootstrapType(rtl::OString const  name) {
+static char const * const names[] = {
+   com/sun/star/beans/PropertyAttribute,
+   com/sun/star/beans/PropertyValue,
+   com/sun/star/beans/XFastPropertySet,
+   com/sun/star/beans/XMultiPropertySet,
+   com/sun/star/beans/XPropertyAccess,
+   com/sun/star/beans/XPropertySet,
+   com/sun/star/beans/XPropertySetOption,
+   com/sun/star/bridge/UnoUrlResolver,
+   com/sun/star/bridge/XUnoUrlResolver,
+   com/sun/star/connection/SocketPermission,
+   com/sun/star/container/XElementAccess,
+   com/sun/star/container/XEnumerationAccess,
+   com/sun/star/container/XHierarchicalNameAccess,
+   com/sun/star/container/XNameAccess,
+   com/sun/star/container/XNameContainer,
+   com/sun/star/container/XNameReplace,
+   com/sun/star/container/XSet,
+   com/sun/star/io/FilePermission,
+   com/sun/star/io/IOException,
+   com/sun/star/lang/DisposedException,
+   com/sun/star/lang/WrappedTargetRuntimeException,
+   com/sun/star/lang/XComponent,
+   com/sun/star/lang/XEventListener,
+   com/sun/star/lang/XInitialization,
+   com/sun/star/lang/XMultiComponentFactory,
+   com/sun/star/lang/XMultiServiceFactory,
+   com/sun/star/lang/XServiceInfo,
+   com/sun/star/lang/XSingleComponentFactory,
+   com/sun/star/lang/XSingleServiceFactory,
+   com/sun/star/lang/XTypeProvider,
+   com/sun/star/loader/XImplementationLoader,
+   com/sun/star/reflection/XArrayTypeDescription,
+   com/sun/star/reflection/XCompoundTypeDescription,
+   com/sun/star/reflection/XEnumTypeDescription,
+   com/sun/star/reflection/XIdlClass,
+   com/sun/star/reflection/XIdlField2,
+   com/sun/star/reflection/XIdlReflection,
+   com/sun/star/reflection/XIndirectTypeDescription,
+   com/sun/star/reflection/XInterfaceAttributeTypeDescription,
+   com/sun/star/reflection/XInterfaceAttributeTypeDescription2,
+   com/sun/star/reflection/XInterfaceMemberTypeDescription,
+   com/sun/star/reflection/XInterfaceMethodTypeDescription,
+   com/sun/star/reflection/XInterfaceTypeDescription2,
+   com/sun/star/reflection/XMethodParameter,
+   com/sun/star/reflection/XStructTypeDescription,
+   com/sun/star/reflection/XTypeDescription,
+   com/sun/star/reflection/XUnionTypeDescription,
+   com/sun/star/registry/XImplementationRegistration,
+   com/sun/star/registry/XRegistryKey,
+   com/sun/star/registry/XSimpleRegistry,
+   com/sun/star/security/RuntimePermission,
+   com/sun/star/security/XAccessController,
+   com/sun/star/uno/DeploymentException,
+   com/sun/star/uno/RuntimeException,
+   com/sun/star/uno/XAggregation,
+   com/sun/star/uno/XComponentContext,
+   com/sun/star/uno/XCurrentContext,
+   com/sun/star/uno/XUnloadingPreference,
+   com/sun/star/uno/XWeak,
+   com/sun/star/util/XMacroExpander
+}; // cf. cppuhelper/unotypes/Makefile UNOTYPES (plus missing dependencies)
+for (std::size_t i = 0; i  SAL_N_ELEMENTS(names); ++i) {
+if (name.equals(names[i])) {
+return true;
+}
+}
+return false;
+}
+
 }
 
 //*
@@ -221,14 +292,18 @@ sal_Bool 

[Libreoffice-commits] .: cppu/source

2011-12-23 Thread Stephan Bergmann
 cppu/source/typelib/static_types.cxx |   39 +--
 1 file changed, 20 insertions(+), 19 deletions(-)

New commits:
commit c84a5ec4cb81eddb8bb382a6494c28df5131cb85
Author: Stephan Bergmann sberg...@redhat.com
Date:   Fri Dec 23 18:56:18 2011 +0100

OSL_ASSERT - assert

diff --git a/cppu/source/typelib/static_types.cxx 
b/cppu/source/typelib/static_types.cxx
index 5a5e415..f415c88 100644
--- a/cppu/source/typelib/static_types.cxx
+++ b/cppu/source/typelib/static_types.cxx
@@ -26,9 +26,11 @@
  *
  /
 
+#include sal/config.h
 
-#include stdarg.h
 #include algorithm
+#include cassert
+#include stdarg.h
 
 #include osl/mutex.hxx
 #include osl/interlck.h
@@ -226,7 +228,7 @@ CPPU_DLLPUBLIC typelib_TypeDescriptionReference ** SAL_CALL 
typelib_static_type_
 ::typelib_typedescriptionreference_release( pMembers[1] );
 ::typelib_typedescriptionreference_release( pMembers[2] );
 // Exception
-OSL_ASSERT( ! s_aTypes[typelib_TypeClass_EXCEPTION] );
+assert( ! s_aTypes[typelib_TypeClass_EXCEPTION] );
 {
 typelib_TypeDescription * pTD1 = 0;
 OUString sTypeName1( 
RTL_CONSTASCII_USTRINGPARAM(com.sun.star.uno.Exception) );
@@ -341,7 +343,7 @@ CPPU_DLLPUBLIC void SAL_CALL 
typelib_static_sequence_type_init(
 aBuf.append( pElementType-pTypeName );
 OUString aTypeName( aBuf.makeStringAndClear() );
 
-OSL_ASSERT( ! 
TYPELIB_TYPEDESCRIPTIONREFERENCE_ISREALLYWEAK(typelib_TypeClass_SEQUENCE) );
+assert( ! 
TYPELIB_TYPEDESCRIPTIONREFERENCE_ISREALLYWEAK(typelib_TypeClass_SEQUENCE) );
 *ppRef = igetTypeByName( aTypeName.pData );
 if (!*ppRef)
 {
@@ -352,7 +354,7 @@ CPPU_DLLPUBLIC void SAL_CALL 
typelib_static_sequence_type_init(
 
 ::typelib_typedescription_register( pReg );
 *ppRef = (typelib_TypeDescriptionReference *)pReg;
-OSL_ASSERT( *ppRef == pReg-pWeakRef );
+assert( *ppRef == pReg-pWeakRef );
 }
 // another static ref:
 ++((*ppRef)-nStaticRefCount);
@@ -370,15 +372,14 @@ void init(
 sal_Int32 nMembers, typelib_TypeDescriptionReference ** ppMembers,
 sal_Bool const * pParameterizedTypes)
 {
-OSL_ENSURE( typelib_TypeClass_STRUCT == eTypeClass ||
- typelib_TypeClass_EXCEPTION == eTypeClass, ### unexpected 
type class! );
+assert( eTypeClass == typelib_TypeClass_STRUCT || eTypeClass == 
typelib_TypeClass_EXCEPTION );
 
 if (! *ppRef)
 {
 MutexGuard aGuard( typelib_StaticInitMutex::get() );
 if (! *ppRef)
 {
-OSL_ASSERT( ! 
TYPELIB_TYPEDESCRIPTIONREFERENCE_ISREALLYWEAK(eTypeClass) );
+assert( ! 
TYPELIB_TYPEDESCRIPTIONREFERENCE_ISREALLYWEAK(eTypeClass) );
 OUString aTypeName( OUString::createFromAscii( pTypeName ) );
 *ppRef = igetTypeByName( aTypeName.pData );
 if (!*ppRef)
@@ -392,9 +393,9 @@ void init(
 {
 ::typelib_typedescriptionreference_getDescription(
 (typelib_TypeDescription 
**)pComp-pBaseTypeDescription, pBaseType );
-OSL_ASSERT( pComp-pBaseTypeDescription );
+assert( pComp-pBaseTypeDescription );
 nOffset = ((typelib_TypeDescription 
*)pComp-pBaseTypeDescription)-nSize;
-OSL_ENSURE( newAlignedSize( 0, ((typelib_TypeDescription 
*)pComp-pBaseTypeDescription)-nSize, ((typelib_TypeDescription 
*)pComp-pBaseTypeDescription)-nAlignment ) == ((typelib_TypeDescription 
*)pComp-pBaseTypeDescription)-nSize, ### unexpected offset! );
+assert( newAlignedSize( 0, ((typelib_TypeDescription 
*)pComp-pBaseTypeDescription)-nSize, ((typelib_TypeDescription 
*)pComp-pBaseTypeDescription)-nAlignment ) == ((typelib_TypeDescription 
*)pComp-pBaseTypeDescription)-nSize ); // unexpected offset
 }
 
 if (nMembers)
@@ -414,7 +415,7 @@ void init(
 // write offset
 typelib_TypeDescription * pTD = 0;
 TYPELIB_DANGER_GET( pTD, pComp-ppTypeRefs[i] );
-OSL_ENSURE( pTD-nSize, ### void member? );
+assert( pTD-nSize ); // void member?
 nOffset = newAlignedSize( nOffset, pTD-nSize, 
pTD-nAlignment );
 pComp-pMemberOffsets[i] = nOffset - pTD-nSize;
 TYPELIB_DANGER_RELEASE( pTD );
@@ -436,7 +437,7 @@ void init(
 
 ::typelib_typedescription_register( pReg );
 *ppRef = (typelib_TypeDescriptionReference *)pReg;
-OSL_ASSERT( *ppRef == pReg-pWeakRef );
+

[Libreoffice-commits] .: drawinglayer/source dtrans/source editeng/source

2011-12-23 Thread Ivan Timofeev
 drawinglayer/source/primitive2d/controlprimitive2d.cxx |2 -
 dtrans/source/cnttype/mcnttype.cxx |   18 -
 dtrans/source/test/test_dtrans.cxx |2 -
 editeng/source/editeng/editview.cxx|4 +--
 editeng/source/editeng/impedit2.cxx|2 -
 editeng/source/editeng/impedit4.cxx|2 -
 editeng/source/editeng/textconv.cxx|2 -
 editeng/source/items/frmitems.cxx  |4 +--
 editeng/source/items/textitem.cxx  |6 ++---
 editeng/source/items/xmlcnitm.cxx  |2 -
 editeng/source/misc/hangulhanja.cxx|8 +++
 editeng/source/misc/unolingu.cxx   |8 +++
 editeng/source/rtf/rtfgrf.cxx  |2 -
 editeng/source/uno/unofield.cxx|4 +--
 editeng/source/uno/unonrule.cxx|2 -
 15 files changed, 34 insertions(+), 34 deletions(-)

New commits:
commit b575f4b1a2a2217282cddc995951b350936b47b1
Author: Gustavo Buzzatti Pacheco gbpach...@gmail.com
Date:   Fri Dec 23 10:25:18 2011 -0200

Fix for fdo43460 Part XIV getLength() to isEmpty()

Part XIV
Modules
drawinglayer, dtrans, editeng

diff --git a/drawinglayer/source/primitive2d/controlprimitive2d.cxx 
b/drawinglayer/source/primitive2d/controlprimitive2d.cxx
index 178e170..3d7f8d1 100644
--- a/drawinglayer/source/primitive2d/controlprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/controlprimitive2d.cxx
@@ -69,7 +69,7 @@ namespace drawinglayer
 
 if(aValue = aUnoControlTypeName)
 {
-if(aUnoControlTypeName.getLength())
+if(!aUnoControlTypeName.isEmpty())
 {
 uno::Reference lang::XMultiServiceFactory  
xFactory( comphelper::getProcessServiceFactory() );
 
diff --git a/dtrans/source/cnttype/mcnttype.cxx 
b/dtrans/source/cnttype/mcnttype.cxx
index 66d7376..52fdbe6 100644
--- a/dtrans/source/cnttype/mcnttype.cxx
+++ b/dtrans/source/cnttype/mcnttype.cxx
@@ -140,7 +140,7 @@ OUString SAL_CALL CMimeContentType::getParameterValue( 
const OUString aName ) t
 
 void SAL_CALL CMimeContentType::init( const OUString aCntType ) throw( 
IllegalArgumentException )
 {
-if ( !aCntType.getLength( ) )
+if ( aCntType.isEmpty( ) )
 throw IllegalArgumentException( );
 
 m_nPos = 0;
@@ -200,7 +200,7 @@ void SAL_CALL CMimeContentType::type( void )
 throw IllegalArgumentException( );
 
 // parse
-while(  m_nxtSym.getLength( ) )
+while(  !m_nxtSym.isEmpty( ) )
 {
 if ( isInRange( m_nxtSym, TOKEN ) )
 m_MediaType += m_nxtSym;
@@ -230,7 +230,7 @@ void SAL_CALL CMimeContentType::subtype( void )
 if ( !isInRange( m_nxtSym, TOKEN ) )
 throw IllegalArgumentException( );
 
-while( m_nxtSym.getLength( ) )
+while( !m_nxtSym.isEmpty( ) )
 {
 if ( isInRange( m_nxtSym, TOKEN ) )
 m_MediaSubtype += m_nxtSym;
@@ -252,7 +252,7 @@ void SAL_CALL CMimeContentType::subtype( void )
 
 void SAL_CALL CMimeContentType::trailer( void )
 {
-while( m_nxtSym.getLength( ) )
+while( !m_nxtSym.isEmpty( ) )
 {
 if ( m_nxtSym == OUString(RTL_CONSTASCII_USTRINGPARAM(()) )
 {
@@ -298,7 +298,7 @@ OUString SAL_CALL CMimeContentType::pName( )
 {
 OUString pname;
 
-while( m_nxtSym.getLength( ) )
+while( !m_nxtSym.isEmpty( ) )
 {
 if ( isInRange( m_nxtSym, TOKEN ) )
 pname += m_nxtSym;
@@ -332,7 +332,7 @@ OUString SAL_CALL CMimeContentType::pValue( )
 // remove the last quote-sign
 pvalue = pvalue.copy(0, pvalue.getLength() - 1);
 
-if ( !pvalue.getLength( ) )
+if ( pvalue.isEmpty( ) )
 throw IllegalArgumentException( );
 }
 else if ( isInRange( m_nxtSym, TOKEN ) ) // unquoted pvalue
@@ -356,7 +356,7 @@ OUString SAL_CALL CMimeContentType::quotedPValue( )
 OUString pvalue;
 sal_Bool bAfterQuoteSign = sal_False;
 
-while ( m_nxtSym.getLength( ) )
+while ( !m_nxtSym.isEmpty( ) )
 {
 if ( bAfterQuoteSign  ((m_nxtSym == SPACE)||(m_nxtSym == SEMICOLON) 
) )
 break;
@@ -384,7 +384,7 @@ OUString SAL_CALL CMimeContentType::nonquotedPValue( )
 {
 OUString pvalue;
 
-while ( m_nxtSym.getLength( ) )
+while ( !m_nxtSym.isEmpty( ) )
 {
 if ( isInRange( m_nxtSym, TOKEN ) )
 pvalue += m_nxtSym;
@@ -404,7 +404,7 @@ OUString SAL_CALL CMimeContentType::nonquotedPValue( )
 
 void SAL_CALL CMimeContentType::comment( void )
 {
-while ( m_nxtSym.getLength( ) )
+while ( !m_nxtSym.isEmpty( ) )
 {
 if ( isInRange( m_nxtSym, TOKEN + SPACE ) )
 getSym( );
diff --git a/dtrans/source/test/test_dtrans.cxx 
b/dtrans/source/test/test_dtrans.cxx
index 

[Libreoffice-commits] .: editeng/inc editeng/source starmath/source svx/source sw/source

2011-12-23 Thread August Sodora
 editeng/inc/editeng/editdata.hxx |4 -
 editeng/inc/editeng/editeng.hxx  |2 
 editeng/inc/editeng/editobj.hxx  |6 +-
 editeng/inc/editeng/unoedsrc.hxx |1 
 editeng/source/editeng/editeng.cxx   |5 -
 editeng/source/editeng/editobj.cxx   |8 +-
 editeng/source/editeng/editobj2.hxx  |2 
 editeng/source/editeng/impedit.hxx   |2 
 editeng/source/editeng/impedit5.cxx  |   11 ++-
 editeng/source/uno/unoedhlp.cxx  |   24 +++-
 editeng/source/uno/unofored.cxx  |   67 +---
 starmath/source/accessibility.cxx|   23 +++-
 svx/source/sdr/properties/textproperties.cxx |   25 +++--
 sw/source/filter/ww8/wrtw8esh.cxx|   75 +--
 sw/source/filter/ww8/wrtww8.hxx  |2 
 15 files changed, 90 insertions(+), 167 deletions(-)

New commits:
commit 4d4a67748e945d901f320d9c3af753abb3211efc
Author: August Sodora aug...@gmail.com
Date:   Fri Dec 23 02:30:41 2011 -0500

SV_DECL_VARARR-std::vector

diff --git a/editeng/inc/editeng/editdata.hxx b/editeng/inc/editeng/editdata.hxx
index 4e0467f..2ac8a99 100644
--- a/editeng/inc/editeng/editdata.hxx
+++ b/editeng/inc/editeng/editdata.hxx
@@ -33,8 +33,6 @@
 #include tools/string.hxx
 #include editeng/editengdllapi.h
 
-#include svl/svarray.hxx
-
 class SfxItemSet;
 class SfxPoolItem;
 class SvParser;
@@ -305,8 +303,6 @@ struct EECharAttrib
 xub_StrLen  nEnd;
 };
 
-SV_DECL_VARARR_VISIBILITY( EECharAttribArray, EECharAttrib, 0, 4, 
EDITENG_DLLPUBLIC )
-
 struct MoveParagraphsInfo
 {
 sal_uInt16  nStartPara;
diff --git a/editeng/inc/editeng/editeng.hxx b/editeng/inc/editeng/editeng.hxx
index 88111b3..4c0d5e0 100644
--- a/editeng/inc/editeng/editeng.hxx
+++ b/editeng/inc/editeng/editeng.hxx
@@ -236,7 +236,7 @@ public:
 virtual voidSetParaAttribs( sal_uInt16 nPara, const 
SfxItemSet rSet );
 virtual const SfxItemSet   GetParaAttribs( sal_uInt16 nPara ) const;
 
-voidGetCharAttribs( sal_uInt16 nPara, EECharAttribArray 
rLst ) const;
+voidGetCharAttribs( sal_uInt16 nPara, 
std::vectorEECharAttrib rLst ) const;
 
 SfxItemSet  GetAttribs( sal_uInt16 nPara, sal_uInt16 nStart, 
sal_uInt16 nEnd, sal_uInt8 nFlags = 0xFF ) const;
 SfxItemSet  GetAttribs( const ESelection rSel, sal_Bool 
bOnlyHardAttrib = EditEngineAttribs_All );
diff --git a/editeng/inc/editeng/editobj.hxx b/editeng/inc/editeng/editobj.hxx
index 9834649..e3c9340 100644
--- a/editeng/inc/editeng/editobj.hxx
+++ b/editeng/inc/editeng/editobj.hxx
@@ -34,14 +34,16 @@
 #include rsc/rscsfx.hxx
 #include svl/itemset.hxx
 #include editeng/eeitem.hxx
+#include editeng/editdata.hxx
 #include editeng/editengdllapi.h
 
+#include vector
+
 DBG_NAMEEX( EE_EditTextObject )
 
 class SfxItemPool;
 class SfxStyleSheetPool;
 class SvxFieldItem;
-class EECharAttribArray;
 
 #define EDTOBJ_SETTINGS_ULITEMSUMMATION 0x0001
 #define EDTOBJ_SETTINGS_ULITEMFIRSTPARA 0x0002
@@ -96,7 +98,7 @@ public:
 virtual sal_BoolHasOnlineSpellErrors() const;
 
 virtual sal_BoolHasCharAttribs( sal_uInt16 nWhich = 0 ) const;
-virtual voidGetCharAttribs( sal_uInt16 nPara, EECharAttribArray 
rLst ) const;
+virtual voidGetCharAttribs( sal_uInt16 nPara, 
std::vectorEECharAttrib rLst ) const;
 
 virtual sal_BoolRemoveCharAttribs( sal_uInt16 nWhich = 0 );
 virtual sal_BoolRemoveParaAttribs( sal_uInt16 nWhich = 0 );
diff --git a/editeng/inc/editeng/unoedsrc.hxx b/editeng/inc/editeng/unoedsrc.hxx
index 3f45bae..7f31d37 100644
--- a/editeng/inc/editeng/unoedsrc.hxx
+++ b/editeng/inc/editeng/unoedsrc.hxx
@@ -55,7 +55,6 @@ class SvxViewForwarder;
 class SvxEditViewForwarder;
 class SvxFieldItem;
 class SfxBroadcaster;
-class EECharAttribArray;
 class SvxUnoTextRangeBase;
 
 typedef std::list SvxUnoTextRangeBase*  SvxUnoTextRangeBaseList;
diff --git a/editeng/source/editeng/editeng.cxx 
b/editeng/source/editeng/editeng.cxx
index 0ce3ff2..2964ad4 100644
--- a/editeng/source/editeng/editeng.cxx
+++ b/editeng/source/editeng/editeng.cxx
@@ -97,7 +97,6 @@ using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::linguistic2;
 
-
 DBG_NAME( EditEngine )
 DBG_NAMEEX( EditView )
 
@@ -105,8 +104,6 @@ DBG_NAMEEX( EditView )
 static sal_Bool bDebugPaint = sal_False;
 #endif
 
-SV_IMPL_VARARR( EECharAttribArray, EECharAttrib );
-
 static SfxItemPool* pGlobalPool=0;
 
 // --
@@ -1498,7 +1495,7 @@ const SfxPoolItem EditEngine::GetParaAttrib( sal_uInt16 
nPara, sal_uInt16 nWhic
 return pImpEditEngine-GetParaAttrib( nPara, nWhich );
 }
 
-void EditEngine::GetCharAttribs( sal_uInt16 nPara, EECharAttribArray rLst ) 
const
+void EditEngine::GetCharAttribs( 

[Libreoffice-commits] .: editeng/source

2011-12-23 Thread August Sodora
 editeng/source/misc/svxacorr.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c9f68b6d2356ef81560b5449670b81a1156a5da6
Author: August Sodora aug...@gmail.com
Date:   Fri Dec 23 19:44:48 2011 -0500

Fix the build so that this is recognized as an initializer list

diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index c2d937a..df191c0 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -1644,7 +1644,7 @@ sal_Bool SvxAutoCorrect::CreateLanguageFile( LanguageType 
eLang, sal_Bool bNewFi
 }
 else if( !bNewFile )
 {
-pLastFileTable[eLang] = { std::make_pair(eLang, nAktTime.GetTime()) };
+pLastFileTable[eLang] = { std::make_pair(eLang, nAktTime.GetTime()), };
 }
 return pLists != 0;
 }
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: editeng/source

2011-12-23 Thread David Tardon
 editeng/source/misc/svxacorr.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 93d3f6258f8f061dc53b5e6003de65479c2290ba
Author: David Tardon dtar...@redhat.com
Date:   Sat Dec 24 06:29:30 2011 +0100

make the line work as intended again

At least I suppose memory corruption is not intended behavior .-)

diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index df191c0..f28df9d 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -1644,7 +1644,7 @@ sal_Bool SvxAutoCorrect::CreateLanguageFile( LanguageType 
eLang, sal_Bool bNewFi
 }
 else if( !bNewFile )
 {
-pLastFileTable[eLang] = { std::make_pair(eLang, nAktTime.GetTime()), };
+(*pLastFileTable)[eLang] = nAktTime.GetTime();
 }
 return pLists != 0;
 }
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2011-12-23 Thread David Tardon
 editeng/inc/editeng/svxacorr.hxx |2 +-
 editeng/source/misc/svxacorr.cxx |   13 +
 2 files changed, 6 insertions(+), 9 deletions(-)

New commits:
commit 80e977a34bd6eb1d3d3af849dcf86c5886c15a8f
Author: David Tardon dtar...@redhat.com
Date:   Sat Dec 24 06:38:12 2011 +0100

std::map* - std::map

diff --git a/editeng/inc/editeng/svxacorr.hxx b/editeng/inc/editeng/svxacorr.hxx
index aabc644..e2a3a8c 100644
--- a/editeng/inc/editeng/svxacorr.hxx
+++ b/editeng/inc/editeng/svxacorr.hxx
@@ -209,7 +209,7 @@ class EDITENG_DLLPUBLIC SvxAutoCorrect
 
 // all languages in a table
 SvxAutoCorrLanguageTable_Impl* pLangTable;
-std::mapLanguageType, long* pLastFileTable;
+std::mapLanguageType, long aLastFileTable;
 CharClass* pCharClass;
 
 bool bRunNext;
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index f28df9d..413c509 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -342,7 +342,6 @@ SvxAutoCorrect::SvxAutoCorrect( const String 
rShareAutocorrFile,
 : sShareAutoCorrFile( rShareAutocorrFile ),
 sUserAutoCorrFile( rUserAutocorrFile ),
 pLangTable( new SvxAutoCorrLanguageTable_Impl ),
-pLastFileTable( new std::mapLanguageType, long ),
 pCharClass( 0 ), bRunNext( false ),
 cStartDQuote( 0 ), cEndDQuote( 0 ), cStartSQuote( 0 ), cEndSQuote( 0 )
 {
@@ -359,7 +358,6 @@ SvxAutoCorrect::SvxAutoCorrect( const SvxAutoCorrect rCpy )
 aSwFlags( rCpy.aSwFlags ),
 
 pLangTable( new SvxAutoCorrLanguageTable_Impl ),
-pLastFileTable( new std::mapLanguageType, long ),
 pCharClass( 0 ), bRunNext( false ),
 
 nFlags( rCpy.nFlags  ~(ChgWordLstLoad|CplSttLstLoad|WrdSttLstLoad)),
@@ -374,7 +372,6 @@ SvxAutoCorrect::~SvxAutoCorrect()
 {
 lcl_ClearTable(*pLangTable);
 delete pLangTable;
-delete pLastFileTable;
 delete pCharClass;
 }
 
@@ -1616,8 +1613,8 @@ sal_Bool SvxAutoCorrect::CreateLanguageFile( LanguageType 
eLang, sal_Bool bNewFi
 
 Time nMinTime( 0, 2 ), nAktTime( Time::SYSTEM ), nLastCheckTime( 
Time::EMPTY );
 
-std::mapLanguageType, long::iterator nFndPos = 
pLastFileTable-find(eLang);
-if(nFndPos != pLastFileTable-end() 
+std::mapLanguageType, long::iterator nFndPos = 
aLastFileTable.find(eLang);
+if(nFndPos != aLastFileTable.end() 
(nLastCheckTime.SetTime(nFndPos-second), nLastCheckTime  nAktTime) 
nAktTime - nLastCheckTime  nMinTime)
 {
@@ -1629,7 +1626,7 @@ sal_Bool SvxAutoCorrect::CreateLanguageFile( LanguageType 
eLang, sal_Bool bNewFi
 pLists = new SvxAutoCorrectLanguageLists( *this, sShareDirFile,
 sUserDirFile, eLang );
 pLangTable-Insert( sal_uLong(eLang), pLists );
-pLastFileTable-erase(nFndPos);
+aLastFileTable.erase(nFndPos);
 }
 }
 else if( ( FStatHelper::IsDocument( sUserDirFile ) ||
@@ -1640,11 +1637,11 @@ sal_Bool SvxAutoCorrect::CreateLanguageFile( 
LanguageType eLang, sal_Bool bNewFi
 pLists = new SvxAutoCorrectLanguageLists( *this, sShareDirFile,
 sUserDirFile, eLang );
 pLangTable-Insert( sal_uLong(eLang), pLists );
-pLastFileTable-erase(nFndPos);
+aLastFileTable.erase(nFndPos);
 }
 else if( !bNewFile )
 {
-(*pLastFileTable)[eLang] = nAktTime.GetTime();
+aLastFileTable[eLang] = nAktTime.GetTime();
 }
 return pLists != 0;
 }
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Libreoffice] [REVIEW] invalid ODF fdo#37390 fdo#44073 fdo#44082

2011-12-23 Thread Cedric Bosdonnat
Hi Michael,

On Fri, 2011-12-23 at 00:16 +0100, Michael Stahl wrote:
 proposing the following commits for 3.4.5, as they prevent LO from
 writing invalid ODF:
 
 http://cgit.freedesktop.org/libreoffice/core/commit/?id=c1e1ef80e8428514499b061e00801a6a6298d0b0
 
 http://cgit.freedesktop.org/libreoffice/core/commit/?id=59a5c37d0df9b5612552c4b749191385ca0adc80
 
 with the fix for fdo#44073 LO actually still writes a non-standard
 attribute in ODF 1.2 extended mode, but without doing that older OOo/LO
 versions would lose data because they don't recognize the standard
 attribute that LO writes with the fix.

These patches are OK for me, thanks for the fixes.

--
Cedric

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


[Libreoffice] 3.5.0beta2 - broken desktop menu icons

2011-12-23 Thread Andreas Radke
The .desktop files show invalid menu icon entries here using 
make distro-pack-install. Only the startcenter and writer icons look
good here, the other miss libreoffice prefix:

[andyrtr@workstation64 trunk]$ grep ^Icon 
/home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-*/usr/share/applications/*.desktop
/home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-base/usr/share/applications/libreoffice-base.desktop:Icon=-base
/home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-calc/usr/share/applications/libreoffice-calc.desktop:Icon=-calc
/home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-common/usr/share/applications/libreoffice-startcenter.desktop:Icon=libreoffice-startcenter
/home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-draw/usr/share/applications/libreoffice-draw.desktop:Icon=-draw
/home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-impress/usr/share/applications/libreoffice-impress.desktop:Icon=-impress
/home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-math/usr/share/applications/libreoffice-math.desktop:Icon=-math
/home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-writer/usr/share/applications/libreoffice-writer.desktop:Icon=libreoffice-writer

Is this known?

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


Re: [Libreoffice] [PATCH] Remove options Show preview of fonts and Show font history

2011-12-23 Thread Michael Meeks

On Fri, 2011-12-23 at 00:02 +0100, Cor Nouws wrote:
  Why limit the user's choice?
 
 Well, my oldest joke with OpenOffice.org is, that people always complain 
 about the huge amount of config options, yet at many changed features, 
 new config options were added. (Same must have happened over here by the 
 way.)

Heh :-)

 Now some guys are brave enough to remove options, that apparently are 
 not necessary any more.
 (And sometimes find me 'in their way' complaining ;-) )

I tend to agree that removing pointless options, *particularly* from
the user-interface is an unmitigated good ;-)

What I'd really like to see is an about:config style UI (that doesn't
suck ;-) that lets people see  edit all of the obscure tweakables to
their heart's content: at least for those tweakables that make at least
some sense to some small population of users.

HTH,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


Re: [Libreoffice] 3.5.0beta2 - broken desktop menu icons

2011-12-23 Thread Tomáš Chvátal
2011/12/23 Andreas Radke a.ra...@arcor.de:
 The .desktop files show invalid menu icon entries here using
 make distro-pack-install. Only the startcenter and writer icons look
 good here, the other miss libreoffice prefix:

 [andyrtr@workstation64 trunk]$ grep ^Icon 
 /home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-*/usr/share/applications/*.desktop
 /home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-base/usr/share/applications/libreoffice-base.desktop:Icon=-base
 /home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-calc/usr/share/applications/libreoffice-calc.desktop:Icon=-calc
 /home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-common/usr/share/applications/libreoffice-startcenter.desktop:Icon=libreoffice-startcenter
 /home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-draw/usr/share/applications/libreoffice-draw.desktop:Icon=-draw
 /home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-impress/usr/share/applications/libreoffice-impress.desktop:Icon=-impress
 /home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-math/usr/share/applications/libreoffice-math.desktop:Icon=-math
 /home/andyrtr/arch64/chroots/testing-x86_64/andyrtr/build/pkg/libreoffice-writer/usr/share/applications/libreoffice-writer.desktop:Icon=libreoffice-writer

 Is this known?

 -Andy
 ArchLinux

Already fixed in the branch by Petr.

http://cgit.freedesktop.org/libreoffice/core/commit/?h=libreoffice-3-5id=c3569696294bb264a0c645db12f027d44b4e033f

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


Re: [Libreoffice] [REVIEWED-3-4-5][PUSHED-3-4-5] Reverted - Fix overly zealous check in Zip package consistency

2011-12-23 Thread Petr Mladek
Bjoern Michaelsen píše v Pá 23. 12. 2011 v 01:04 +0100:
 On Fri, Dec 23, 2011 at 12:40:28AM +0100, Michael Stahl wrote:
   Sigh, we had branched off 3-4-5 meanwhile, which needs 3 reviews -
   Michael, Petr, would you want to approve the revert?
  if it really needs that, +1 from me

Yup, it sounds strange. On the other hand, it might make sense to make
sure that we revert the right commit and that we really want to revert
it instead of fixing it properly ;-)

 +1 from me

Thanks all people for review. I have pushed it to the 3-4-5 branch.


Best Regards,
Petr


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


Re: [Libreoffice] [PATCH] Remove options Show preview of fonts and Show font history

2011-12-23 Thread Pedro

Michael Meeks-2 wrote
 
   I tend to agree that removing pointless options, *particularly* from
 the user-interface is an unmitigated good ;-)
 
   What I'd really like to see is an about:config style UI (that doesn't
 suck ;-) that lets people see  edit all of the obscure tweakables to
 their heart's content: at least for those tweakables that make at least
 some sense to some small population of users.
 

I agree with both statements. Optimizing the GUI is good, as long as you
don't go to the extremes of the Ribbon where some superior enlightened GUI
experts decided what you use most (based on averages...)

Having these options hidden or accessible thorough an alternate interface
(like the mozilla about:config) would be the best of both worlds.

Removing options which are already implemented and working doesn't make any
sense. It's the same form of GUI dictatorship as the Ribbon ;)

In the particular case of the Fonts I can see that a user on a low resource
PC would prefer to quickly see a list with the font names instead of waiting
for each font to be drawn... (I'm guessing here, luckily none of my PCs is
THAT low resource, but Fonts are usually a problem under Windows at least)

Regards,
Pedro

--
View this message in context: 
http://nabble.documentfoundation.org/PATCH-Remove-options-Show-preview-of-fonts-and-Show-font-history-tp3607488p3608553.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


Re: [Libreoffice] [PATCH] Remove options Show preview of fonts and Show font history

2011-12-23 Thread Stefan Knorr (Astron)
Hi Michael, Pedro,

On 23 December 2011 11:43, Pedro pedl...@gmail.com wrote:

 Michael Meeks-2 wrote

       I tend to agree that removing pointless options, *particularly* from
 the user-interface is an unmitigated good ;-)

That's the spirit.

       What I'd really like to see is an about:config style UI (that doesn't
 suck ;-) that lets people see  edit all of the obscure tweakables to
 their heart's content: at least for those tweakables that make at least
 some sense to some small population of users.

Right, that's part of the plan, too. We named it the AOP, or Advanced
Options Panel, but it is not specced out yet.


 Removing options which are already implemented and working doesn't make any
 sense. It's the same form of GUI dictatorship as the Ribbon ;)

Options always come at a price, namely that they
a) can clutter the interface
b) make it necessary to check if they still work (and write new code
if they don't any more) and this is only becoming harder the more
options there are.

I would like to take the stand that we should not shy away from
(completely) removing options, if they were introduced only to not
have to think about a good implementation. I will also take the stand
that it is not a problem if LibreOffice became /a bit/ less flexible,
but better overall in consequence.


 In the particular case of the Fonts I can see that a user on a low resource
 PC would prefer to quickly see a list with the font names instead of waiting
 for each font to be drawn... (I'm guessing here, luckily none of my PCs is
 THAT low resource, but Fonts are usually a problem under Windows at least)

I had not yet thought about the performance problem, but you're right,
there is a bit of a problem -- under Win, on a 2.6GHz C2D (I'd say
that's reasonably powerful), the fonts don't appear immediately, but
one after another, so filling the list takes roughly half a second. Is
there anyone who would want to work on optimising that?

Regards,

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


Re: [Libreoffice] [PATCH] Remove options Show preview of fonts and Show font history

2011-12-23 Thread Cor Nouws

Hi Stefan, *,

Stefan Knorr (Astron) wrote (23-12-11 12:06)


Right, that's part of the plan, too. We named it the AOP, or Advanced
Options Panel, but it is not specced out yet.


Look forward to think about that.


I would like to take the stand that we should not shy away from
(completely) removing options, if they were introduced only to not
have to think about a good implementation.

  (+ some might have been useful long time ago)

I will also take the stand
that it is not a problem if LibreOffice became /a bit/ less flexible,
but better overall in consequence.


 \O/


--
 - Cor
 - http://nl.libreoffice.org

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


[Libreoffice] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

--- Comment #242 from Pedro pedl...@gmail.com 2011-12-23 03:12:13 PST ---
I would like to propose Bug 36982.

It should have been a blocker before. It was a regression against 3.3.x and it
causes data loss. The argument that it is not important because it only affects
docx users seems irrelevant to me (many of the cases here are also very
specific) and this one causes data loss.

-- 
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] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 36547, which changed state.

Bug 36547 Summary: Impress: Rendering problems with some .odp files
https://bugs.freedesktop.org/show_bug.cgi?id=36547

   What|Old Value   |New Value

 Resolution|DUPLICATE   |
 Status|RESOLVED|REOPENED

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


Re: [Libreoffice] [REVIEW] invalid ODF fdo#37390 fdo#44073 fdo#44082

2011-12-23 Thread Petr Mladek
Cedric Bosdonnat píše v Pá 23. 12. 2011 v 09:35 +0100:
 Hi Michael,
 
 On Fri, 2011-12-23 at 00:16 +0100, Michael Stahl wrote:
  proposing the following commits for 3.4.5, as they prevent LO from
  writing invalid ODF:
  
  http://cgit.freedesktop.org/libreoffice/core/commit/?id=c1e1ef80e8428514499b061e00801a6a6298d0b0
  
  http://cgit.freedesktop.org/libreoffice/core/commit/?id=59a5c37d0df9b5612552c4b749191385ca0adc80
  
  with the fix for fdo#44073 LO actually still writes a non-standard
  attribute in ODF 1.2 extended mode, but without doing that older OOo/LO
  versions would lose data because they don't recognize the standard
  attribute that LO writes with the fix.
 
 These patches are OK for me, thanks for the fixes.

+1 from me.

I have pushed it to the libreoffice-3-4 branch, see
http://cgit.freedesktop.org/libreoffice/libs-core/commit/?h=libreoffice-3-4id=005f59ac32ce48397fa7df3b4f6586467c7f9bda
http://cgit.freedesktop.org/libreoffice/libs-core/commit/?h=libreoffice-3-4id=09b32d79015b9e4fd933492b495b99ab1cda051d


We need one more approval for 3-4-5 branch.


Best Regards,
Petr


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


[Libreoffice] Writer navigation buttons license

2011-12-23 Thread Maja Djordjevic
Hi everyone,
I hope you're all keeping well :)

I'd like to state that my contributions to Libre Office - Navigation
buttons for Writer, are under MPL 1.1+ / LGPLv3+ license.

Huge greetings from Ireland, and happy holidays

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


[Libreoffice] 陆豪电邮过来的电子邮件

2011-12-23 Thread xyewzuvf11454614
nbsp;街亭的富根强!妈妈摔伤的腿好了么?屈文丽寄来的他好不容易找到的电子书在RAR里,看完转给新开路美福园的鄂钦耀。attachment: 陈舒蔓.RAR___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] RFC Operation Spamzilla (resent to include original -dev list post)

2011-12-23 Thread Bjoern Michaelsen
Hi Rainer,

On Fri, Dec 23, 2011 at 08:34:12AM +0100, Rainer Bielefeld wrote:
 of course I see the problem, but I have absolutely no problem with
 that fact, because I use a query basing on my experience.

Yes, but having to rely on somebody elses experience is a big barrier to
newcomers and we should keep needed knowledge as open and as broad as possible.

 I recommend only to modify bugs what are NEW and fulfill some
 additional criteria (no user with QA-Experience is involved), what
 leads to this query:

+https://bugs.freedesktop.org/buglist.cgi?type1-0-0=notsubstringtype0-1-0=nowordssubstrlist_id=27519field0-1-0=commenterfield0-0-0=commenterquery_based_on=LibO_Unconfirmed_4emailtype1=exactch
+fieldto=2011-10-17query_format=advancedemailassigned_to1=1chfield=%5BBug%20creation%5Dvalue0-2-0=jeffdchang%40gmail.com%20%20yfjiang%40novell.comchfieldfrom=2010-10-01value0-1-0=andre.schnabel
+%40gmx.net%20drew%40baseanswers.com%20%20%20maand%40gmx.de%20%20wope%40gmx.com%20%20baur.steven%40googlemail.com%20%20dmx404%40gmail.comvalue1-0-0=CONFIRMEDbug_status=NEWfield0-2-0=commenteremai
+l1=libreoffice-bugs%40lists.freedesktop.orgtype0-0-0=nowordssubstrvalue0-0-0=LibreOffice%40bielefeldundbuss.de%20%20%20detective.conan.1412%40gmail.com%20%20iamtester8%40gmail.com%20jbf.faure%40or
+ange.fr%20%20jr%40natural-computing.de%20%20fyvaao%40ya.ru%20%20vitriol_vitriol%40katamail.com%20%20gerard.fargeot%40orange.fr%20%20bugs%40eikota.detype0-2-0=nowordssubstrfield1-0-0=status_whiteb
 oardproduct=LibreOffice

Yes, actually I want to use a query like that. Up to now I used the one at:

 http://wiki.documentfoundation.org/BugReport_Details#Whiteboard

but I will go with the one from the BugTriage page now.

 And -  may be you will get some indignant comments because of Bugs
 30876, 31022, 31055, 33232  ;-)

Even if there are ~20-50 bugs that would need to be changed back, it is a lot
better than having 2000 (of 6400 total) in an inconsistent state.

 Please involve libreoffice...@lists.freedesktop.org into such discussions!

Why arent you on nabble.documentfoundation.org btw? I keep forgetting about
that list for that reason.

Best,

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


[Libreoffice] [PATCH] Removed copyright notice printing from regular execution of FCFGMerge.

2011-12-23 Thread Marcel Metz
Hello lo-devs,


this patch reduces the copyright notice noise of the FCFGMerge tool.

regards Marcel

---
 l10ntools/source/filter/merge/FCFGMerge.java |3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)


diff --git a/l10ntools/source/filter/merge/FCFGMerge.java b/l10ntools/source/filter/merge/FCFGMerge.java
index 2c2f35b..ca1959b 100644
--- a/l10ntools/source/filter/merge/FCFGMerge.java
+++ b/l10ntools/source/filter/merge/FCFGMerge.java
@@ -56,8 +56,6 @@ public class FCFGMerge
 
 public static void main(java.lang.String[] sCmdLine)
 {
-FCFGMerge.printCopyright();
-
 // create log object in default mode WARNINGS
 // If a command line parameter indicates another
 // level - change it!
@@ -77,6 +75,7 @@ public class FCFGMerge
 // help requested?
 if (aCfg.isHelp())
 {
+FCFGMerge.printCopyright();
 FCFGMerge.printHelp();
 System.exit(-1);
 }

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


Re: [Libreoffice] [REVIEW 3-4-5] untranslated menu items

2011-12-23 Thread Andras Timar
2011/12/23 Petr Mladek pmla...@suse.cz:
 David Tardon píše v Čt 22. 12. 2011 v 15:16 +0100:
 Hi all,

 commit 7248aaed7aca6c241683f6d83bb6caa00c447b0d reverts earlier commit,
 that caused some menu items to be left untranslated. If you are
 wondering why it is so, read my comment (I hope it is understandable) in
 commit a6511b9d9a3f13835510a9caffc837829b206d14 :-)

 How to reproduce:
 1. start writer in your favorite locale
 2. select View-Data Sources from menu
 3. open a table
 4. right click on a cell. A popup menu with just one item--Copy--is
    opened. The item is not translated.

 It makes perfect sense and builds here. I guess that the original
 modification solved a build problem but it was not the correct solution.

 I have pushed it to libreoffice-3-4 branch, see
 http://cgit.freedesktop.org/libreoffice/libs-core/commit/?h=libreoffice-3-4id=fd24f1c0bb271d8e5aa36e6ac39e6f435976b90f

 We need two more approvals for the 3-4-5 branch. It would be great if
 Fridrich or Andras might double check build on Windows.


It builds on Windows (I tried only incremental build) and I confirm
that the issue is fixed. +1 from me.

Best regards,
Andras
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] [REVIEW] bug#36874 to be patched in 3.4.5 as well?

2011-12-23 Thread Winfried Donkers
Your code looks definitely better than the original one. Well, I am
still not sure about the calculation. It makes perfect sense when I
imagine the paper with blank labels. On the other hand,
please look at http://download.go-oo.org/tmp/labels.png. 

I looked at a lot of (blank) labels and also came to the conclusion that the 
definition of the labels leaves room for interpretation.
My calculation is based on the assumption (presumption?) that the
page containing the labels is symmetrical, i.e. rotating the page
180 degrees is not a problem, left margine equals right margin and
top margin equals bottom margin.

It would be much better if the label-definitions contain all dimensions, i.e.
should include either right margin and bottom margin or the page size.
That was too great a change for me to commit without proper discussion.

Have you tested your code with real label printing?
Is just the visualization wrong in LO?
I have not looked at the visualisation/UI, but at the page size as shown in
format-page and at the printer behaviour (the printer at our office wants exact 
A4 definiton, otherwise it asks for custom paper sheets).

PS: Just a nitpicking. I did not use the ?: operator in my example. I
think that it was not ideal in this case because you cutpasted the long
calculation, so it was hard to read and prone to a typo ;-)

I'm the last to suggest my code is ideal or even close to ideal ;)

Should you wish further information (hacking ?), feel free to ask. Currently I 
am
wrestling with easyhack 34425, but should I get that right, I can have a go at 
further
improvements of labels.
For users, label printing is mostly troublesome, so any extra user-friendliness
of the application is a plus.

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


[Libreoffice] [PATCH] Fix for fdo43460 Part XIV getLength() to isEmpty()

2011-12-23 Thread Gustavo Pacheco
Hi!

Partial fix for Easy Hack FDO43460 (part XIV) for review. Mentoring by
Olivier Hallot (thanks for the tips Olivier!).

Part XVI
Modules drawinglayer, dtrans and editeng

Best regards
Gustavo Pacheco.
From cc89c387a1f9a1e1f338b33819b0c32d91f6cd2e Mon Sep 17 00:00:00 2001
From: Gustavo Buzzatti Pacheco gbpach...@gmail.com
Date: Fri, 23 Dec 2011 10:25:18 -0200
Subject: [PATCH] 
Fix for fdo43460 Part XIV getLength() to isEmpty()

Part XIV
Modules
drawinglayer, dtrans, editeng
---
 .../source/primitive2d/controlprimitive2d.cxx  |2 +-
 dtrans/source/cnttype/mcnttype.cxx |   18 +-
 dtrans/source/test/test_dtrans.cxx |2 +-
 editeng/source/editeng/editview.cxx|4 ++--
 editeng/source/editeng/impedit2.cxx|2 +-
 editeng/source/editeng/impedit4.cxx|2 +-
 editeng/source/editeng/textconv.cxx|2 +-
 editeng/source/items/frmitems.cxx  |4 ++--
 editeng/source/items/textitem.cxx  |6 +++---
 editeng/source/items/xmlcnitm.cxx  |2 +-
 editeng/source/misc/hangulhanja.cxx|8 
 editeng/source/misc/unolingu.cxx   |8 
 editeng/source/rtf/rtfgrf.cxx  |2 +-
 editeng/source/uno/unofield.cxx|4 ++--
 editeng/source/uno/unonrule.cxx|2 +-
 15 files changed, 34 insertions(+), 34 deletions(-)

diff --git a/drawinglayer/source/primitive2d/controlprimitive2d.cxx b/drawinglayer/source/primitive2d/controlprimitive2d.cxx
index 178e170..3d7f8d1 100644
--- a/drawinglayer/source/primitive2d/controlprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/controlprimitive2d.cxx
@@ -69,7 +69,7 @@ namespace drawinglayer
 
 if(aValue = aUnoControlTypeName)
 {
-if(aUnoControlTypeName.getLength())
+if(!aUnoControlTypeName.isEmpty())
 {
 uno::Reference lang::XMultiServiceFactory  xFactory( comphelper::getProcessServiceFactory() );
 
diff --git a/dtrans/source/cnttype/mcnttype.cxx b/dtrans/source/cnttype/mcnttype.cxx
index 66d7376..52fdbe6 100644
--- a/dtrans/source/cnttype/mcnttype.cxx
+++ b/dtrans/source/cnttype/mcnttype.cxx
@@ -140,7 +140,7 @@ OUString SAL_CALL CMimeContentType::getParameterValue( const OUString aName ) t
 
 void SAL_CALL CMimeContentType::init( const OUString aCntType ) throw( IllegalArgumentException )
 {
-if ( !aCntType.getLength( ) )
+if ( aCntType.isEmpty( ) )
 throw IllegalArgumentException( );
 
 m_nPos = 0;
@@ -200,7 +200,7 @@ void SAL_CALL CMimeContentType::type( void )
 throw IllegalArgumentException( );
 
 // parse
-while(  m_nxtSym.getLength( ) )
+while(  !m_nxtSym.isEmpty( ) )
 {
 if ( isInRange( m_nxtSym, TOKEN ) )
 m_MediaType += m_nxtSym;
@@ -230,7 +230,7 @@ void SAL_CALL CMimeContentType::subtype( void )
 if ( !isInRange( m_nxtSym, TOKEN ) )
 throw IllegalArgumentException( );
 
-while( m_nxtSym.getLength( ) )
+while( !m_nxtSym.isEmpty( ) )
 {
 if ( isInRange( m_nxtSym, TOKEN ) )
 m_MediaSubtype += m_nxtSym;
@@ -252,7 +252,7 @@ void SAL_CALL CMimeContentType::subtype( void )
 
 void SAL_CALL CMimeContentType::trailer( void )
 {
-while( m_nxtSym.getLength( ) )
+while( !m_nxtSym.isEmpty( ) )
 {
 if ( m_nxtSym == OUString(RTL_CONSTASCII_USTRINGPARAM(()) )
 {
@@ -298,7 +298,7 @@ OUString SAL_CALL CMimeContentType::pName( )
 {
 OUString pname;
 
-while( m_nxtSym.getLength( ) )
+while( !m_nxtSym.isEmpty( ) )
 {
 if ( isInRange( m_nxtSym, TOKEN ) )
 pname += m_nxtSym;
@@ -332,7 +332,7 @@ OUString SAL_CALL CMimeContentType::pValue( )
 // remove the last quote-sign
 pvalue = pvalue.copy(0, pvalue.getLength() - 1);
 
-if ( !pvalue.getLength( ) )
+if ( pvalue.isEmpty( ) )
 throw IllegalArgumentException( );
 }
 else if ( isInRange( m_nxtSym, TOKEN ) ) // unquoted pvalue
@@ -356,7 +356,7 @@ OUString SAL_CALL CMimeContentType::quotedPValue( )
 OUString pvalue;
 sal_Bool bAfterQuoteSign = sal_False;
 
-while ( m_nxtSym.getLength( ) )
+while ( !m_nxtSym.isEmpty( ) )
 {
 if ( bAfterQuoteSign  ((m_nxtSym == SPACE)||(m_nxtSym == SEMICOLON) ) )
 break;
@@ -384,7 +384,7 @@ OUString SAL_CALL CMimeContentType::nonquotedPValue( )
 {
 OUString pvalue;
 
-while ( m_nxtSym.getLength( ) )
+while ( !m_nxtSym.isEmpty( ) )
 {
 if ( isInRange( m_nxtSym, TOKEN ) )
 pvalue += m_nxtSym;
@@ -404,7 +404,7 @@ OUString SAL_CALL CMimeContentType::nonquotedPValue( )
 
 void SAL_CALL CMimeContentType::comment( void )
 {
-while ( m_nxtSym.getLength( ) )
+while ( !m_nxtSym.isEmpty( ) )
 {
 

Re: [Libreoffice] [PATCH][PUSHED} Removed copyright notice printing from regular execution of FCFGMerge.

2011-12-23 Thread Norbert Thiebaud
On Fri, Dec 23, 2011 at 9:16 AM, Marcel Metz mm...@adrian-broher.net wrote:
 Hello lo-devs,


 this patch reduces the copyright notice noise of the FCFGMerge tool.

Thanks a lot for that... that was annoying indeed.

Pushed

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


Re: [Libreoffice] [PUSHED][PATCH] Fix for fdo43460 Part XIV getLength() to isEmpty()

2011-12-23 Thread Ivan Timofeev

Hi Gustavo,

23.12.2011 21:21, Gustavo Pacheco пишет:

Hi!

Partial fix for Easy Hack FDO43460 (part XIV) for review. Mentoring by
Olivier Hallot (thanks for the tips Olivier!).

Part XVI
Modules drawinglayer, dtrans and editeng


Looks nice for me, but

-if (aLocale.Language.getLength() || 
aLocale.Country.getLength())

+if (!(aLocale.Language.isEmpty() || aLocale.Country.isEmpty()))

is wrong - (!A || !B) = !(A  B), but since I personally don't like 
negators outside a compound condition, I changed it to the first variant.


Pushed to master:
http://cgit.freedesktop.org/libreoffice/core/commit/?id=b575f4b1a2a2217282cddc995951b350936b47b1

Thank you Gustavo, thank you Olivier!

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


Re: [Libreoffice] feature/gbuild_cppuhelper

2011-12-23 Thread Stephan Bergmann
Just to let you know that the feature/gbuild_cppuhelper branch compiled 
(up through smoketestoo_native) on unxmacxi --enable-dbgutil now, when 
cherry-picked on top of master 
http://cgit.freedesktop.org/libreoffice/core/commit/?id=c9bc4a04064f15906ab94cd6c0b175609f3a2ad2 
rtl::OString::copy with count too large raises assert.


An additional problem was that cppuhelper depends on C++ headers for 
certain UNO types to be generated with cppumaker -C (comprehensive), 
which leads to inline cppu_detail_getUnoType function definitions being 
emitted with bodies differing from those emitted when cppumaker is 
called without -C.  This violation of ODR used to go unnoticed, due to 
cppuhelper reducing its set of exported functions via map files (so that 
calls to cppu_detail_getUnoType were statically bound to the correct 
versions within the cppuhelper library).  Now, however, when cppuhelper 
symbols are no longer reduced (at least on Mac OS X and Windows), this 
causes cppuhelper to pick wrong definitions of the 
cppu_detail_getUnoType functions from other libraries (from cppumaker 
invocations without -C, which require an already bootstrapped UNO 
runtime, which is not the case when cppuhelper bootstraps UNO, so those 
calls fail to work).


As a temporary workaround, 
http://cgit.freedesktop.org/libreoffice/core/commit/?h=feature/gbuild_cppuhelperid=3c92f54309df6b8b0008993962719e2d9ae7b94d 
Temporary hack around cppu_detail_getCppuType variants violating ODR. 
on the feature/gbuild_cppuhelper branch now causes cppumaker to *always* 
emit all the types needed during cppuhelper bootstrap as if -C was 
specified.  This should be revisited when types.rdb (and the way UNO 
type information is represented in the C++ binding) is reviewed -- which 
is planned for early next year, anyway.


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


[Libreoffice] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

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

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #243 from Björn Michaelsen bjoern.michael...@canonical.com 
2011-12-23 11:44:00 PST ---
[This is an automated message.]
This bug was filed before the changes to Bugzilla on 2011-10-16. Thus it
started right out as NEW without ever being explicitly confirmed. The bug is
changed to state NEEDINFO for this reason. To move this bug from NEEDINFO back
to NEW please check if the bug still persists with the 3.5.0 beta1 or beta2
prereleases.
Details on how to test the 3.5.0 beta1 can be found at:
http://wiki.documentfoundation.org/QA/BugHunting_Session_3.5.0.-1

more detail on this bulk operation:
http://nabble.documentfoundation.org/RFC-Operation-Spamzilla-tp3607474p3607474.html

-- 
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] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #244 from manj_k courrier.oou.fr@googlemail.com 2011-12-23 
12:45:10 PST ---
.

-- 
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


Re: [Libreoffice] c++ sample for calc add-on

2011-12-23 Thread Lars Callenbach
Dear Michael,

thank you for your hints and for your offer. After reading the comments I went 
back to the beginning and startet with a simple setup. The calc add-on 
(quantlib plugin for quantlib 1.1) has many dependent libraries - some 
statically and some dynamically linked. In the simplified setup I have seen 
that I have to change one remaining statically linked library to the 
corresponding dynamic one - the plugin works fine (under Windows and 
Linux/amd64). 

Thanks a lot,
  Lars

 Original-Nachricht 
 Datum: Mon, 19 Dec 2011 12:41:12 +
 Von: Michael Meeks michael.me...@suse.com
 An: Lars Callenbach lars.callenb...@gmx.de
 CC: libreoffice@lists.freedesktop.org
 Betreff: Re: [Libreoffice] c++ sample for calc add-on

 Hi Lars,
 
 On Sat, 2011-12-17 at 21:33 +0100, Lars Callenbach wrote:
  I have a template for the quantlib addin which works for OO3.2.
  Unfortunately it does not work for LibreOffice-3.4. Does anybody have
  a template with necessary interface functions in c++ for LO-3.4? I
  have looked at the c++ examples in the SDK without success. Using the
  ideas of the java examples did not work. At the moment the plugin
  crashes LO if I try to insert a function.
 
   Sounds nasty; when you say 'insert a function' - you're wanting to add
 a function to calc ? if so the code in 'scaddins' is prolly best
 practise, but of course if it worked with OO.o 3.2 it should work with
 LibO 3.3+ etc. Having said that we got stricter on XML validation for
 various config files  so on.
 
  By the way: I have to replace the onboard libstdc++ in ure-link/lib by
  the system libstdc++ to use other libraries. Why is there on old
  libstdc++?
 
   This may be related to your problems I guess. The old libstdc++ is
 there to support old extensions that compiled against that, presumably
 that became part of our C++ ABI at some stage.
 
   Do you have some code to play with / test ? and/or a stack trace and/or
 more details ? Also - we really prefer to put useful functionality into
 the core of LibreOffice so more users can get at it - would that make
 sense for your feature ?
 
   Thanks,
 
   Michael.
 
 -- 
 michael.me...@suse.com  , Pseudo Engineer, itinerant idiot
 
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice

-- 
Empfehlen Sie GMX DSL Ihren Freunden und Bekannten und wir
belohnen Sie mit bis zu 50,- Euro! https://freundschaftswerbung.gmx.de
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 40482, which changed state.

Bug 40482 Summary: CONFIGURATION: Formatting aids - displayed nonprinting 
characters become unchecked during printing and PDF export
https://bugs.freedesktop.org/show_bug.cgi?id=40482

   What|Old Value   |New Value

 Resolution|FIXED   |
 Status|RESOLVED|REOPENED

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


[Libreoffice] [Bug 37361] LibreOffice 3.5 most annoying bugs

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361

Bug 37361 depends on bug 40482, which changed state.

Bug 40482 Summary: CONFIGURATION: Formatting aids - displayed nonprinting 
characters become unchecked during printing and PDF export
https://bugs.freedesktop.org/show_bug.cgi?id=40482

   What|Old Value   |New Value

 Resolution|FIXED   |
 Status|RESOLVED|REOPENED

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


Re: [Libreoffice] RFC Operation Spamzilla (resent to include original -dev list post)

2011-12-23 Thread Bjoern Michaelsen
On Fri, Dec 23, 2011 at 01:32:25PM +0100, Bjoern Michaelsen wrote:
 Yes, actually I want to use a query like that. Up to now I used the one at:
 
  http://wiki.documentfoundation.org/BugReport_Details#Whiteboard
 
 but I will go with the one from the BugTriage page now.
 
  And -  may be you will get some indignant comments because of Bugs
  30876, 31022, 31055, 33232  ;-)
 
 Even if there are ~20-50 bugs that would need to be changed back, it is a lot
 better than having 2000 (of 6400 total) in an inconsistent state.

Done. Next step would be removing all the CONFIRMED, UNCONFIRMED cruft in
Whiteboard Status, as it is now:

- redundant
- obsolete
- confusing to newcomers

Best,

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


[Libreoffice] Problem Building - NSS Depedency

2011-12-23 Thread Marc-André Laverdière
I have  been plagued with this problem for a while now. Whether I use
system nss libs or not, the result is the same.

I copy-pasted the results here: http://libreoffice.pastebin.ca/2096084

I feel like there is a linker option missing, but I can't make sense of the
makefiles to figure out where to put it.

Marc-André LAVERDIÈRE
Perseverance must finish its work so that you may be mature and complete,
not lacking anything. -James 1:4
http://asimplediscipleslife.blogspot.com/
mlaverd.theunixplace.com
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] Calc : add carriage return via Ctrl+Enter in the Formula bar

2011-12-23 Thread Mat M

Hello Noel,

Le Mon, 12 Dec 2011 16:27:29 +0100, Noel Power nopo...@suse.com a écrit:


On 12/12/11 14:39, Maxime de Roucy wrote:

Hi

I checked with a recent master build on Archlinux and it works
perfectly :-).
I also checked with the 3.5 beta on Windows XP but the behaviour of Ctrl
+Enter changed. Now it switch the auto-wrap mode.
I don't know if it's normal or not ...

It is intentional, since now it displays multiple lines ( even if there  
is only space for 1 )


It is not related. Auto-wrap tells the text to not overlap the next cell  
on the right. I may want to have multiple lines in my cell and still want  
to overlap next cells rather than having it wrapping.

I think once 3.5 is release, some issue will be raised for this.

My 2 cents.

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


Re: [Libreoffice] RFC Operation Spamzilla (resent to include original -dev list post)

2011-12-23 Thread Bjoern Michaelsen
Hi all,

On Fri, Dec 23, 2011 at 10:56:08PM +0100, Bjoern Michaelsen wrote:
 Done. Next step would be removing all the CONFIRMED, UNCONFIRMED cruft in
 Whiteboard Status ...

Also done. Please refrain from using Keyword NEEDINFO and Whiteboard Status
CONFIRMED, infoprovider: and UNCONFIRMED, and use the bug status instead:

- UNCONFIRMED and NEEDINFO are both considered unconfirmed.
- NEW is now considered confirmed.
- instead of using infoprovider, simply put the provider in a bug comment and
  set the state to NEEDINFO. If you want to be very explicit about the provider
  assign the bug to the one who needs to provide the info -- there is no rule
  that only developers are allowed in the assign_to field. ;)

It would be great, if the localized wiki pages about bug triage could be
updated accordingly.

Best,

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


[Libreoffice] [PATCH] Fix for bug fdo#44110, New Math symbols issues in Windows

2011-12-23 Thread Olivier Hallot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Please find the patch attached in bug 44110, together with the
description of the issue and fix.

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

Thanks you
- -- 
Olivier Hallot
Founder, Board of Directors Member - The Document Foundation
LibreOffice translation leader for Brazilian Portuguese
+55-21-8822-8812
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJO9TVCAAoJEJp3R7nH3vLxLXIH/R8C4Y8d1BrDO8tpkpk6ODTL
feNUhobIHpcLZN/sFTwj4X1i/cGVGXUBtZ7DWUYKXyFKoQaiLI8kC+WXJ2tldusU
zc71qOumVCuYwhxBCkf3vnePY1g+iYbTt9jxWjP6n0uNXtp57aKx6LI1Nba/XGdl
Q8ikPOzByZSq5ryv/czuJufsDxhZZQgU9NkGfb8DeAOM3TL4ieMo5Kgs6MgnbUmU
sEW3FMAW/SwLWGHLIvAwqaoYjOvT+7Tytv8sGQE9KrTBP3d97FxQ5zu7TWW+Tewu
0B0Zh79sj4tQ13hCvdF6rOp2ORLB07Ms+aDSBam1TW0kW8IrRcVY77C0bay+Ed8=
=8J+g
-END PGP SIGNATURE-
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] LibreOffice for Linux on Porteus V1.0 (32bit)?

2011-12-23 Thread RamonTavarez
Hi:

I've use the portable version of LibreOffice for Windows OS, but does anyone
knows if LibreOffice for Linux can be installed and run on the Linux's
portable version: Porteus?

I want to use LibO on that OS (Linux on a Pendrive), but I don't know if
it's possible, or wath to do to make it possible.

Thanks in  advance for your help.

Ramon E. Tavarez

--
View this message in context: 
http://nabble.documentfoundation.org/LibreOffice-for-Linux-on-Porteus-V1-0-32bit-tp3610036p3610036.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


Re: [Libreoffice] LibreOffice for Linux on Porteus V1.0 (32bit)?

2011-12-23 Thread John B
Ramon,

As I understand it, Porteus is a derivative of Slackware 13.37, so a
package built on a Slackware box should work just fine. Eric Hameleers
built a package of LibreOffice 3.4.4 against Slackware 13.37. You can
learn more about it here:
http://alien.slackbook.org/blog/libreoffice-3-4-4/

Good luck!

John Babiak
johnb...@gmail.com

On Fri, Dec 23, 2011 at 11:53 PM, RamonTavarez ramontava...@gmail.com wrote:
 Hi:

 I've use the portable version of LibreOffice for Windows OS, but does anyone
 knows if LibreOffice for Linux can be installed and run on the Linux's
 portable version: Porteus?

 I want to use LibO on that OS (Linux on a Pendrive), but I don't know if
 it's possible, or wath to do to make it possible.

 Thanks in  advance for your help.

 Ramon E. Tavarez

 --
 View this message in context: 
 http://nabble.documentfoundation.org/LibreOffice-for-Linux-on-Porteus-V1-0-32bit-tp3610036p3610036.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 mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice-qa] [Libreoffice] RFC Operation Spamzilla

2011-12-23 Thread Alexander Thurgood
Hi Rainer,



Le 23/12/11 08:34, Rainer Bielefeld a écrit :
 If you want to do the bulk change, you should avoid to change hundreds
 of Really NEW old bugs to NEEDINFO.

 I recommend only to modify bugs what are NEW and fulfill some
 additional criteria (no user with QA-Experience is involved), what
 leads to this query:
 https://bugs.freedesktop.org/buglist.cgi?type1-0-0=notsubstringtype0-1-0=nowordssubstrlist_id=27519field0-1-0=commenterfield0-0-0=commenterquery_based_on=LibO_Unconfirmed_4emailtype1=exactchfieldto=2011-10-17query_format=advancedemailassigned_to1=1chfield=%5BBug%20creation%5Dvalue0-2-0=jeffdchang%40gmail.com%20%20yfjiang%40novell.comchfieldfrom=2010-10-01value0-1-0=andre.schnabel%40gmx.net%20drew%40baseanswers.com%20%20%20maand%40gmx.de%20%20wope%40gmx.com%20%20baur.steven%40googlemail.com%20%20dmx404%40gmail.comvalue1-0-0=CONFIRMEDbug_status=NEWfield0-2-0=commenteremail1=libreoffice-bugs%40lists.freedesktop.orgtype0-0-0=nowordssubstrvalue0-0-0=LibreOffice%40bielefeldundbuss.de%20%20%20detective.conan.1412%40gmail.com%20%20iamtester8%40gmail.com%20jbf.faure%40orange.fr%20%20jr%40natural-computing.de%20%20fyvaao%40ya.ru%20%20vitriol_vitriol%40katamail.com%20%20gerard.fargeot%40orange.fr%20%20bugs%40eikota.detype0-2-0=nowordssubstrfield1-0-0=status_whiteb

 oardproduct=LibreOffice

This query returns at least 2 results for which I am the original poster
and which you would appear to deem (from the comments made in brackets)
that I have no QA experience, so there is an error in there somewhere,
unless I have misunderstood what you are saying.




Alex

___
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 43714] VIEWING Context Menu: Checkmarks and radio button dots misaligned

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43714

Tor Lillqvist tlillqv...@suse.com changed:

   What|Removed |Added

 AssignedTo|tlillqv...@suse.com |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #3 from Tor Lillqvist tlillqv...@suse.com 2011-12-23 00:16:59 PST 
---
Don't think it is useful to have it assigned to me as that might make people
think I would be actively working on it...

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


[Libreoffice-bugs] [Bug 43907] Libreoffice calc crashes when reordering tabs.

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43907

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE

--- Comment #5 from markus.mohrh...@googlemail.com 2011-12-23 00:21:38 UTC ---


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

-- 
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 44088] New: Problem with opening file xlm 2003 with formula

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44088

 Bug #: 44088
   Summary: Problem with opening file xlm 2003 with formula
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: k...@ukr.net


Created attachment 54739
  -- https://bugs.freedesktop.org/attachment.cgi?id=54739
xml 2003 file with error

The problem with the formulas in cells E7, F7. 156 and 157 lines of file.

error in row 156-157 xml file.
 Cell ss:StyleID=S06 ss:Formula==Sum(R[-3]C[0]:R[-1]C[0]) /
 Cell ss:StyleID=S06 ss:Formula==Sum(R[-3]C[0]:R[-1]C[0]) /

Style ss:ID=S06
Font ss:FontName=Tahoma ss:Size=11 ss:Color=#00 /
Alignment ss:Vertical=Bottom /
Borders
Border ss:Position=Left ss:LineStyle=Continuous
ss:Weight=1 /
Border ss:Position=Top ss:LineStyle=Continuous
ss:Weight=1 /
Border ss:Position=Right ss:LineStyle=Continuous
ss:Weight=1 /
Border ss:Position=Bottom ss:LineStyle=Continuous
ss:Weight=1 /
/Borders
/Style

if I add a new style S07, and replace style one  of cells with formula, I can
see result of calculation

Style ss:ID=S07
Font ss:FontName=Tahoma ss:Size=11 ss:Color=#00
ss:Bold=1 /
Alignment ss:Vertical=Bottom /
Borders
Border ss:Position=Left ss:LineStyle=Continuous
ss:Weight=1 /
Border ss:Position=Top ss:LineStyle=Continuous
ss:Weight=1 /
Border ss:Position=Right ss:LineStyle=Continuous
ss:Weight=1 /
Border ss:Position=Bottom ss:LineStyle=Continuous
ss:Weight=1 /
/Borders
/Style


 Cell ss:StyleID=S07 ss:Formula==Sum(R[-3]C[0]:R[-1]C[0]) /
 Cell ss:StyleID=S06 ss:Formula==Sum(R[-3]C[0]:R[-1]C[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 44089] New: Problem with opening file xlm 2003 with DateTime value

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44089

 Bug #: 44089
   Summary: Problem with opening file xlm 2003 with DateTime value
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: k...@ukr.net


Created attachment 54740
  -- https://bugs.freedesktop.org/attachment.cgi?id=54740
xml 2003 file with error

I have a problem with cells I4 and k4. I wrote a DateTime value in thees Cells.
But, when I try to open this file, I can see the Time Path of DateTime value in
cells I4 and k4

-- 
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 43982] Standard Filter delivers no lines

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43982

GerardF gerard.farg...@orange.fr changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||FIXED
 CC||gerard.farg...@orange.fr

--- Comment #3 from GerardF gerard.farg...@orange.fr 2011-12-23 01:45:41 PST 
---
The patch for https://bugs.freedesktop.org/show_bug.cgi?id=43831 also fixed
this issue.
Works fine with 3.5.0 beta2.

-- 
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 40809] [FORMULA] =HYPERLINK function does not accept external reference as 2nd argument

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40809

--- Comment #1 from Maxime de Roucy maxime.dero...@linagora.com 2011-12-23 
02:11:52 PST ---
Some additional informations :

If data.ods#$Planilha1.A1 is a number, the following works :
=HYPERLINK(file:///C:/Documents and Settings/Olivier
Hallot/Desktop/123/data.ods;'file:///C:/Documents and Settings/Olivier
Hallot/Desktop/123/data.ods'#$Planilha1.A1 + 0)

If data.ods#$Planilha1.A1 is text, the following works :
=HYPERLINK(file:///C:/Documents and Settings/Olivier
Hallot/Desktop/123/data.ods;SUPPRESPACE('file:///C:/Documents and
Settings/Olivier
Hallot/Desktop/123/data.ods'#$Planilha1.A1))

You can use another function than SUPPRESPACE...

-- 
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 44070] Not able to dock the navigator over the systlist on screen

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44070

--- Comment #9 from Andreas G. andreas.g...@hotmail.de 2011-12-23 02:14:52 
PST ---
@manj_k

Is ist OK, when you reopen this report? Because I can't write so detaillied in
english (it is not my native 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 43932] Paper tray setting are not accepted File - Print...

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43932

--- Comment #1 from Clément P. clement.paill...@sesame.fr 2011-12-23 02:40:35 
PST ---
Reproduced the same problem on Mandriva 2008 (x64), LibreOffice 3.4.4 (340m1
Build:402).

-- 
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 44075] mysql-connector-ooo-1.0.1 does not work

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44075

--- Comment #1 from Boudi bo...@clocked.eu 2011-12-23 02:45:26 PST ---
Also important for connecting MariaDB!

-- 
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 35673] LibreOffice 3.4 most annoying bugs

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 43868, which changed state.

Bug 43868 Summary: FILEOPEN document saved with password: correct password not 
recognized
https://bugs.freedesktop.org/show_bug.cgi?id=43868

   What|Old Value   |New Value

 Resolution||FIXED
 Status|ASSIGNED|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 44090] New: Wrong language in Solver option window - Polish

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44090

 Bug #: 44090
   Summary: Wrong language in Solver option window - Polish
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.0 Beta2
  Platform: All
OS/Version: All
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: manveru1...@gmail.com


Created attachment 54741
  -- https://bugs.freedesktop.org/attachment.cgi?id=54741
Screenshot of solver

In Calc's Solver option window, options are visible in french, not Polish.

-- 
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 43460] Replace rtl::OUString getLength()==0 with isEmpty() etc.

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43460

--- Comment #20 from Olivier Hallot olivier.hal...@documentfoundation.org 
2011-12-23 02:56:31 PST ---
Module 

Extensions

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

-- 
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 44090] Wrong language in Solver option window - Polish

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44090

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

   What|Removed |Added

  Component|Spreadsheet |Localisation

-- 
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 42780] FILEOPEN: Word .doc file has no tables after import

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42780

--- Comment #1 from Winfried Donkers o...@dci-electronics.nl 2011-12-23 
02:57:48 PST ---
I opened the file with 3.4.4 (Windows)
-the table was visible, but the document was read only.
I removed the read only flag in Explorer and reopened the file
-the table was visible and recognised as table (the toolbar appeared)

It does not look as a bug to me (ISNOTABUG)

-- 
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 35673] LibreOffice 3.4 most annoying bugs

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

--- Comment #242 from Pedro pedl...@gmail.com 2011-12-23 03:12:13 PST ---
I would like to propose Bug 36982.

It should have been a blocker before. It was a regression against 3.3.x and it
causes data loss. The argument that it is not important because it only affects
docx users seems irrelevant to me (many of the cases here are also very
specific) and this one causes data loss.

-- 
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 36547] Impress: Rendering problems with some .odp files

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36547

--- Comment #10 from Raphaël raph...@hotmail.com 2011-12-23 03:12:35 PST ---
This bug doesn't seem to be fixed, even in the latest releases of Libreoffice. 

The reason is the following:

This bug 36547 is similar, but not exactly the same, as bug 36470. So it was
considered as a duplicate of 36470.

And in turn, Bug 36470 is similar, but not exactly the same, as bug 33591. And
this one was considered as a bug of 33591.

Now, Bug 33591 is fixed.

BUT: 33591 is not at all a duplicate of this bug 36547 !!

So, this bug 36547 is not fixed, and there is now no open bug for this
problem...

I opened some weeks before the new bug 42553, with a more precise description
of the problem underlying this bug 36547, under the title 'problems with
transparency gradient'. But Mr Rainer Bielfeld modified the title and truncated
my originate file, saying that the problem was already fixed (probably through
bug 33591) and he focused on a more specific problem (an additionnal
geometrical problem in the gradient rendering).

So, I propose to reopen this one, adding a more precise description than in the
original report (now I understand better the underlying problem):

This is a problem with the 'transparency gradient' (linear, axial, radial,
etc) in Impress, when turning to presentation mode. It is a regression from
openoffice, but present since the first version of LibreOffice.

The best way to see it is the following:

1) Make a new slide with black background;

2) Draw a shape and fill area with black (so you have a black shape on black
background);

3) Right click - Area - Transparency - Gradient and choose for instance a
linear one;

4) Start the diaporama (F5) and wait for the rendering: your black form isn't
black anymore !

I added a new file in attachment to illustrate the problem.

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


[Libreoffice-bugs] [Bug 44075] mysql-connector-ooo-1.0.1 does not work

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44075

Alex Thurgood alex.thurg...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WONTFIX

--- Comment #2 from Alex Thurgood alex.thurg...@gmail.com 2011-12-23 03:13:44 
PST ---
The old Oracle connector no longer works due to code changes in component
handling in the 3.5.x development cycle, and library versions for the mysql
connector libraries (which have been bumped), it needs to be rebuilt by someone
on Windows, having a build environment and then made available on the
Extensions site.

As the connector extension does not form part of the standard release build, it
will not be built by the buildbots, and therefore not be available in the
general downloads of LibO (it isn't anyway, and never was, not even with OOo).

So this is not really a LibO bug because the connector, which was always built
separately, needs to be rebuilt for Windows users. None of the developers seem
particularly interested in providing the connector, which is why I had built
them for Mac and Linux 32bit (my build environments). I don't have a Win build
environment, so someone else will have to do it if Windows users want a
connector that works.

As for MariaDB, Monty Widenius has promised support for new client libraries
that could be used in a new MariaDB connector (that may or may not be included
as a default) - however, that code is not yet available (to my knowledge).

Alex

-- 
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 36547] Impress: Rendering problems with some .odp files

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36547

--- Comment #11 from Raphaël raph...@hotmail.com 2011-12-23 03:14:50 PST ---
Created attachment 54742
  -- https://bugs.freedesktop.org/attachment.cgi?id=54742
This file illustrate the problem with transparency gradient.

-- 
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 36547] Impress: Rendering problems with some .odp files

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36547

Raphaël raph...@hotmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|DUPLICATE   |

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


[Libreoffice-bugs] [Bug 35673] LibreOffice 3.4 most annoying bugs

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 36547, which changed state.

Bug 36547 Summary: Impress: Rendering problems with some .odp files
https://bugs.freedesktop.org/show_bug.cgi?id=36547

   What|Old Value   |New Value

 Resolution|DUPLICATE   |
 Status|RESOLVED|REOPENED

-- 
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 42780] FILEOPEN: Word .doc file has no tables after import

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42780

--- Comment #2 from ol...@mail.ru 2011-12-23 03:26:01 PST ---
Please make these steps to reproduce:
1. Open file in MS Word (any version) and see how it looks
   (OpenOffice.org 3.3 opens it well too). You must see 8 pages
   with a lot of tables
2. Open file in LibreOffice Writer (3.4.3 or 3.4.4) and see that
   it looks differently (no tables). You must see 4 pages with one table.

I use Windows 7 Home Basic SP1 Russian, LibreOffice 3.4.4 Russian

Pay attention, that this file is opened as expected in OpenOffice 3.3.0 too,
but not in LibreOffice.

-- 
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 44076] =(-8)^(1/3) should return -2

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44076

--- Comment #2 from markus.mohrh...@googlemail.com 2011-12-23 03:36:05 PST ---
Hm after an additional thought I'm not sure if it is really that simple to
implement. At the point where we calculate the power we no longer have the
information that we had a fraction as exponent.

I wonder how excel solves this problem. I suspect that we would have the same
problem with ixion.

-- 
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 44075] mysql-connector-ooo-1.0.1 does not work

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44075

--- Comment #3 from Boudi bo...@clocked.eu 2011-12-23 03:47:26 PST ---
Thanks. I understand. No 3.5. bug. So it can be closed.

-- 
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 43697] Extension Manageer: Could not create Java implementation loader

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43697

Pedro pedl...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever Confirmed|0   |1

--- Comment #1 from Pedro pedl...@gmail.com 2011-12-23 03:50:28 PST ---
From the screenshot this refers to Beta0. Please test with Beta1 or the soon to
be released Beta2. If the problem persists please report back

-- 
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 43923] Cyrillic strings in Danish GUI

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43923

Andras Timar tima...@gmail.com changed:

   What|Removed |Added

 CC||manveru1...@gmail.com

--- Comment #1 from Andras Timar tima...@gmail.com 2011-12-23 04:06:33 UTC ---
*** Bug 44090 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 44092] New: Requesting a base ADO connection, the first record is ignored

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44092

 Bug #: 44092
   Summary: Requesting a base ADO connection, the first record is
ignored
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: dany.fra...@free.fr


It was a bug corrected in the last beta (3.3.?) of OO

the request
select * from v_echantillon where annee=2010 and numlabo3
returns 1 record with the ADO connection and 2 records with odbc connection
Database was SQLSERVER 2000, LO 3.4.5RC1

-- 
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 44092] Requesting a base ADO connection, the first record is ignored

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44092

dany dany.fra...@free.fr changed:

   What|Removed |Added

   Priority|medium  |high
Version|unspecified |LibO 3.4.5 RC1

--- Comment #1 from dany dany.fra...@free.fr 2011-12-23 04:14:27 PST ---
the OO bug report

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

-- 
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 44093] New: Forms open in printer view. They should open in web-view.

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44093

 Bug #: 44093
   Summary: Forms open in printer view. They should open in
web-view.
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.0 Beta0
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: bo...@clocked.eu


Created attachment 54745
  -- https://bugs.freedesktop.org/attachment.cgi?id=54745
Forms view as from 3.4.

In Base Forms should always open in Web View.

-- 
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 44058] LO Calc crashes always when using

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44058

--- Comment #2 from Susan Cragin susancra...@earthlink.net 2011-12-23 
04:15:51 UTC ---
Please provide link to beta2. I can find nothing with yesterday's date, that
is, 12/21. 
Thank you.

-- 
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 44093] Forms open in printer view. They should open in web-view.

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44093

--- Comment #1 from Boudi bo...@clocked.eu 2011-12-23 04:16:55 PST ---
Created attachment 54746
  -- https://bugs.freedesktop.org/attachment.cgi?id=54746
Same file in 3.3.4

-- 
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 44094] New: LibreOffice writer crashes when view fonts

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44094

 Bug #: 44094
   Summary: LibreOffice writer crashes when view fonts
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: miguel@wanadoo.fr


When searching for a new charactere font It crashes. Default font is time new
roman, I m searching an other font style, and it crashes when from times new
roman, I search above, the T, in inverse alphabetics order,and I don't know
exactly where (Q letter pethaps).

-- 
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 33800] Enable PDF export of simple slide animations in Impress

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33800

--- Comment #3 from c. brocas christophe.bro...@free.fr 2011-12-23 06:13:23 
PST ---
Hello

I also look for this feature and I think that creating a new slide in the PDF
after each click transition as said by Horst is the behavior that the user is
looking for in the PDF export.

Why asking for such a feature ? because currently when I write an Impress
document, I use Impress to display it so no problem. 

BUT when comes the moment to send the slides to meeting attendees (after the
meeting has been done), I usually send the PDF document (mainly for cross
platform reading). If my Impress doc has animated (in my case start on click)
elements, I have to do a 2nd document WITHOUT any animation to be able to
export to PDF. Or not using at all the animation transition of Impress since
the beginning and doing the transition by hands, creating a slide after each
appearing element.

So, if LO developers may implement it, it would a great improvement !

-- 
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 43033] PDF: Hidden slides are output to exported PDF

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43033

pjacq...@gmx.ch changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 AssignedTo|libreoffice-b...@lists.free |pjacq...@alumni.ethz.ch
   |desktop.org |

-- 
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 44064] Thunderbird address book connection wrong at birthday-year

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44064

Zoltán Reizinger zreizin...@hdsnet.hu changed:

   What|Removed |Added

 CC||zreizin...@hdsnet.hu

--- Comment #1 from Zoltán Reizinger zreizin...@hdsnet.hu 2011-12-23 07:08:08 
PST ---
I can confirm it in LibO 3.4.4.

This happens in OOo 3.4Beta, OOo 3.3, 3.2.1, and OOo 3.2 where I have tested.

-- 
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 43701] [Task] VIEWING: Unify icon behavior for active functions

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43701

Bug 43701 depends on bug 31471, which changed state.

Bug 31471 Summary: EasyHacks: iDRAW-UI: context menu for grid shows opposite of 
current behaviour
https://bugs.freedesktop.org/show_bug.cgi?id=31471

   What|Old Value   |New Value

 Resolution||FIXED
 Status|ASSIGNED|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 34413] Menu entry Hyperlink bar not checked if activated

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34413

Bug 34413 depends on bug 31471, which changed state.

Bug 31471 Summary: EasyHacks: iDRAW-UI: context menu for grid shows opposite of 
current behaviour
https://bugs.freedesktop.org/show_bug.cgi?id=31471

   What|Old Value   |New Value

 Status|REOPENED|ASSIGNED
 Resolution||FIXED
 Status|ASSIGNED|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 43701] [Task] VIEWING: Unify icon behavior for active functions

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43701

Bug 43701 depends on bug 41264, which changed state.

Bug 41264 Summary: FORMATTING UI : no check marks in Line Spacing and ALignment 
popup menu
https://bugs.freedesktop.org/show_bug.cgi?id=41264

   What|Old Value   |New Value

 Resolution||DUPLICATE
 Status|ASSIGNED|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 44058] LO Calc crashes always when using

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44058

GerardF gerard.farg...@orange.fr changed:

   What|Removed |Added

 CC||gerard.farg...@orange.fr

--- Comment #3 from GerardF gerard.farg...@orange.fr 2011-12-23 07:38:06 PST 
---
(In reply to comment #2)
 Please provide link to beta2. I can find nothing with yesterday's date, that
 is, 12/21. 
 Thank you.

Here : http://dev-builds.libreoffice.org/pre-releases/

-- 
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 44095] New: FILEOPEN: password protected odf-doc created wit LO 3.5 can't be opened with LO 3.4.4

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44095

 Bug #: 44095
   Summary: FILEOPEN: password protected odf-doc created wit LO
3.5 can't be opened with LO 3.4.4
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.0 Beta1
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: tomhube...@gmail.com


Created attachment 54750
  -- https://bugs.freedesktop.org/attachment.cgi?id=54750
screenshot of error message

Problem description: error message in LO 3.4.4 when trying to open a password
projected writer-file (odf) created with LO 3.5

Steps to reproduce:
1. create a passwort protected odf-file with LO 3.5
2. save and open with LO 3.4.4
3. error message as per attachment

Current behavior:

Expected behavior:

Platform (if different from the browser): 

Browser: Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.11 (KHTML, like Gecko)
Chrome/17.0.963.12 Safari/535.11

-- 
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 44097] New: List of printers does not appeared automatically in dialog printing box

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44097

 Bug #: 44097
   Summary: List of printers does not appeared automatically in
dialog printing box
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: rpn...@free.fr


On Debian Squeeze.
Disconnect a Cups compatible printer from network (for example a HP4280).
Launch Libreoffice 3.4.4 and open a document to print.
Reconnect the printer to the network.
Wait that this printer is visible with lpstat -t.
Open the dialogue printing box. Only the generic printer is shown, not the HP
printer.
Only opening a new instance of LO or the Printer settings menu in the actual
instance allow to show the printer name and now printing is possible. This is
not ergonomic.

The wished enhancement : updating the list of network printers automatically
(or, less good, with a button in the dialog printing box), without the need to
open the printer settings menus.

-- 
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 44026] MAILMERGE: Writer crashes after sending the first out of four mass mails

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44026

--- Comment #2 from h8...@t-online.de 2011-12-23 08:51:23 PST ---
(In reply to comment #1)
 @h8...@t-online.de
 Can you please try with a current version?
 

I am using Version 3.4.4 Build 1403.
To my knowledge, this is the most current version.

-- 
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 44026] MAILMERGE: Writer crashes after sending the first out of four mass mails

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44026

h8...@t-online.de changed:

   What|Removed |Added

Version|LibO 3.3.4 release  |LibO 3.4.4 release

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


[Libreoffice-bugs] [Bug 44026] MAILMERGE: Writer crashes after sending the first out of four mass mails

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44026

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-23 09:29:49 PST ---
NOT reproducible with LibreOffice 3.4.5 RC1  - WIN7 Home Premium (64bit)
German UI [Build ID: OOO340m1 (Build:501)]. Sent 20 HTML-Mails without any
problem

@h8...@t-online.de:
Please attach a sample document (the text document) as requested and
additionlly answer to the other questions in Comment 1. It would save time if
you would answer to all questions in 1 comment.
I think it is crystal clear that we need a sample document? Or is the problem
reproducible with a new white blank page?

-- 
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 44095] FILEOPEN: password protected odf-doc created wit LO 3.5 can't be opened with LO 3.4.4

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44095

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-23 10:04:57 PST ---
DUP of Bug 43868 - FILEOPEN document saved with password: correct password not
recognized?

@th 
Thank you for aour attention! Please watch fix for a.m. Bug and feel free to
reopen this Bug if you find evidence that we have an independent issue here.

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

-- 
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 44094] LibreOffice writer crashes when view fonts

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44094

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 
2011-12-23 10:14:38 PST ---
NOT Reproducible with LibreOffice 3.4.5 RC1  - WIN7 Home Premium (64bit)
German UI [Build ID: OOO340m1 (Build:501)]

@miguel@wanadoo.fr:
We have crash reports concerning crash at particular fonts. Can you please try
to find out at what font the crash appears and attach a listing of installed
fonts?

-- 
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 44100] New: Synchronize Navigator with Document (VIEWING, UI)

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44100

 Bug #: 44100
   Summary: Synchronize Navigator with Document (VIEWING, UI)
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86-64 (AMD64)
OS/Version: Mac OS X (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: peterkidw...@gmail.com


See also Apache OOo bug 58342
(https://issues.apache.org/ooo/show_bug.cgi?id=58342).  If you have the
Navigator open and scroll through a document, the Navigator is not updated with
your current position in the document. This could be a heading section, a
particular table or frame or graphic, etc.

This feature is available in MS Word, so it's also a feature parity issue.

-- 
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 35657] complex.writer.TextPortionEnumerationTest fails

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35657

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED
 CC||mst...@redhat.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 32420] Add TeX like \not to Math

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=32420

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

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #1 from Björn Michaelsen bjoern.michael...@canonical.com 
2011-12-23 11:33:02 PST ---
[This is an automated message.]
This bug was filed before the changes to Bugzilla on 2011-10-16. Thus it
started right out as NEW without ever being explicitly confirmed. The bug is
changed to state NEEDINFO for this reason. To move this bug from NEEDINFO back
to NEW please check if the bug still persists with the 3.5.0 beta1 or beta2
prereleases.
Details on how to test the 3.5.0 beta1 can be found at:
http://wiki.documentfoundation.org/QA/BugHunting_Session_3.5.0.-1

more detail on this bulk operation:
http://nabble.documentfoundation.org/RFC-Operation-Spamzilla-tp3607474p3607474.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


  1   2   3   4   5   6   7   8   9   10   >