[Libreoffice-commits] .: distro-configs/LibreOfficeMacOSX.conf postgresql/makefile.mk

2011-12-11 Thread Fridrich Strba
 distro-configs/LibreOfficeMacOSX.conf |2 ++
 postgresql/makefile.mk|2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit bee80a2a5762ab483b64b6d9b38d39ed3ffeca1f
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Sun Dec 11 12:24:38 2011 +0100

Make internal pgsql build on mac and make it default for release

diff --git a/distro-configs/LibreOfficeMacOSX.conf 
b/distro-configs/LibreOfficeMacOSX.conf
index 3d22aa9..59ea95b 100644
--- a/distro-configs/LibreOfficeMacOSX.conf
+++ b/distro-configs/LibreOfficeMacOSX.conf
@@ -10,4 +10,6 @@
 --enable-ext-scripting-beanshell
 --enable-ext-scripting-javascript
 --enable-ext-nlpsolver
+--enable-ext-postgresql-sdbc
 --enable-extension-integration
+--without-system-postgresql
diff --git a/postgresql/makefile.mk b/postgresql/makefile.mk
index 2aae5db..2979779 100644
--- a/postgresql/makefile.mk
+++ b/postgresql/makefile.mk
@@ -63,7 +63,7 @@ BUILD_DIR=src/interfaces/libpq
 # --sysconfdir: config files. Ideally, we would like that to be the same as 
the platform default,
 #   but that's quite some guessing work.
 CONFIGURE_ACTION = ./configure --without-readline --disable-shared
-BUILD_ACTION = make -j$(GMAKE_MODULE_PARALLELISM)
+BUILD_ACTION = make -j$(GMAKE_MODULE_PARALLELISM) all-static-lib
 .ENDIF
 
 # --- Targets --
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: svtools/source

2011-12-11 Thread Julien Nabet
 svtools/source/svhtml/htmlout.cxx |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit a1b970a10e00b34ab6d8608cb02247b8f0195573
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Dec 11 13:07:04 2011 +0100

Remove ByteString

diff --git a/svtools/source/svhtml/htmlout.cxx 
b/svtools/source/svhtml/htmlout.cxx
index deb530b..cf3f746 100644
--- a/svtools/source/svhtml/htmlout.cxx
+++ b/svtools/source/svhtml/htmlout.cxx
@@ -885,9 +885,8 @@ SvStream HTMLOutFuncs::OutScript( SvStream rStrm,
 {
 // Wir schreiben das Modul mm ANSI-Zeichensatz, aber mit
 // System-Zeilenumbruechen raus.
-ByteString sSource(rtl::OUStringToOString(rSource, eDestEnc));
-sSource.ConvertLineEnd( GetSystemLineEnd() );
-rStrm  sSource.GetBuffer();
+rtl::OString sSource(rtl::OUStringToOString(rSource, eDestEnc));
+rStrm  sSource.getStr()  sNewLine;
 }
 rStrm  sNewLine;
 
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sot/source

2011-12-11 Thread Julien Nabet
 sot/source/base/formats.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 4046a1dfc2ba5b52cab7083f4817351c647a59c3
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Dec 11 13:45:53 2011 +0100

Remove ByteString

diff --git a/sot/source/base/formats.cxx b/sot/source/base/formats.cxx
index 2bfa066..1c5ec07 100644
--- a/sot/source/base/formats.cxx
+++ b/sot/source/base/formats.cxx
@@ -1325,8 +1325,7 @@ rEntry
 
 if( pFDesc-cItems )
 {
-ByteString sDesc( pFDesc-fgd[ 0 
].cFileName );
-bRet = 4  sDesc.Len()  sDesc.Copy( 
sDesc.Len()-4 ).EqualsIgnoreCaseAscii( .URL );
+bRet = (4  (pFDesc-fgd[ 0 
].cFileName.size()))  sDesc.Copy( sDesc.Len()-4 ).EqualsIgnoreCaseAscii( 
.URL );
 }
 }
 }
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: desktop/source sc/source svx/source

2011-12-11 Thread Julien Nabet
 desktop/source/deployment/manager/dp_manager.cxx |2 +-
 sc/source/filter/xml/xmlexprt.cxx|4 ++--
 svx/source/xml/xmlgrhlp.cxx  |4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit eba2e6a9c32d5c5a7bdb4c8ccc515903b247c12d
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Dec 11 14:48:16 2011 +0100

Remove ByteString

diff --git a/desktop/source/deployment/manager/dp_manager.cxx 
b/desktop/source/deployment/manager/dp_manager.cxx
index 508d6bb..63720c5 100644
--- a/desktop/source/deployment/manager/dp_manager.cxx
+++ b/desktop/source/deployment/manager/dp_manager.cxx
@@ -1037,7 +1037,7 @@ Referencedeployment::XPackage 
PackageManagerImpl::getDeployedPackage_(
 if (INetContentTypes::parse( data.mediaType, type, subType, params ))
 {
 INetContentTypeParameter const * param = params.find(
-ByteString(platform) );
+rtl::OString(platform) );
 if (param != 0  !platform_fits( param-m_sValue ))
 throw lang::IllegalArgumentException(
 getResourceString(RID_STR_NO_SUCH_PACKAGE) + id,
diff --git a/sc/source/filter/xml/xmlexprt.cxx 
b/sc/source/filter/xml/xmlexprt.cxx
index 3ad8b8b..1757c6b 100644
--- a/sc/source/filter/xml/xmlexprt.cxx
+++ b/sc/source/filter/xml/xmlexprt.cxx
@@ -1650,8 +1650,8 @@ void ScXMLExport::CopySourceStream( sal_Int32 
nStartOffset, sal_Int32 nEndOffset
 
 if ( getExportFlags()  EXPORT_PRETTY )
 {
-ByteString aOutStr(\n   );
-uno::Sequencesal_Int8 aOutSeq( 
(sal_Int8*)aOutStr.GetBuffer(), aOutStr.Len() );
+const rtl::OString aOutStr(\n   );
+uno::Sequencesal_Int8 aOutSeq( (sal_Int8*)aOutStr.getStr(), 
aOutStr.getLength() );
 xDestStream-writeBytes( aOutSeq );
 }
 
diff --git a/svx/source/xml/xmlgrhlp.cxx b/svx/source/xml/xmlgrhlp.cxx
index 3fc611c..3d61519 100644
--- a/svx/source/xml/xmlgrhlp.cxx
+++ b/svx/source/xml/xmlgrhlp.cxx
@@ -548,11 +548,11 @@ String SvXMLGraphicHelper::ImplGetGraphicMimeType( const 
String rFileName ) con
 
 if( ( rFileName.Len() = 4 )  ( rFileName.GetChar( rFileName.Len() - 4 ) 
== '.' ) )
 {
-const ByteString 
aExt(rtl::OUStringToOString(rFileName.Copy(rFileName.Len() - 3),
+const rtl::OString 
aExt(rtl::OUStringToOString(rFileName.Copy(rFileName.Len() - 3),
 RTL_TEXTENCODING_ASCII_US));
 
 for( long i = 0, nCount = SAL_N_ELEMENTS( aMapper ); ( i  nCount )  
!aMimeType.Len(); i++ )
-if( aExt == aMapper[ i ].pExt )
+if( aExt.getStr() == aMapper[ i ].pExt )
 aMimeType = String( aMapper[ i ].pMimeType, 
RTL_TEXTENCODING_ASCII_US );
 }
 
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: dbaccess/source

2011-12-11 Thread Julien Nabet
 dbaccess/source/ui/dlg/directsql.cxx |3 +++
 dbaccess/source/ui/inc/directsql.hxx |2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 15f8fce9860100505c4c6a54f5f003375fbd8275
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Dec 11 16:36:38 2011 +0100

Remove ByteString

diff --git a/dbaccess/source/ui/dlg/directsql.cxx 
b/dbaccess/source/ui/dlg/directsql.cxx
index f0d6f0d..e650fb3 100644
--- a/dbaccess/source/ui/dlg/directsql.cxx
+++ b/dbaccess/source/ui/dlg/directsql.cxx
@@ -36,6 +36,7 @@
 #include vcl/svapp.hxx
 #include osl/mutex.hxx
 #include tools/diagnose_ex.h
+#include rtl/strbuf.hxx
 
 //
 namespace dbaui
@@ -46,6 +47,8 @@ namespace dbaui
 using namespace ::com::sun::star::sdbc;
 using namespace ::com::sun::star::lang;
 
+using ::rtl::OStringBuffer;
+
 //
 //= LargeEntryListBox
 //
diff --git a/dbaccess/source/ui/inc/directsql.hxx 
b/dbaccess/source/ui/inc/directsql.hxx
index 250c667..96c2ebc 100644
--- a/dbaccess/source/ui/inc/directsql.hxx
+++ b/dbaccess/source/ui/inc/directsql.hxx
@@ -126,7 +126,7 @@ namespace dbaui
 {   \
 const sal_Char* pError = impl_CheckInvariants();\
 if (pError) \
-OSL_FAIL((ByteString(methodname) += ByteString(: ) += 
ByteString(pError)).GetBuffer());   \
+OSL_FAIL(rtl::OStringBuffer(methodname).append(: 
).append(pError). makeStringAndClear().getStr());   \
 }
 #else
 #define CHECK_INVARIANTS(methodname)
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2011-12-11 Thread August Sodora
 vcl/inc/vcl/outdev.hxx  |   33 -
 vcl/source/gdi/outdev2.cxx  |   38 --
 vcl/source/gdi/outdev3.cxx  |   27 
 vcl/source/gdi/outdevnative.cxx |   39 ---
 vcl/source/gdi/outmap.cxx   |  222 
 5 files changed, 359 deletions(-)

New commits:
commit bb11106e06fa47a105bd02c2281f20af147b71b6
Author: August Sodora aug...@gmail.com
Date:   Sun Dec 11 00:36:49 2011 -0500

Remove unused code

diff --git a/vcl/inc/vcl/outdev.hxx b/vcl/inc/vcl/outdev.hxx
index d2d3809..9ce143d 100644
--- a/vcl/inc/vcl/outdev.hxx
+++ b/vcl/inc/vcl/outdev.hxx
@@ -416,7 +416,6 @@ public:
 const sal_Int32* pPixelDXArray ) 
const;
 SAL_DLLPRIVATE SalLayout*   ImplGlyphFallbackLayout( SalLayout*, 
ImplLayoutArgs ) const;
 
-SAL_DLLPRIVATE long ImplGetTextWidth( const SalLayout ) const;
 static
 SAL_DLLPRIVATE XubStringImplGetEllipsisString( const OutputDevice 
rTargetDevice, const XubString rStr,
long nMaxWidth, 
sal_uInt16 nStyle, const ::vcl::ITextLayout _rLayout );
@@ -458,10 +457,7 @@ public:
 SAL_DLLPRIVATE long ImplLogicHeightToDevicePixel( long nHeight ) 
const;
 SAL_DLLPRIVATE long ImplDevicePixelToLogicWidth( long nWidth ) 
const;
 SAL_DLLPRIVATE long ImplDevicePixelToLogicHeight( long nHeight ) 
const;
-SAL_DLLPRIVATE floatImplFloatLogicWidthToDevicePixel( float ) 
const;
 SAL_DLLPRIVATE floatImplFloatLogicHeightToDevicePixel( float ) 
const;
-SAL_DLLPRIVATE floatImplFloatDevicePixelToLogicWidth( float ) 
const;
-SAL_DLLPRIVATE floatImplFloatDevicePixelToLogicHeight( float ) 
const;
 SAL_DLLPRIVATE PointImplLogicToDevicePixel( const Point rLogicPt 
) const;
 SAL_DLLPRIVATE Size ImplLogicToDevicePixel( const Size rLogicSize 
) const;
 SAL_DLLPRIVATE RectangleImplLogicToDevicePixel( const Rectangle 
rLogicRect ) const;
@@ -601,7 +597,6 @@ public:
   FontUnderline eUnderline,
   FontUnderline eOverline,
   sal_Bool bUnderlineAbove = sal_False );
-static sal_Bool IsTextUnderlineAbove( const Font rFont );
 
 voidDrawText( const Point rStartPt, const XubString rStr,
   xub_StrLen nIndex = 0, xub_StrLen nLen = 
STRING_LEN,
@@ -830,7 +825,6 @@ public:
const ::vcl::RenderGraphic 
rRenderGraphic );
 
 Color   GetPixel( const Point rPt ) const;
-Color*  GetPixel( const Polygon rPts ) const;
 
 Bitmap  GetBitmap( const Point rSrcPt, const Size rSize ) 
const;
 
@@ -992,9 +986,7 @@ public:
 SizeLogicToPixel( const Size rLogicSize ) const;
 Rectangle   LogicToPixel( const Rectangle rLogicRect ) const;
 Polygon LogicToPixel( const Polygon rLogicPoly ) const;
-basegfx::B2DPolygon LogicToPixel( const basegfx::B2DPolygon 
rLogicPolyPoly ) const;
 PolyPolygon LogicToPixel( const PolyPolygon rLogicPolyPoly ) 
const;
-basegfx::B2DPolyPolygon LogicToPixel( const basegfx::B2DPolyPolygon 
rLogicPolyPoly ) const;
 Region  LogicToPixel( const Region rLogicRegion )const;
 Point   LogicToPixel( const Point rLogicPt,
   const MapMode rMapMode ) const;
@@ -1004,21 +996,15 @@ public:
   const MapMode rMapMode ) const;
 Polygon LogicToPixel( const Polygon rLogicPoly,
   const MapMode rMapMode ) const;
-basegfx::B2DPolygon LogicToPixel( const basegfx::B2DPolygon rLogicPoly,
-  const MapMode rMapMode ) const;
 PolyPolygon LogicToPixel( const PolyPolygon rLogicPolyPoly,
   const MapMode rMapMode ) const;
 basegfx::B2DPolyPolygon LogicToPixel( const basegfx::B2DPolyPolygon 
rLogicPolyPoly,
   const MapMode rMapMode ) const;
-Region  LogicToPixel( const Region rLogicRegion,
-  const MapMode rMapMode ) const;
 Point   PixelToLogic( const Point rDevicePt ) const;
 SizePixelToLogic( const Size rDeviceSize ) const;
 Rectangle   PixelToLogic( const Rectangle rDeviceRect ) const;
 Polygon PixelToLogic( const Polygon rDevicePoly ) const;
-basegfx::B2DPolygon PixelToLogic( const basegfx::B2DPolygon rDevicePoly ) 
const;
 PolyPolygon PixelToLogic( const PolyPolygon rDevicePolyPoly ) 
const;
-basegfx::B2DPolyPolygon PixelToLogic( const basegfx::B2DPolyPolygon 
rDevicePolyPoly ) const;
 Region  

[Libreoffice-commits] .: dbaccess/source

2011-12-11 Thread Julien Nabet
 dbaccess/source/ui/misc/moduledbu.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 5c4503898742a151e7521cae0649ff5eb6f19220
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Dec 11 20:38:34 2011 +0100

Remove ByteString

diff --git a/dbaccess/source/ui/misc/moduledbu.cxx 
b/dbaccess/source/ui/misc/moduledbu.cxx
index dfd95ae..18c2888 100644
--- a/dbaccess/source/ui/misc/moduledbu.cxx
+++ b/dbaccess/source/ui/misc/moduledbu.cxx
@@ -86,8 +86,7 @@ ResMgr* OModuleImpl::getResManager()
 if (!m_pRessources)
 {
 // create a manager with a fixed prefix
-ByteString aMgrName = ByteString( dbu );
-m_pRessources = ResMgr::CreateResMgr(aMgrName.GetBuffer());
+m_pRessources = ResMgr::CreateResMgr(rtl::OString(dbu).getStr());
 }
 return m_pRessources;
 }
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: solenv/gbuild

2011-12-11 Thread Andras Timar
 solenv/gbuild/platform/WNT_INTEL_GCC.mk |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit f129c4f766c30b174544ec234cbd72c7050a2fc1
Author: Andras Timar ati...@suse.com
Date:   Sun Dec 11 22:04:34 2011 +0100

fix VersionInfo resource build under MinGW

diff --git a/solenv/gbuild/platform/WNT_INTEL_GCC.mk 
b/solenv/gbuild/platform/WNT_INTEL_GCC.mk
index 7363654..92b4dbb 100644
--- a/solenv/gbuild/platform/WNT_INTEL_GCC.mk
+++ b/solenv/gbuild/platform/WNT_INTEL_GCC.mk
@@ -346,6 +346,8 @@ $(call gb_WinResTarget_WinResTarget_init,$(2))
 $(call gb_WinResTarget_add_file,$(2),solenv/inc/shlinfo)
 $(call gb_WinResTarget_set_defs,$(2),\
$$(DEFS) \
+   -DVERVARIANT=$(BUILD) \
+   -DRES_APP_VENDOR=$(OOO_VENDOR) \
-DADDITIONAL_VERINFO1= \
-DADDITIONAL_VERINFO2= \
-DADDITIONAL_VERINFO3= \
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sot/source

2011-12-11 Thread Julien Nabet
 sot/source/base/formats.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 60beba6a73c46d4564599467badd6136f9523434
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Dec 11 22:30:46 2011 +0100

Revert buggy 4046a1dfc2ba5b52cab7083f4817351c647a59c3

diff --git a/sot/source/base/formats.cxx b/sot/source/base/formats.cxx
index 1c5ec07..2bfa066 100644
--- a/sot/source/base/formats.cxx
+++ b/sot/source/base/formats.cxx
@@ -1325,7 +1325,8 @@ rEntry
 
 if( pFDesc-cItems )
 {
-bRet = (4  (pFDesc-fgd[ 0 
].cFileName.size()))  sDesc.Copy( sDesc.Len()-4 ).EqualsIgnoreCaseAscii( 
.URL );
+ByteString sDesc( pFDesc-fgd[ 0 
].cFileName );
+bRet = 4  sDesc.Len()  sDesc.Copy( 
sDesc.Len()-4 ).EqualsIgnoreCaseAscii( .URL );
 }
 }
 }
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: solenv/gbuild

2011-12-11 Thread Peter Foley
 solenv/gbuild/extensions/post_AuxTargets.mk |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit a298986d627b944eb94fdd8b0c30a9298f14ab65
Author: Peter Foley pefol...@verizon.net
Date:   Sun Dec 11 19:39:58 2011 -0500

alow make to run autogen.sh if autogen.lastrun doesn't exist

diff --git a/solenv/gbuild/extensions/post_AuxTargets.mk 
b/solenv/gbuild/extensions/post_AuxTargets.mk
index 7622047..da31aa6 100644
--- a/solenv/gbuild/extensions/post_AuxTargets.mk
+++ b/solenv/gbuild/extensions/post_AuxTargets.mk
@@ -51,6 +51,8 @@ fetch: $(SRCDIR)/src.downloaded
 $(SRCDIR)/Env.Host.sh: autogen.lastrun configure.in ooo.lst.in set_soenv.in
$(if $(filter 
reconfigure,$(gb_SourceEnvAndRecurse_STAGE)),$(SRCDIR)/autogen.sh,@echo cannot 
reconfigure from within solarenv  rm -f $(SRCDIR)/Env.Host.sh  exit 2)
 
+autogen.lastrun:
+
 $(WORKDIR)/bootstrap:
@cd $(SRCDIR)  ./bootstrap
@mkdir -p $(dir $@)  touch $@
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sc/source

2011-12-11 Thread Noel Power
 sc/source/ui/app/inputwin.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit bee8375b7205d4a468a2d3a928249e7923b2147a
Author: Noel Power noel.po...@novell.com
Date:   Mon Dec 12 00:59:52 2011 +

double check pEditView ( appears some re-entrency foo can zap it )

diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index 2983c44..649050b 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -,7 +,9 @@ ScMultiTextWnd::~ScMultiTextWnd()
 
 void ScMultiTextWnd::Paint( const Rectangle rRec )
 {
-GetEditView()-Paint( rRec );
+EditView* pView = GetEditView();
+if ( pView )
+pView-Paint( rRec );
 }
 
 EditView* ScMultiTextWnd::GetEditView()
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2011-12-11 Thread Noel Power
 sc/source/ui/app/inputhdl.cxx |3 ++-
 sc/source/ui/app/inputwin.cxx |   33 +++--
 sc/source/ui/inc/inputwin.hxx |2 +-
 3 files changed, 18 insertions(+), 20 deletions(-)

New commits:
commit 1b28a657678f2cc64861030cbe3bea13d1bebd95
Author: Noel Power noel.po...@novell.com
Date:   Mon Dec 12 00:59:52 2011 +

double check pEditView ( appears some re-entrency foo can zap it )

diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index 2983c44..649050b 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -,7 +,9 @@ ScMultiTextWnd::~ScMultiTextWnd()
 
 void ScMultiTextWnd::Paint( const Rectangle rRec )
 {
-GetEditView()-Paint( rRec );
+EditView* pView = GetEditView();
+if ( pView )
+pView-Paint( rRec );
 }
 
 EditView* ScMultiTextWnd::GetEditView()
commit 445d348837aca032b81edc92a23fee128758ee0f
Author: Noel Power noel.po...@novell.com
Date:   Sun Dec 11 16:40:52 2011 +

fix autocorrection sync problem with input/formulabar

also,
* make the GetEditView explicitly create EditEngine/EditView *always*
* remove the bogus GetLine method
* reset NotifyHdl when stopping the edit engine

diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx
index f4fe965..98cfac2 100644
--- a/sc/source/ui/app/inputhdl.cxx
+++ b/sc/source/ui/app/inputhdl.cxx
@@ -2046,7 +2046,8 @@ void ScInputHandler::SyncViews( EditView* pSourceView )
 if (pTableView  pTableView != pSourceView)
 lcl_SetTopSelection( pTableView, aSel );
 }
-else if (pTopView  pTableView)
+// Only sync selection from topView if we are actually editiing there
+else if ( ( eMode == SC_INPUT_TOP )  pTopView  pTableView)
 {
 aSel = pTopView-GetSelection();
 lcl_SetTopSelection( pTableView, aSel );
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index 83bdb8a..2983c44 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -1109,29 +1109,18 @@ ScMultiTextWnd::~ScMultiTextWnd()
 {
 }
 
-int ScMultiTextWnd::GetLineCount()
+void ScMultiTextWnd::Paint( const Rectangle rRec )
 {
-   if(pEditView)
-   {
-   return pEditEngine-GetLineCount(0);
-   }
-   return 1;
+GetEditView()-Paint( rRec );
 }
 
-void ScMultiTextWnd::Paint( const Rectangle rRec )
+EditView* ScMultiTextWnd::GetEditView()
 {
-// We always use edit engine to draw text at all times.
-if (!pEditEngine)
-InitEditEngine(SfxObjectShell::Current());
-//StartEditEngine();
-
-if (pEditView)
-{
-pEditView-Paint(rRec);
-}
+if ( !pEditView )
+InitEditEngine( SfxObjectShell::Current() );
+return pEditView;
 }
 
-
 long ScMultiTextWnd::GetPixelHeightForLines( long nLines )
 {
 long height = ( LogicToPixel(Size(0,GetTextHeight())).Height() );
@@ -1229,7 +1218,6 @@ ScMultiTextWnd::DoScroll()
 void ScMultiTextWnd::StartEditEngine()
 {
 // Bei eigener Modalitaet (Doc-modale Dialoge) nicht aktivieren
-
 SfxObjectShell* pObjSh = SfxObjectShell::Current();
 if ( pObjSh  pObjSh-IsInModalMode() )
 return;
@@ -1393,11 +1381,18 @@ void ScMultiTextWnd::InitEditEngine(SfxObjectShell* 
pObjSh)
 
 void ScMultiTextWnd::StopEditEngine( sal_Bool bAll )
 {
+if ( pEditEngine )
+pEditEngine-SetNotifyHdl(Link());
 ScTextWnd::StopEditEngine( bAll );
 }
 
 void ScMultiTextWnd::SetTextString( const String rNewString )
 {
+// Ideally it would be best to create on demand the EditEngine/EditView 
here, but... for
+// the initialisation scenario where a cell is first clicked on we end up 
with the text in the
+// inputbar window scrolled to the bottom if we do that here ( because the 
tableview and topview
+// are synced I guess ).
+// should fix that I suppose :-/ need to look a bit further into that
 if ( pEditView )
 pEditView-Invalidate();
 ScTextWnd::SetTextString( rNewString );
diff --git a/sc/source/ui/inc/inputwin.hxx b/sc/source/ui/inc/inputwin.hxx
index c0f4234..9f70ecb 100644
--- a/sc/source/ui/inc/inputwin.hxx
+++ b/sc/source/ui/inc/inputwin.hxx
@@ -176,8 +176,8 @@ public:
 virtual ~ScMultiTextWnd();
 virtual void StartEditEngine();
 virtual void StopEditEngine( sal_Bool bAll );
-int GetLineCount();
 virtual void Resize();
+virtual EditView*  GetEditView();
 long GetPixelHeightForLines( long nLines );
 long GetEditEngTxtHeight();
 
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: fileaccess/source filter/source forms/source

2011-12-11 Thread Takeshi Abe
 fileaccess/source/FileAccess.cxx |4 +-
 filter/source/config/cache/filterfactory.cxx |2 -
 filter/source/flash/swfexporter.cxx  |   10 +++
 filter/source/graphicfilter/icgm/cgm.cxx |2 -
 filter/source/graphicfilter/itiff/itiff.cxx  |6 ++--
 filter/source/msfilter/escherex.cxx  |   10 +++
 filter/source/msfilter/eschesdo.cxx  |4 +-
 filter/source/msfilter/msdffimp.cxx  |6 ++--
 filter/source/msfilter/msoleexp.cxx  |   14 +-
 filter/source/msfilter/mstoolbar.cxx |4 +-
 filter/source/msfilter/msvbahelper.cxx   |6 ++--
 filter/source/msfilter/powerpoint/pptimporter.cxx|2 -
 filter/source/msfilter/svdfppt.cxx   |   10 +++
 filter/source/odfflatxml/OdfFlatXml.cxx  |2 -
 filter/source/pdf/impdialog.cxx  |4 +-
 filter/source/pdf/pdfexport.cxx  |4 +-
 filter/source/svg/test/svg2odf.cxx   |2 -
 filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx  |8 ++---
 filter/source/xmlfilterdetect/filterdetect.cxx   |2 -
 filter/source/xsltdialog/typedetectionexport.cxx |6 ++--
 filter/source/xsltdialog/typedetectionimport.cxx |2 -
 filter/source/xsltdialog/xmlfileview.cxx |2 -
 filter/source/xsltdialog/xmlfilterjar.cxx|   10 +++
 filter/source/xsltdialog/xmlfiltersettingsdialog.cxx |   26 +--
 filter/source/xsltdialog/xmlfiltertabdialog.cxx  |4 +-
 filter/source/xsltdialog/xmlfiltertabpagexslt.cxx|2 -
 filter/source/xsltdialog/xmlfiltertestdialog.cxx |   16 +--
 filter/source/xsltfilter/XSLTFilter.cxx  |6 ++--
 forms/source/component/CheckBox.cxx  |2 -
 forms/source/component/ComboBox.cxx  |4 +-
 forms/source/component/Currency.cxx  |4 +-
 forms/source/component/Date.cxx  |4 +-
 forms/source/component/FormComponent.cxx |4 +-
 forms/source/component/FormattedField.cxx|8 ++---
 forms/source/component/ImageControl.cxx  |2 -
 forms/source/component/ListBox.cxx   |4 +-
 forms/source/component/Numeric.cxx   |2 -
 forms/source/component/RadioButton.cxx   |2 -
 forms/source/component/Time.cxx  |4 +-
 forms/source/misc/InterfaceContainer.cxx |7 ++---
 forms/source/runtime/formoperations.cxx  |2 -
 forms/source/xforms/propertysetbase.cxx  |2 -
 forms/source/xforms/submission/replace.cxx   |2 -
 forms/source/xforms/submission/submission_get.cxx|4 +-
 forms/source/xforms/submission/submission_post.cxx   |4 +-
 forms/source/xforms/submission/submission_put.cxx|2 -
 forms/source/xforms/xpathlib/xpathlib.cxx|4 +-
 47 files changed, 121 insertions(+), 122 deletions(-)

New commits:
commit 75b835c8cd2953c5bc0f23df300ee553f94eb28d
Author: Takeshi Abe t...@fixedpoint.jp
Date:   Sun Dec 11 18:51:50 2011 +0900

catch exception by constant reference

diff --git a/fileaccess/source/FileAccess.cxx b/fileaccess/source/FileAccess.cxx
index a19d909..15867f8 100644
--- a/fileaccess/source/FileAccess.cxx
+++ b/fileaccess/source/FileAccess.cxx
@@ -396,7 +396,7 @@ sal_Bool OFileAccess::isFolder( const rtl::OUString 
FileURL )
 ucbhelper::Content aCnt( aURLObj.GetMainURL( INetURLObject::NO_DECODE 
), mxEnvironment );
 bRet = aCnt.isFolder();
 }
-catch (Exception ) {}
+catch (const Exception ) {}
 return bRet;
 }
 
@@ -600,7 +600,7 @@ sal_Bool OFileAccess::exists( const rtl::OUString FileURL )
 xStream-closeInput();
 }
 }
-catch (Exception ) {}
+catch (const Exception ) {}
 return bRet;
 }
 
diff --git a/filter/source/config/cache/filterfactory.cxx 
b/filter/source/config/cache/filterfactory.cxx
index ec3254d..f2b138e 100644
--- a/filter/source/config/cache/filterfactory.cxx
+++ b/filter/source/config/cache/filterfactory.cxx
@@ -461,7 +461,7 @@ class stlcomp_removeIfMatchFlags
 // We are asked for bRemove ! And bMatch = !bRemove = so 
bRemove = !bMatch .-)
 return !bMatch;
 }
-catch(css::container::NoSuchElementException)
+catch(const css::container::NoSuchElementException )
 {
 return true;
 }
diff --git a/filter/source/flash/swfexporter.cxx 
b/filter/source/flash/swfexporter.cxx
index 80b7d69..18c6d8f 100644
--- a/filter/source/flash/swfexporter.cxx
+++ b/filter/source/flash/swfexporter.cxx
@@ -161,7 +161,7 @@ sal_Bool FlashExporter::exportAll( Reference XComponent  
xDoc, Reference XOut
 delete mpWriter;
 mpWriter = new Writer( 

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

2011-12-11 Thread August Sodora
 vcl/inc/vcl/status.hxx   |   12 ---
 vcl/source/window/status.cxx |  155 ---
 2 files changed, 167 deletions(-)

New commits:
commit c95fa19f7c7b58a2beb65ad52335322ec2ae6f18
Author: August Sodora aug...@gmail.com
Date:   Sun Dec 11 21:01:03 2011 -0500

Remove unused code

diff --git a/vcl/inc/vcl/status.hxx b/vcl/inc/vcl/status.hxx
index d039ddf..4fa982c 100644
--- a/vcl/inc/vcl/status.hxx
+++ b/vcl/inc/vcl/status.hxx
@@ -123,7 +123,6 @@ private:
 public:
 StatusBar( Window* pParent,
WinBits nWinStyle = WB_BORDER | WB_RIGHT );
-StatusBar( Window* pParent, const ResId rResId );
 ~StatusBar();
 
 virtual voidMouseButtonDown( const MouseEvent rMEvt );
@@ -144,15 +143,11 @@ public:
 sal_uInt16 nPos = STATUSBAR_APPEND );
 voidRemoveItem( sal_uInt16 nItemId );
 
-voidShowItem( sal_uInt16 nItemId );
 voidHideItem( sal_uInt16 nItemId );
 sal_BoolIsItemVisible( sal_uInt16 nItemId ) const;
 
-voidShowItems();
-voidHideItems();
 sal_BoolAreItemsVisible() const { return mbVisibleItems; }
 
-voidCopyItems( const StatusBar rStatusBar );
 voidClear();
 
 sal_uInt16  GetItemCount() const;
@@ -163,15 +158,12 @@ public:
 Point   GetItemTextPos( sal_uInt16 nItemId ) const;
 sal_uInt16  GetCurItemId() const { return mnCurItemId; }
 
-sal_uLong   GetItemWidth( sal_uInt16 nItemId ) const;
-StatusBarItemBits   GetItemBits( sal_uInt16 nItemId ) const;
 longGetItemOffset( sal_uInt16 nItemId ) const;
 
 voidSetItemText( sal_uInt16 nItemId, const XubString 
rText );
 const XubStringGetItemText( sal_uInt16 nItemId ) const;
 
 voidSetItemData( sal_uInt16 nItemId, void* pNewData );
-void*   GetItemData( sal_uInt16 nItemId ) const;
 
 voidSetItemCommand( sal_uInt16 nItemId, const XubString 
rCommand );
 const XubStringGetItemCommand( sal_uInt16 nItemId );
@@ -187,17 +179,13 @@ public:
 voidSetHelpId( sal_uInt16 nItemId, const rtl::OString 
rHelpId );
 rtl::OStringGetHelpId( sal_uInt16 nItemId ) const;
 
-voidSetBottomBorder( sal_Bool bBottomBorder = sal_True );
 sal_BoolIsBottomBorder() const { return mbBottomBorder; }
-
-voidSetTopBorder( sal_Bool bTopBorder = sal_True );
 sal_BoolIsTopBorder() const;
 
 voidStartProgressMode( const XubString rText );
 voidSetProgressValue( sal_uInt16 nPercent );
 voidEndProgressMode();
 sal_BoolIsProgressMode() const { return mbProgressMode; }
-voidResetProgressMode();
 
 voidSetText( const XubString rText );
 
diff --git a/vcl/source/window/status.cxx b/vcl/source/window/status.cxx
index 944ad5f..32dcc4a 100644
--- a/vcl/source/window/status.cxx
+++ b/vcl/source/window/status.cxx
@@ -176,20 +176,6 @@ StatusBar::StatusBar( Window* pParent, WinBits nStyle ) :
 
 // ---
 
-StatusBar::StatusBar( Window* pParent, const ResId rResId ) :
-Window( WINDOW_STATUSBAR )
-{
-rResId.SetRT( RSC_STATUSBAR );
-WinBits nStyle = ImplInitRes( rResId );
-ImplInit( pParent, nStyle );
-ImplLoadRes( rResId );
-
-if ( !(nStyle  WB_HIDE) )
-Show();
-}
-
-// ---
-
 StatusBar::~StatusBar()
 {
 // Alle Items loeschen
@@ -1050,28 +1036,6 @@ void StatusBar::RemoveItem( sal_uInt16 nItemId )
 
 // ---
 
-void StatusBar::ShowItem( sal_uInt16 nItemId )
-{
-sal_uInt16 nPos = GetItemPos( nItemId );
-
-if ( nPos != STATUSBAR_ITEM_NOTFOUND )
-{
-ImplStatusItem* pItem = (*mpItemList)[ nPos ];
-if ( !pItem-mbVisible )
-{
-pItem-mbVisible = sal_True;
-
-mbFormat = sal_True;
-if ( ImplIsItemUpdate() )
-Invalidate();
-
-ImplCallEventListeners( VCLEVENT_STATUSBAR_SHOWITEM, (void*) 
sal_IntPtr(nItemId) );
-}
-}
-}
-
-// ---
-
 void StatusBar::HideItem( sal_uInt16 nItemId )
 {
 sal_uInt16 nPos = GetItemPos( nItemId );
@@ -1106,54 +1070,6 @@ sal_Bool StatusBar::IsItemVisible( sal_uInt16 nItemId ) 
const
 
 // ---
 
-void StatusBar::ShowItems()
-{
-if ( !mbVisibleItems )
-{
- 

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

2011-12-11 Thread August Sodora
 vcl/inc/vcl/status.hxx   |2 --
 vcl/source/window/status.cxx |   22 --
 2 files changed, 24 deletions(-)

New commits:
commit 5008540c40484467e857c3245ae29c17c29673a2
Author: August Sodora aug...@gmail.com
Date:   Sun Dec 11 21:06:38 2011 -0500

Remove unused code

diff --git a/vcl/inc/vcl/status.hxx b/vcl/inc/vcl/status.hxx
index 4fa982c..56cf7c7 100644
--- a/vcl/inc/vcl/status.hxx
+++ b/vcl/inc/vcl/status.hxx
@@ -143,9 +143,7 @@ public:
 sal_uInt16 nPos = STATUSBAR_APPEND );
 voidRemoveItem( sal_uInt16 nItemId );
 
-voidHideItem( sal_uInt16 nItemId );
 sal_BoolIsItemVisible( sal_uInt16 nItemId ) const;
-
 sal_BoolAreItemsVisible() const { return mbVisibleItems; }
 
 voidClear();
diff --git a/vcl/source/window/status.cxx b/vcl/source/window/status.cxx
index 32dcc4a..b701697 100644
--- a/vcl/source/window/status.cxx
+++ b/vcl/source/window/status.cxx
@@ -1036,28 +1036,6 @@ void StatusBar::RemoveItem( sal_uInt16 nItemId )
 
 // ---
 
-void StatusBar::HideItem( sal_uInt16 nItemId )
-{
-sal_uInt16 nPos = GetItemPos( nItemId );
-
-if ( nPos != STATUSBAR_ITEM_NOTFOUND )
-{
-ImplStatusItem* pItem = (*mpItemList)[ nPos ];
-if ( pItem-mbVisible )
-{
-pItem-mbVisible = sal_False;
-
-mbFormat = sal_True;
-if ( ImplIsItemUpdate() )
-Invalidate();
-
-ImplCallEventListeners( VCLEVENT_STATUSBAR_HIDEITEM, (void*) 
sal_IntPtr(nItemId) );
-}
-}
-}
-
-// ---
-
 sal_Bool StatusBar::IsItemVisible( sal_uInt16 nItemId ) const
 {
 sal_uInt16 nPos = GetItemPos( nItemId );
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: solenv/gbuild

2011-12-11 Thread Fridrich Strba
 solenv/gbuild/gbuild.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e0ba066d4c84cf6ddc3b65ce6549ec25404f0d84
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Mon Dec 12 03:13:43 2011 +0100

Fix a typo?

diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk
index 256261c..e85ed83 100644
--- a/solenv/gbuild/gbuild.mk
+++ b/solenv/gbuild/gbuild.mk
@@ -311,7 +311,7 @@ gb_XSLTPROCTARGET :=
 gb_XSLTPROC := xsltproc
 else
 gb_XSLTPROCTARGET := $(call gb_Executable_get_target_for_build,xsltproc)
-gb_XSLTPROC := $$(gb_Helper_set_ld_path) $(gb_XSLTPROCTARGET)
+gb_XSLTPROC := $(gb_Helper_set_ld_path) $(gb_XSLTPROCTARGET)
 endif
 
 ifeq ($(SYSTEM_PYTHON),YES)
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-5' - solenv/gbuild

2011-12-11 Thread Fridrich Strba
 solenv/gbuild/gbuild.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 557bf7ae88901b0be44a6b5c139842bead3c3461
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Mon Dec 12 03:13:43 2011 +0100

Fix a typo?

Signed-off-by: Fridrich Å trba fridrich.st...@bluewin.ch

diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk
index 256261c..e85ed83 100644
--- a/solenv/gbuild/gbuild.mk
+++ b/solenv/gbuild/gbuild.mk
@@ -311,7 +311,7 @@ gb_XSLTPROCTARGET :=
 gb_XSLTPROC := xsltproc
 else
 gb_XSLTPROCTARGET := $(call gb_Executable_get_target_for_build,xsltproc)
-gb_XSLTPROC := $$(gb_Helper_set_ld_path) $(gb_XSLTPROCTARGET)
+gb_XSLTPROC := $(gb_Helper_set_ld_path) $(gb_XSLTPROCTARGET)
 endif
 
 ifeq ($(SYSTEM_PYTHON),YES)
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: configure.in connectivity/source

2011-12-11 Thread Fridrich Strba
 configure.in   |6 +++-
 connectivity/source/drivers/postgresql/makefile.mk |   28 +
 2 files changed, 16 insertions(+), 18 deletions(-)

New commits:
commit d1a1585c30c31dec38d32571e9c2bbee4d03
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Mon Dec 12 04:51:49 2011 +0100

Some more postgresql fixes

1. The --enable-extension-integration affects only packaging
2. OUTDIR_FOR_BUILD is for native build in case of crosscompiling

diff --git a/configure.in b/configure.in
index 26e2fd8..59cb7fb 100644
--- a/configure.in
+++ b/configure.in
@@ -5432,8 +5432,10 @@ dnl 
===
 dnl Check for PostgreSQL stuff
 dnl ===
 
-if test x$enable_ext_postgresql_sdbc = xyes -a 
x$enable_extension_integration != xno; then
-SCPDEFS=$SCPDEFS -DWITH_EXTENSION_POSTGRESQL
+if test x$enable_ext_postgresql_sdbc = xyes; then
+if test x$enable_extension_integration = xyes; then
+  SCPDEFS=$SCPDEFS -DWITH_EXTENSION_POSTGRESQL
+fi
 
 AC_MSG_CHECKING([PostgreSQL C interface])
 if test $with_system_postgresql = yes; then
diff --git a/connectivity/source/drivers/postgresql/makefile.mk 
b/connectivity/source/drivers/postgresql/makefile.mk
index 91184d8..29f2029 100644
--- a/connectivity/source/drivers/postgresql/makefile.mk
+++ b/connectivity/source/drivers/postgresql/makefile.mk
@@ -77,6 +77,18 @@ PQ_SDBC_MINOR=8
 PQ_SDBC_MICRO=2
 PQ_SDBC_VERSION=$(PQ_SDBC_MAJOR).$(PQ_SDBC_MINOR).$(PQ_SDBC_MICRO)
 
+.IF $(SYSTEM_POSTGRESQL)==YES
+LIBPQ_LINK=-lpq
+.ELSE #SYSTEM_POSTGRESQL==NO
+.IF $(GUI)$(COM)==WNTMSC
+LIBPQ_LINK=$(OUTDIR)/lib/libpq.lib ws2_32.lib secur32.lib advapi32.lib 
shell32.lib
+.ELSE
+LIBPQ_LINK=$(OUTDIR)/lib/libpq.a
+.ENDIF
+POSTGRESQL_INC=-I$(OUTDIR)/inc/postgresql
+POSTGRESQL_LIB=
+.ENDIF
+
 CFLAGS+=$(POSTGRESQL_INC) \
 -DPQ_SDBC_MAJOR=$(PQ_SDBC_MAJOR) \
 -DPQ_SDBC_MINOR=$(PQ_SDBC_MINOR) \
@@ -97,22 +109,6 @@ SHL1DEF=$(MISC)$/$(SHL1TARGET).def
 DEF1NAME=  $(SHL1TARGET)
 SHL1VERSIONMAP=$(SOLARENV)$/src$/reg-component.map
 
-# use the static version on Windows?
-# LEM 17/11/2011: removed everything except libpq proper;
-#  as per instructions in libpq documentation.
-#  If it turns out the rest was needed, reenable it.
-.IF $(SYSTEM_POSTGRESQL)==YES
-LIBPQ_LINK=-lpq
-.ELSE #SYSTEM_POSTGRESQL==NO
-.IF $(GUI)$(COM)==WNTMSC
-LIBPQ_LINK=$(OUTDIR_FOR_BUILD)/lib/libpq.lib ws2_32.lib secur32.lib 
advapi32.lib shell32.lib
-.ELSE
-LIBPQ_LINK=$(OUTDIR_FOR_BUILD)/lib/libpq.a
-.ENDIF
-POSTGRESQL_INC=-I$(OUTDIR_FOR_BUILD)/inc/postgresql
-POSTGRESQL_LIB=
-.ENDIF
-
 SHL2TARGET=postgresql-sdbc-impl.uno
 LIB2TARGET=$(SLB)$/$(SHL2TARGET).lib
 LIB2OBJFILES= \
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-5' - configure.in connectivity/source

2011-12-11 Thread Fridrich Strba
 configure.in   |6 +++-
 connectivity/source/drivers/postgresql/makefile.mk |   28 +
 2 files changed, 16 insertions(+), 18 deletions(-)

New commits:
commit 58b49d96ad2be04253c3aa7b76144322bb5439ce
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Mon Dec 12 04:51:49 2011 +0100

Some more postgresql fixes

1. The --enable-extension-integration affects only packaging
2. OUTDIR_FOR_BUILD is for native build in case of crosscompiling

Signed-off-by: Fridrich Å trba fridrich.st...@bluewin.ch

diff --git a/configure.in b/configure.in
index 44bb5e9..39c533d 100644
--- a/configure.in
+++ b/configure.in
@@ -5389,8 +5389,10 @@ dnl 
===
 dnl Check for PostgreSQL stuff
 dnl ===
 
-if test x$enable_ext_postgresql_sdbc = xyes -a 
x$enable_extension_integration != xno; then
-SCPDEFS=$SCPDEFS -DWITH_EXTENSION_POSTGRESQL
+if test x$enable_ext_postgresql_sdbc = xyes; then
+if test x$enable_extension_integration = xyes; then
+  SCPDEFS=$SCPDEFS -DWITH_EXTENSION_POSTGRESQL
+fi
 
 AC_MSG_CHECKING([PostgreSQL C interface])
 if test $with_system_postgresql = yes; then
diff --git a/connectivity/source/drivers/postgresql/makefile.mk 
b/connectivity/source/drivers/postgresql/makefile.mk
index 91184d8..29f2029 100644
--- a/connectivity/source/drivers/postgresql/makefile.mk
+++ b/connectivity/source/drivers/postgresql/makefile.mk
@@ -77,6 +77,18 @@ PQ_SDBC_MINOR=8
 PQ_SDBC_MICRO=2
 PQ_SDBC_VERSION=$(PQ_SDBC_MAJOR).$(PQ_SDBC_MINOR).$(PQ_SDBC_MICRO)
 
+.IF $(SYSTEM_POSTGRESQL)==YES
+LIBPQ_LINK=-lpq
+.ELSE #SYSTEM_POSTGRESQL==NO
+.IF $(GUI)$(COM)==WNTMSC
+LIBPQ_LINK=$(OUTDIR)/lib/libpq.lib ws2_32.lib secur32.lib advapi32.lib 
shell32.lib
+.ELSE
+LIBPQ_LINK=$(OUTDIR)/lib/libpq.a
+.ENDIF
+POSTGRESQL_INC=-I$(OUTDIR)/inc/postgresql
+POSTGRESQL_LIB=
+.ENDIF
+
 CFLAGS+=$(POSTGRESQL_INC) \
 -DPQ_SDBC_MAJOR=$(PQ_SDBC_MAJOR) \
 -DPQ_SDBC_MINOR=$(PQ_SDBC_MINOR) \
@@ -97,22 +109,6 @@ SHL1DEF=$(MISC)$/$(SHL1TARGET).def
 DEF1NAME=  $(SHL1TARGET)
 SHL1VERSIONMAP=$(SOLARENV)$/src$/reg-component.map
 
-# use the static version on Windows?
-# LEM 17/11/2011: removed everything except libpq proper;
-#  as per instructions in libpq documentation.
-#  If it turns out the rest was needed, reenable it.
-.IF $(SYSTEM_POSTGRESQL)==YES
-LIBPQ_LINK=-lpq
-.ELSE #SYSTEM_POSTGRESQL==NO
-.IF $(GUI)$(COM)==WNTMSC
-LIBPQ_LINK=$(OUTDIR_FOR_BUILD)/lib/libpq.lib ws2_32.lib secur32.lib 
advapi32.lib shell32.lib
-.ELSE
-LIBPQ_LINK=$(OUTDIR_FOR_BUILD)/lib/libpq.a
-.ENDIF
-POSTGRESQL_INC=-I$(OUTDIR_FOR_BUILD)/inc/postgresql
-POSTGRESQL_LIB=
-.ENDIF
-
 SHL2TARGET=postgresql-sdbc-impl.uno
 LIB2TARGET=$(SLB)$/$(SHL2TARGET).lib
 LIB2OBJFILES= \
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice] random build failures in sfx2/sdi/sfxitems.sdi

2011-12-11 Thread lio...@mamane.lu
Hi,

Just to make sure someone that knows that part of the code gets a
notice (rather than only unrelated people):

There seems to be a failure in sfx2/sdi/sfxitems.sdi
(see attachment and
http://tinderbox.libreoffice.org/cgi-bin/gunzip.cgi?tree=MASTERfull-log=1323593401.28011#err677
)
which is unrelated to the commits since last success, so maybe a race
condition in a parallel build or something like that?

BTW, it took about 20 minutes for the full log to arrive at
http://tinderbox.libreoffice.org/MASTER/status.html; any reason for
such a significant delay?

-- 
Lionel
---BeginMessage---
Hi folks,

One of you broke the build of LibreOffice with your commit :-(
Please commit and push a fix ASAP!

Full log available at http://tinderbox.libreoffice.org/MASTER/status.html

Tinderbox info:

  Box name: Linux-x86-64@8-SLED11
  Machine: Linux ben 2.6.32.12-0.7-default #1 SMP 2010-05-20 11:14:20 +0200 
x86_64 x86_64 x86_64 GNU/Linux
  Configured with: CC=ccache gcc
CXX=ccache g++
--with-num-cpus=4
--with-max-jobs=15
--without-junit
--disable-dependency-tracking
--enable-binfilter

Commits since the last success:

 core 
  95a0d27  typo, trailing whitespace cleanup
  fc0f061  minor around python and SDK
 binfilter 
 dictionaries 
 help 

The error is:

build failed - error is:: log for /local/home/tinderbox/master/sfx2/prj
[ info  ALL ] LinkTarget Library/libxml2.so not defined: Assuming headers to be 
there!
[ build DEP ] SRS:sfx/res
[ build SDI ] sfx2/sdi/sfxslots

/local/home/tinderbox/master/sfx2/sdi/sfxitems.sdi --- error: ( 86, 11 )
may be no value for identifier   at ( 86, 11 )

/local/home/tinderbox/master/sfx2/sdi/sfxitems.sdi --- error: ( 86, 11 )
may be unknown type at ( 86, 11 )

/local/home/tinderbox/master/sfx2/sdi/sfxslots.sdi --- error: ( 38, 5 )
svidl terminated with errors
[ build PKG ] sfx2_inc
[ build PKG ] sfx2_sdi
make[2]: *** No rule to make target 
`/local/home/tinderbox/master/workdir/unxlngx6.pro/SdiTarget/sfx2/sdi/sfxslots',
 needed by 
`/local/home/tinderbox/master/workdir/unxlngx6.pro/Headers/Library/libsfxlo.so'.
  Stop.
make[2]: *** Waiting for unfinished jobs
dmake:  Error code 2, while making 'all'
==
ERROR: error 65280 occurred while making /local/home/tinderbox/master/sfx2/prj

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


Re: [Libreoffice] SDK example cherry pick ?

2011-12-11 Thread Lionel Elie Mamane
On Sun, Dec 11, 2011 at 09:33:15AM +0100, Laurent Godard wrote:

 do you think it would be possible to cherry-pick these SDK example
 commits to 3.5. I see no potential negative impact

As a general idea, it looks good, but personally I miss the background
to evaluate the CSS bits, so I'll leave the cherry-pick to someone
else.

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


Re: [Libreoffice] [PARTIAL-PUSHED] [PATCH] configure.in examples: options shouldn't have quote

2011-12-11 Thread Korrawit Pruegsanusak
Hello Lionel,

On Sun, Dec 11, 2011 at 14:28, Lionel Elie Mamane lio...@mamane.lu wrote:
 Well, IMHO the example is correct _with_ quotation marks, else the
 shell will cut it into several arguments.
 [cut]
 On which platform have you encountered the it breaks with quotation
 marks, but works without quotation marks behaviour you mention?

Aha! Now I know why it fails on me.
If I run
  $ ./autogen.sh --with-some-arguments-here
it should be _with_ quote.

But if I edit autogen.lastrun and just run
  $ ./autogen.sh
without any argument, it will read from autogen.lastrun, and it should
be _without_ quote.

I'm on cygwin, but I think this applies to other platform as well ...

 Second patch is just a trivial change: --with-theme is without s.

 Yes, applied this one. Thanks!

Thanks!

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


Re: [Libreoffice] Does merge modules necessary only for msi installer?

2011-12-11 Thread Korrawit Pruegsanusak
Hello Fridrich, all,

On Sun, Dec 11, 2011 at 12:54, Fridrich Strba
fridrich.st...@graduateinstitute.ch wrote:
 No, not needed to check anything. If you have a compiler, you have them.
 They are part of the compiler installation.

Thanks, I check my installation and I just didn't install the merge module.
Sorry for the noise anyway.

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


Re: [Libreoffice] Commits in connectivity/inc connectivity/source dbaccess/source

2011-12-11 Thread Lionel Elie Mamane
On Sun, Oct 30, 2011 at 06:21:52PM +, Alex Thurgood wrote:

 The stuff you just committed looks interesting,

Thanks :)

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


Re: [Libreoffice] [PARTIAL-PUSHED] [PATCH] configure.in examples: options shouldn't have quote

2011-12-11 Thread Lionel Elie Mamane
On Sun, Dec 11, 2011 at 05:18:36PM +0700, Korrawit Pruegsanusak wrote:
 On Sun, Dec 11, 2011 at 14:28, Lionel Elie Mamane lio...@mamane.lu wrote:

 Well, IMHO the example is correct _with_ quotation marks, else the
 shell will cut it into several arguments.
 [cut]
 On which platform have you encountered the it breaks with quotation
 marks, but works without quotation marks behaviour you mention?

 If I run
   $ ./autogen.sh --with-some-arguments-here
 it should be _with_ quote.

 But if I edit autogen.lastrun and just run
   $ ./autogen.sh
 without any argument, it will read from autogen.lastrun, and it should
 be _without_ quote.

Yes, this smells right, for all platforms.

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


Re: [Libreoffice] postresql-sdbc bits out of minutes of tech. steering call

2011-12-11 Thread Lionel Elie Mamane
On Sat, Dec 10, 2011 at 11:05:02AM +0100, Alexander Thurgood wrote:
 Le 09/12/11 23:10, Thorsten Behrens a écrit :

 And with attached patch, also a plain --enable-ext-postgresql-sdbc
 builds - Norbert, want to double-check  commit?

 So I built yesterday using :

 --with-ext-postgresql-sdbc
 --with-system-postgresql

 If I install this connector.oxt on another machine with MacOSX and a
 running pg instance, when I try to connect I get the following error :

 A driver is not registered for the URL
 sdbc:posgresql:dbhost=localhost dbname=demo

I got a similar error on my Debian GNU/Linux, solved by:

cd /libo/build/tree
rm -r solver/INPATH/installation/opt/share/extensions/postgresql-sdbc/ 
solver/INPATH/inc/postgresql/ solver/INPATH/lib/libpq.* 
connectivity/INPATH/lib/postgresql-sdbc*.{so,dylib,dll}
#build  deliver in connectivity
#forcefully install newly generated .oxt file
cd ~/.config/libreoffice/3/user/extensions/*/extensions.db

Replace INPATH by its value on your platform (something like
unxmaci); ~/.config/libreoffice/ is LibreOffice's user profile
directory on Unix, I'm not sure what it is on MacOS X.


Basically, the --with-system-postgresql build was still linking
statically against the libpq.a in the solver, so essentially was
behaving as a --without-system-postgresql :-| Which suggests
--without-system-postgresql is broken, need to check that out.

 Does your patch fix this problem of portability, i.e. from build
 machine to user machine ?

I don't think so, we need to work on that. In the current situation,
*maybe* if the user machine also install libpq (postgresql C client
library) at the _same_ location than on the build machine, it might
work, I'm not even sure of that. Given the multiplicity of ways to
install libpq on MacOS X, we don't want to require that, but I'm not
sure how to fix that cleanly. I'm waiting for a LibO/MacOS X dev to
chip in on that.

 I'm just trying to suss out the implications for me as the provider
 of the db connector extensions.

For MacOS X, we are still in the getting it to work stage.. We need
your testing for that, thanks for sticking around.

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


[Libreoffice] Question about VersionInfo resource of Windows executables

2011-12-11 Thread Andras Timar
Hi,

I was hacking on VersionInfo resource of Windows executables and I
noticed that DLLs built with dmake always have this resource, they
include solenv/inc/shlinfo.rc. But DLLs built with gmake does not have
VersionInfo resource by default. Is this normal? Executables are fully
functional without VersionInfo resource, but I think it is useful to
have it, because it contains file version, copyright notice etc. I
would like to ask, if it is by design, or if it is an undesired
omission.

Before I pushed my patch (3fbedc3e8f65c91999dcee42daa8312e387dcf40) I
build from scratch with MSVC successfully. However, I learned a few
hours later that I broke MinGW build.
http://tinderbox.libreoffice.org/cgi-bin/gunzip.cgi?tree=MASTERbrief-log=1323606001.25653#21811
I found it strange, because 1) I didn't see any problems at line 38 in
shlinfo.rc; 2) under MSVC no resource was built for ucbhelper. I think
this is related to the general question I asked above.

Could you please check this. Eventually I wanted to cherry-pick
3fbedc3e8f65c91999dcee42daa8312e387dcf40 to libreoffice-3-5, because
it improves VersionInfo a lot (especially regarding branding and file
version data).

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


Re: [Libreoffice] postresql-sdbc bits out of minutes of tech. steering call

2011-12-11 Thread Lionel Elie Mamane
On Sun, Dec 11, 2011 at 03:09:41PM +0100, Lionel Elie Mamane wrote:

 Which suggests --without-system-postgresql is broken, need to check
 that out.

Works, at least on Debian GNU/Linux.

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


Re: [Libreoffice] End of the line for 3.3 family and regressions

2011-12-11 Thread Tommy

On Fri, 09 Dec 2011 21:34:34 +0100, Pedro Lino pedl...@gmail.com wrote:




I think this carries (from a QA point of vue) a much heavier
responsibility and care than the change from 3.4.4 to 3.5.0 (which is
experimental)

The planned release date for 3.4.5 is on January 11, 2012 and
apparently there won't be any Beta releases, it will jump directly to
RC1.

I urge everybody to make sure that EVERY regression detected from
3.3.x to 3.4.x is fixed/added to the 3.4 branch




+1.

LibO 3.4.5 will be the last release of the 3.4.x branch
since there will be no 3.4.6, the bugfixing should be handled with care
maybe a 2 more testing weeks before release (planned date jan 11) would  
help


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


[Libreoffice] Do we support classic and industrial theme? (was: [PATCH] configure.in examples: options shouldn't have quote)

2011-12-11 Thread Korrawit Pruegsanusak
Hello all,

/me separate this into new thread. :)

On Sun, Dec 11, 2011 at 11:47, Korrawit Pruegsanusak
detective.conan.1...@gmail.com wrote:
 Last but not least, I've noticed that there are two themes, classic
 and industrial, that described in AS_HELP_STRING (see context in first
 patch) but not detected while checking (see context in second patch).
 That is, if user pass e.g. --with-theme=classic, it'll fail. So, do we
 really support classic and industrial themes? I've found them listed
 on ooo_custom_images [1], but I'm not sure if it's relevant.

 [1] http://opengrok.libreoffice.org/xref/core/ooo_custom_images/

I've tried to build [2] on cygwin regarding this, adding classic and
industrial into configure.in [3], and result as follows:

--with-theme=classic industrial - no icons at all, no checkboxes, no
theme names in Tools  Options  View  Icon size and style (has
only Automatic). Anyway, overall is somewhat usable, but looks very
ugly.

--with-theme=default classic industrial - it opens with default
theme, overall was as expected, but has only Galaxy (default) in
theme option.

--with-theme=default hicontrast oxygen classic industrial - like
second one, three theme options, and also none of classic nor
industrial.

Maybe a clean build needed? I'm on cygwin, so I wouldn't like `make
clean` much ;)
or maybe configure options related? (I don't think so)

[2] incremental build after success build at
faa285f2679c842b641ca721141218d826bf7ab7 (Dec 2, 2011)
[3] diff as follows:
diff --git a/configure.in b/configure.in
index f8aed0e..132e022 100644
--- a/configure.in
+++ b/configure.in
@@ -8034,7 +8034,7 @@ fi
 WITH_THEMES=
 for theme in $with_theme; do
 case $theme in
-default|crystal|hicontrast|oxygen|tango) : ;;
+default|crystal|hicontrast|oxygen|tango|classic|industrial) : ;;
 *) AC_MSG_ERROR([Unknown value for --with-theme: $theme]) ;;
 esac
 WITH_THEMES=$WITH_THEMES $theme


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


Re: [Libreoffice] Do we support classic and industrial theme? (was: [PATCH] configure.in examples: options shouldn't have quote)

2011-12-11 Thread Tommy
On Sun, 11 Dec 2011 15:39:08 +0100, Korrawit Pruegsanusak  
detective.conan.1...@gmail.com wrote:



Hello all,

/me separate this into new thread. :)

On Sun, Dec 11, 2011 at 11:47, Korrawit Pruegsanusak
detective.conan.1...@gmail.com wrote:
 So, do we really support classic and industrial themes? I've found  
them listed

on ooo_custom_images [1], but I'm not sure if it's relevant.

[1] http://opengrok.libreoffice.org/xref/core/ooo_custom_images/


 [cut]


additional infos about this on the bugtracker:
https://bugs.freedesktop.org/show_bug.cgi?id=38175

basically, the Classic theme was removed in LibO 3.4.0
but you can manually enable it again downloading a 3.4.x compliant
theme ( images_classic.zip ) from the issue tracker and copying it the  
proper location:


\Bin\LibreOffice 3\Basis\share\config (in Windows, don't know if it's the  
same in Linux and Mac)


this works in 3.4.x but doesn't work on 3.5 master

my guess is that in LibO 3.4.x the devs just removed physically the
images_classic.zip file but the software still has some code somewhere  
pointing

towards that file.

indeed if you put a images_classic.zip file under 3.4.x you can enable the
classic theme.

however if you rename the images_classic.zip with something else (i.e.
images_dummy.zip) LibO 3.4.x fails to recognize that theme.

probably the code in 3.5.x has been cleaned and there's no place for the
classic theme yet, but just for the other themes (Tango, Galaxy etc. etc.)

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


Re: [Libreoffice] Do we support classic and industrial theme? (was: [PATCH] configure.in examples: options shouldn't have quote)

2011-12-11 Thread Rainer Bielefeld

Tommy schrieb:


probably the code in 3.5.x has been cleaned and there's no place for the
classic theme yet, but just for the other themes (Tango, Galaxy etc. etc.)


Hi,

And what's your theory concerning the fact that (at least) tango theme 
copied from 3.4 to master will not work, too?


CU


Rainer

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


Re: [Libreoffice] random build failures in sfx2/sdi/sfxitems.sdi

2011-12-11 Thread Christian Lohmaier
Hi Lionel, *,

On Sun, Dec 11, 2011 at 10:58 AM, lio...@mamane.lu lio...@mamane.lu wrote:

 There seems to be a failure in sfx2/sdi/sfxitems.sdi
 (see attachment and
 http://tinderbox.libreoffice.org/cgi-bin/gunzip.cgi?tree=MASTERfull-log=1323593401.28011#err677

Any reason why you are using the huge full-log instead of the brief log?
http://tinderbox.libreoffice.org/cgi-bin/gunzip.cgi?tree=MASTERbrief-log=1323593401.28011#err677

 BTW, it took about 20 minutes for the full log to arrive at
 http://tinderbox.libreoffice.org/MASTER/status.html; any reason for
 such a significant delay?

The cronjob that regenerates the page is only run every 15 minutes or
so. I don't consider it a significant delay when a build takes 2½-3
hours...

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


Re: [Libreoffice] random build failures in sfx2/sdi/sfxitems.sdi

2011-12-11 Thread lio...@mamane.lu
On Sun, Dec 11, 2011 at 05:48:54PM +0100, Christian Lohmaier wrote:
 On Sun, Dec 11, 2011 at 10:58 AM, lio...@mamane.lu lio...@mamane.lu wrote:

 There seems to be a failure in sfx2/sdi/sfxitems.sdi
 (see attachment and
 http://tinderbox.libreoffice.org/cgi-bin/gunzip.cgi?tree=MASTERfull-log=1323593401.28011#err677

 Any reason why you are using the huge full-log instead of the brief log?
 http://tinderbox.libreoffice.org/cgi-bin/gunzip.cgi?tree=MASTERbrief-log=1323593401.28011#err677

I thought the brief log was the same as the contents of the email to
committers and I couldn't make sense of that. That's why I went to
http://tinderbox.l.o in the first place.

 BTW, it took about 20 minutes for the full log to arrive at
 http://tinderbox.libreoffice.org/MASTER/status.html; any reason for
 such a significant delay?

 The cronjob that regenerates the page

Ah, it is a cronjob, I see.

 is only run every 15 minutes or so. I don't consider it a
 significant delay when a build takes 2½-3 hours...

From the POV of a committer that gets the you broke the build mail
and would like to investigate it, it can feel long (it did for me).

Besides, a build takes 2.5-3 hours is not true:

Linux-Gentoo-x86_64_2-no-moz_no-binfilter had several successful
builds in 17-18 minutes.

MacOSX-Intel_1-built_no-moz_on_10.6.8: several at 18-19 minutes, but
then an outlier at 105 minutes.


In general *failed* builds can be _much_ shorter than successful
builds if the error is early... And failed builds is the logs you want
to see :) The tinderbox I was interested in (Linux-x86-64_8-SLED11)
has a rather high variability in build time:

25, 33, 145, 41, 32, 37, 26, 154, 183, 96, 88, 100, 45, 102, 22, 137, ...


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


Re: [Libreoffice] postresql-sdbc bits out of minutes of tech. steering call

2011-12-11 Thread Lionel Elie Mamane
On Sat, Dec 10, 2011 at 01:53:20AM +0200, Tor Lillqvist wrote:
 Stephan Bergmann sberg...@redhat.com wrote:

  libpq.5.dylib (compatibility version 5.0.0, current version 5.3.0)

 That way it won't be found at runtime.  If it is a lib from the
 system, it should have an absolute path (like the ones below), if
 it is part of LO it should be referenced relatively via
 @loader_path (like the ones above).

 Well, as a system lib I understand it can be installed nearly anywhere

 Er... huh? Isn't the very definition of a system library one that is
 installed in a fixed known location, as part of the operating
 system?

With that definition of a system library, libpq is neither a lib
from the system, nor part of LO.

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


Re: [Libreoffice] Do we support classic and industrial theme? (was: [PATCH] configure.in examples: options shouldn't have quote)

2011-12-11 Thread Tommy
On Sun, 11 Dec 2011 17:41:22 +0100, Rainer Bielefeld  
libreoff...@bielefeldundbuss.de wrote:



Tommy schrieb:


probably the code in 3.5.x has been cleaned and there's no place for the
classic theme yet, but just for the other themes (Tango, Galaxy etc.  
etc.)


Hi,

And what's your theory concerning the fact that (at least) tango theme  
copied from 3.4 to master will not work, too?


CU


Rainer




Hi Reiner,
as far as I know, LibO 3.3.x had 6 available themes:

Galaxy, Tango, Crystal, Hi-Contrast, Oxygen, Classic

the themes were extensively reworked in 3.4.x in order to get rid of  
duplicate icons.
during this process the devs decided to remove the Classic theme, leaving  
the other 5:

Galaxy, Tango, Crystal, Hi-Contrast, Oxygen

as I told before something in the code about the Classic theme remained  
somewhere and allowed us to re-introduce the Classic after reformatting it  
to be compatible with 3.4.x.
Indeed if you use the zipped file from the 3.3.x release you will suffer  
inconsistencies


regarding 3.5 master I'm sorry I can't help... I have never installed that  
release...
so please, try to better explain what's the issue about the Tango theme  
from 3.4.x ...


isn't the Tango theme already available in 3.5 master?
did the devs remove it in master as they did in 3.4.x with Classic?
have the existing icon themes been reworked again in 3.5?

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


Re: [Libreoffice] postresql-sdbc bits out of minutes of tech. steering call

2011-12-11 Thread Fridrich Strba

On 09/12/11 23:10, Thorsten Behrens wrote:

And with attached patch, also a plain --enable-ext-postgresql-sdbc
builds - Norbert, want to double-check  commit?


Sorry, I added that all-static-lib to the target unconditionally, since 
that is not harming anything. I did not read this e-mail. I would 
otherwise give you the credits for it.


Cheers

F.


--
Please avoid sending me Word, Excel or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] postresql-sdbc bits out of minutes of tech. steering call

2011-12-11 Thread Fridrich Strba

On 11/12/11 15:17, Lionel Elie Mamane wrote:

Which suggests --without-system-postgresql is broken, need to check
that out.

Works, at least on Debian GNU/Linux.


Does it mean that the --without-system-postgresql is working now?

If not, first thing to check (on other platforms then x86 would be 
whether the static library is built with PIC. Since it needs to end in a 
shared object, that might be necessary.


Cheers

F.

--
Please avoid sending me Word, Excel or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html
___
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-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Mihkel Tõnnov mihh...@gmail.com changed:

   What|Removed |Added

 Depends on||41996

--- Comment #237 from Mihkel Tõnnov mihh...@gmail.com 2011-12-11 13:14:33 PST 
---
Nominating Bug 41996 - Can't move slides in slide sorter.
Quite annoying.
(Seems to not affect everyone, though.)

-- 
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] Question about VersionInfo resource of Windows executables

2011-12-11 Thread Andras Timar
2011/12/11 Andras Timar tima...@gmail.com:
 Before I pushed my patch (3fbedc3e8f65c91999dcee42daa8312e387dcf40) I
 build from scratch with MSVC successfully. However, I learned a few
 hours later that I broke MinGW build.
 http://tinderbox.libreoffice.org/cgi-bin/gunzip.cgi?tree=MASTERbrief-log=1323606001.25653#21811
 I found it strange, because 1) I didn't see any problems at line 38 in
 shlinfo.rc; 2) under MSVC no resource was built for ucbhelper. I think
 this is related to the general question I asked above.

So, I installed my first MinGW build (it's a shame that I didn't try
before ;)) and I fixed this build breaker with
f129c4f766c30b174544ec234cbd72c7050a2fc1. Interestingly the .res file
is built but it is not linked to the dll, so my original question is
still valid. A gbuild expert should take a look at the problem.

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


Re: [Libreoffice] [Libreoffice-qa] Call for LO-3.5.0-beta1 pre-tag testing

2011-12-11 Thread Andras Timar
2011/12/11 Fridrich Strba fridrich.st...@graduateinstitute.ch:
 On 10/12/11 07:34, Petr Mladek wrote:

 The 64-bit build for few localizations is being uploaded at

 http://dev-builds.libreoffice.org/daily/Linux_x86_64_Release_Configuration/libreoffice-3-5/

 It is built the same way like the 32-bit build, see above. We started
 the regular tinderbox again.

 Please, do not get confused that the two Linux builds has the version
 beta0 in the name a no time, ... They were uploaded manually. The builds
 produced by tinderbox will have the right names for dailies again.


 I have produced the release like Windows build too. It is currently
 landing at
 http://dev-builds.libreoffice.org/daily/Windows_Release_Configuration/libreoffice-3-5/
 It is a result of a checkout from Friday night and it should contain the new
 postgresql connector. Would be thus nice to test whether it works. In case
 you have a pgsql server to connect to.

 Some packaging issues with our libreoffice-3-5 branch:
 1) Although we produce a LibreOffice_Dev target, the resulting download
 packages/msi installer don't have the Dev in its name.
 2) I produced an SDK installer (not uploaded though) and it has no mention
 of SDK in the name either. That is the reason I did not upload it because
 it would just confuse people.


I fixed both issues with d75885f5190ef3bc12932db281af4ac74f7a0616 in
libreoffice-3-5 branch (and in master, too). Script expected
LibO-dev and it received LOdev. BTW there are at least two methods
implemented for download name creation, it is a bit confusing. :)

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


Re: [Libreoffice] postresql-sdbc bits out of minutes of tech. steering call

2011-12-11 Thread Lionel Elie Mamane
On Thu, Dec 08, 2011 at 06:45:30PM +0100, Lionel Elie Mamane wrote:
 On Thu, Dec 08, 2011 at 04:19:04PM +, Michael Meeks wrote:

 * postgresql fun. non-internal

  + Windows - run-time DLL dependency a pain (Lionel)
  + ship DLL ourselves ?

 This is not a question mark, we have to do that, or link statically,
 be it only because of Fridrich-mentioned problems.

 Note that currently postgresql-sdbc always links statically when
 using internal PostgreSQL.

I did that because it seemed the easiest thing to do at first
sight. However, we are losing the advantage of that, and thus I
propose we switch to dynamic linking, and bundling the lib on
platforms / situations that need it.

I started actually testing the internal PostgreSQL C client library
build in use, and I realised it is rather crippled:

 - no SSL/TLS support, for encrypted communication with the DB server
   and authentication by X.509 certificate.

 - no Kerberos support: authentication; apparently can be used for
   windows domain single signon from a non-windows machine.

 - no GSSAPI support: yet another authentication mechanism

 - no LDAP support: yes, in the client library: this allows to store
   the connection info in LDAP and thus manage it centrally. Can be
   really convenient in enterprise environment.

Leaving only hardcoded-in-LibreOffice's .odb file connection string
with user/password authentication. Of these features I'd expect SSL
(encrypted connection) is the most widely used one.

I started hacking our internal postgresql to activate all this, but
this introduces dependencies on yet other libraries: OpenSSL, MIT
Kerberos, com_err, ldap, ... This means that linking statically
against libpq is not the easiest anymore, since static linking does
not automatically recurse, in the way that dynamic linking does :)
More deeply, we don't gain anything/much by linking statically against
libpq, but dynamically against these other libs. But linking
statically against some of these other libs is
significantly harder than dynamic link:

 - At least on my Debian, libssl is not compiled with -fPIC, so a
   dynamic library (postgresql-sdbc-impl.so) cannot link statically
   against it. This could be solved by recompiling OpenSSL ourselves.

 - MIT kerberos does not support static linking; vaguely discussed how
   to allow it in 2006, but no progress since then:
   http://krbdev.mit.edu/rt/Ticket/Display.html?id=3838
   That's not something we'll solve simply by recompiling MIT krb5...


So, to me it looks like we'll switch to dynamic linking against libpq
and shipping the DLL/SO/DYLIB on the platforms/cases that need it. Any
platform where this will be harder than what I presume?

As an added bonus, this makes it easier for our users to upgrade the
libraries we link against (for bugfixes or new features in new
versions or ...): just overwrite the DLL/SO/DYLIB file with an
upstream-provided one (downloaded from http://www.postgresql.org).


What I'm not totally clear about is how we will generate the list of
libraries to bundle. I could imagine recursing through the DT_NEEDED
fields of the .so files (and the equivalent of that on other
platforms), and stopping when hitting a known system library (such
as libc, libresolv, etc); I imagine this exact same problem must have
been solved already elsewhere in LibreOffice and we have a dmake/make
recipe we can apply / reuse? Or is it not so?


This also means that by our we have to build everything we ship
rule, we have to internalise, according to my first quick survey:

 - OpenSSL: I expect all platforms. It is a system lib on most
GNU/Linux distributions, but the soname is not stable.

 - MIT Kerberos:

   * MacOS X bundles Kerberos since 10.2, which AFAIK is behind our
 baseline of 10.4; is it binary-compatible across releases? Then
 we can consider it a system library on MacOS X and not
 internalise / ship it.

   * GNU/Linux: What's our baseline there? Has the soname changed
 since our baseline? Is the soname consistent across
 distributions? If noyes, then system lib and don't ship it.
 Debian seems to have a stable soname since woody (released 19
 July 2002), so I expect this will be OK.

 If we have to internalise it, it depends on:

 ° libcom_err: built from e2fsprogs sources on my Debian, soname
   libcom_err.so.2. Google tells me (some?) RPM
   distributions have a libcom_err.so.3 that is
   shipped by the MIT Kerberos RPM itself.

 - Kerberos for Windows: that's not part of the OS - internalise
   (http://web.mit.edu/kerberos/dist/index.html#kfw-3.2)

 - LDAP: We already have OpenLDAP-related stuff in configure.in... So
 can postgresql-sdbc just use that, or is the existing stuff
 too optional? I mean it seems to be replacing some Mozilla
 parts, not sure we enable it on our builds or if it just a
 service to distributions. If cannot just use:

Re: [Libreoffice-qa] End of the line for 3.3 family and regressions

2011-12-11 Thread Tommy

On Fri, 09 Dec 2011 21:34:34 +0100, Pedro Lino pedl...@gmail.com wrote:




I think this carries (from a QA point of vue) a much heavier
responsibility and care than the change from 3.4.4 to 3.5.0 (which is
experimental)

The planned release date for 3.4.5 is on January 11, 2012 and
apparently there won't be any Beta releases, it will jump directly to
RC1.

I urge everybody to make sure that EVERY regression detected from
3.3.x to 3.4.x is fixed/added to the 3.4 branch




+1.

LibO 3.4.5 will be the last release of the 3.4.x branch
since there will be no 3.4.6, the bugfixing should be handled with care
maybe a 2 more testing weeks before release (planned date jan 11) would  
help


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


Re: [Libreoffice-qa] Which nightly/daily build should be used?

2011-12-11 Thread Pedro Lino
The problem arises again:

For Beta0 testing Petr Mladek suggests getting the latest from
http://dev-builds.libreoffice.org/daily/Win-x86@6-fast/libreoffice-3-5/current/
(this machine builds and uploads quite frequently)

Thorsten Behrens suggests
 http://dev-builds.libreoffice.org/pre-releases
(this folder contains the Win-x86@6 MSVC build from
2011-12-09_12.44.50 but machine #6 only uses core, dictionaries and
help)

and finally Fridrich Strba suggests
http://dev-builds.libreoffice.org/daily/Windows_Release_Configuration/libreoffice-3-5/
(this is a build that finished compiling at 11-Dec-2011 06:51, it
doesn't have a log but it includes all 5 repositories)

Since these 3 folders contain binaries compiled at different times
from different repositories, the question is: which one should we use?

I repeat my previous question: Is it important for testing purposes
how many/which repositories are used?

--
Pedro
___
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 42694] EDITING: Crash when insert Table Control

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

--- Comment #7 from Caolán McNamara caol...@redhat.com 2011-12-11 00:27:22 
PST ---
http://cgit.freedesktop.org/libreoffice/core/commit/?id=5b674bd583868abde278ebdf73bb2197849a49ae
is where it broke

-- 
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 43705] New: UI: Switching landscape - portrait leaves ugly fragments in page pane

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

 Bug #: 43705
   Summary: UI: Switching landscape - portrait leaves ugly
fragments in page pane
Classification: Unclassified
   Product: LibreOffice
   Version: LibO Master
  Platform: Other
OS/Version: Windows (All)
Status: UNCONFIRMED
  Keywords: regression
  Severity: normal
  Priority: medium
 Component: Drawing
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: libreoff...@bielefeldundbuss.de


Steps how to reproduce with Server Installation of  LibreOffice 3.5.0 - WIN7
Home Premium (64bit) English UI [Build ID: 35c8573-95bcc5e-4c1bcb]
Win-x86@6-fast  pull time 2011-12-09 12:44:50:

1. Start LibO
LibO Start Center appears
2. New Drawing
Nes single portrait orientated single a4 page document appears
3. Menu 'Format - Page - Landscape'
   As expected orientation switches to landscape
   Unexpected: ugly portraitfragment remains in Page Pane

Was OK in 3.4.4, so regression

Also no problem in MinGW Build 2111-11-25 and Beta0, first visible with Server
installation of MSVC Master LibO-dev 3.5.0 – WIN7 Home Premium (64bit) ENGLISH
UI [Build ID:  a286353-090bcba-3bf3b94] Win-x86@6 – 2011-12-02_22:36:35)

The problem disappears when I modify page size to letter in report version, I
did not check this for other versions.

-- 
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 43705] UI: Switching landscape - portrait leaves ugly fragments in page pane

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

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-11 01:24:47 PST ---
Created attachment 54313
  -- https://bugs.freedesktop.org/attachment.cgi?id=54313
Screenshot

See original report!

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


[Libreoffice-bugs] [Bug 43707] New: FILEOPEN PDF brings up (ASCII) filter selector instead of opening document

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

 Bug #: 43707
   Summary: FILEOPEN PDF brings up (ASCII) filter selector instead
of opening document
Classification: Unclassified
   Product: LibreOffice
   Version: LibO Master
  Platform: Other
OS/Version: Windows (All)
Status: UNCONFIRMED
  Keywords: regression
  Severity: major
  Priority: medium
 Component: Drawing
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: libreoff...@bielefeldundbuss.de


Steps how to reproduce with Server Installation of  LibreOffice 3.5.0 - WIN7
Home Premium (64bit) English UI [Build ID: 35c8573-95bcc5e-4c1bcb]
Win-x86@6-fast  pull time 2011-12-09 12:44:50 :
1. Start LibO
Start center appears
2. Menu 'file - Open - Arbitrary.PDF'
   Expected: document will be opened
   Actual: Filter list  (other Master versions: ASCII filter) appears

Extension is installed, but does not work.

Latest version I tested and see it working: Server installation of Master
LibO-dev 3.5.0 – WIN7 Home Premium (64bit) ENGLISH UI [(Build ID: 
d38713d-5d03837-ca7e6f5-c4bb9bd-ce71330)] (Voreppe_Win32_Tinderbox 15)

New User Profile die not help.

I see this as a major one

-- 
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 34432] firebird ODBC: LibO hangs on 64 bits

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

--- Comment #9 from Lionel Elie Mamane lio...@mamane.lu 2011-12-11 01:53:15 
PST ---
Actually, I see in the commit log:

 Author: Michael Stahl mst...@redhat.com
 Date:   Sat Dec 10 00:23:42 2011 +0100

cairo: fix RPATH:

The cairo configure script is called with -Wl,-rpath,12345ORIGIN
with funny results so tweak the quoting so that the $$ makes it through...
(cherry picked from commit 408672d41b261b33fb3bbc272d25815dda0e2663)

This commit looks like it can be related to the undefined symbol problem you
are having (and would fix it). So trying with a more recent daily build (from
10 december or later) seems more relevant than the fresh profile (but if the
more recent daily fails in the same way, by all means, try the fresh profile,
too).

It is probably best to use a libreoffice-3-5 daily (rather than a master
daily).

-- 
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 43702] libreoffice 3.5 writer crashes when directly spellchecking and writing user defined directory

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

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-11 02:11:29 UTC ---
Known problem from Bug 43422 - Spell check: Crash Runtime Error with
AutoSpellcheck

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

-- 
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 43422] Spell check: Crash Runtime Error with AutoSpellcheck

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

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

   What|Removed |Added

 CC||e...@arcor.de

--- Comment #7 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-11 02:11:29 UTC ---
*** Bug 43702 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 43708] New: MSI: Com registration of a few components uses wrong path

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

 Bug #: 43708
   Summary: MSI: Com registration of a few components uses wrong
path
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.0 Beta0
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Installation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: khagar...@gmail.com


Created attachment 54317
  -- https://bugs.freedesktop.org/attachment.cgi?id=54317
MsiVal output

g_r_c_087b3ae3_e237_4467_b8db_5a38ab959ac9_inprocserver32
g_r_c_3b092f0c_7696_40e3_a80f_68d74da84210_inprocserver32
g_r_c_63542c48_9552_494a_84f7_73aa6a7c99c1_inprocserver32
g_r_c_7bc0e710_5703_45be_a29d_5d46d8b39262_inprocserver32
g_r_c_ae424e85_f6df_4910_a6a9_438797986431_inprocserver32
g_r_c_c52af81d_f7a0_4aab_8e87_f80a60ccd396_inprocserver32

All the above registry entries use wrong path in the value column. They use
[INSTALLLOCATION], where it should be [LO35_progr].

Also I'm attaching output from the Microsoft MsiVal 2 tool, but that is more a
curiosity than anything else. All the reported errors are more a style thing
than errors that would break the installation. But some of the reported issues
might cause a real error in some cases, so I think it's worth at least a quick
look.

-- 
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 43511] UI: Navigation (F5) dialog lacks a search function

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |enhancement
   Priority|medium  |low
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1
Version|LibO 3.4.4 release  |LibO 3.3.0 Beta2
  Component|Writer  |UI

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-11 02:14:46 PST ---
We never had that, might be a good Idea, but imho low priority

-- 
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 43512] UI: Navigation dialog forgets its configuration when terminated

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

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

   What|Removed |Added

   Severity|normal  |enhancement
   Priority|medium  |lowest
 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|UI: Navigation dialog   |UI: Navigation dialog
   |forgets its configuration   |forgets its configuration
   |when closed |when terminated

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-11 02:21:06 PST ---
I believe this one is WONTFIX because the simple workaround is to reduce
'docked_ Navigator Pane size to 0 with a simple mouse click. But yes, might be
useful for undocked navigator.

@hindm...@netzero.net
May be you should present your Idea on the Experimental voting page
http://wiki.documentfoundation.org/Vote_for_Enhancement

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


[Libreoffice-bugs] [Bug 39054] rtf: Heading styles are centered but should left aligned

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

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #6 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-12-11 
02:58:32 PST ---
Looks correct in the current libreoffice-3-5 branch (next 3.5.0 release) with
the new RTF filter.
Closing as resolved.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 43513] UI: Navigator Dialog's Drop down box for heading levels shown does not affect the heading levels shown

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

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

   What|Removed |Added

 OS/Version|All |Linux (All)
 Status|UNCONFIRMED |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-11 03:01:28 PST ---
NOT Reproducible with LibreOffice 3.4.4  - WIN7 Home Premium (64bit) German UI
[Build ID: OOO340m1 (Build:402)]. Modifying in Navigator context menu 'Outline
level' shows or hides exactly the expected headings in my sample document.

@reporter:
please attach a sample document and contribute a document related stp by step
instruction!

-- 
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 43710] New: Closing LibreOffice Credits or License window closes LibreOffice

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

 Bug #: 43710
   Summary: Closing LibreOffice Credits or License window closes
LibreOffice
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.3.4 release
  Platform: x86 (IA32)
OS/Version: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: pedl...@gmail.com


If you open LibreOffice (no application) and click on Help, LibreOffice Credits
or in Help, License Information, Show License, closing those documents will
also close LibreOffice.

This is not a big problem. Just unexpected and annoying :)

Was found to occur in LO 3.3.x, 3.4.x and 3.5.x under Windows XP Pro x86 SP3

-- 
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 43710] Closing LibreOffice Credits or License window closes LibreOffice

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

pedl...@gmail.com changed:

   What|Removed |Added

 OS/Version|All |Windows (All)

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


[Libreoffice-bugs] [Bug 34394] Filter order of actions inconsistent

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

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

   What|Removed |Added

 Status|NEEDINFO|NEW
  Status Whiteboard|infoprovider:LibreOffice@bi |
   |elefeldundbuss.de   |

-- 
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 40012] Incorrectly opened very simple rtf file in 3.4.2, regression compared to 3.3

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

--- Comment #9 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-12-11 
03:23:57 PST ---
All three files open correctly in libreoffice-3-5 branch (next release 3.5.0
which contains the new RTF filter) under Ubuntu 10.04 x86_64 with FR langpack.
Will make same tests under MS-Windows before to mark this bug fixed.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 43711] New: FILEOPEN: LibreOffice Calc crashes when opening a xlsx-file

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

 Bug #: 43711
   Summary: FILEOPEN: LibreOffice Calc crashes when opening a
xlsx-file
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: All
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: eje.hjelmqu...@gmail.com


When the software has loaded half(approx) the file it crashes.
Syslog says:
kernel: [ 3400.148827] soffice.bin[5919]: segfault at 34 ip abab14b7 sp
bfd6ecc0 error 4 in libooxli.so[ab84+39c000]


uname: 3.0.0-13-generic-pae #22-Ubuntu SMP Wed Nov 2 15:17:35 UTC 2011 i686
i686 i386 GNU/Linux

Happens all the time with large files. Sometimes small files open correctly.

Same behaviour on an old OpenOffice on Ubuntu 10

-- 
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 43712] New: Error with regular expressions

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

 Bug #: 43712
   Summary: Error with regular expressions
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.2 release
  Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: lis...@singsang.at


I use Libreoffice database with postgresql. When using a filterexpression for a
form which includes regaular expressions i get a error message when applying
filter. It seems that the problem is the '~' operator. I can use 'LIKE' instead
of regular expression this works ok. But when i use '~~' instead of the 'LIKE'
operator i get the same error as with regular expression

-- 
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 43713] New: VLOOKUP function does not accept FALSE as Sort Order

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

 Bug #: 43713
   Summary: VLOOKUP function does not accept FALSE as Sort Order
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: high
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: pedl...@gmail.com


This is a regression from 3.3.4.

When EDITING a Calc cell, if you type FALSE as Sort Order for the VLOOKUP
function in 3.3.4 it is automatically converted to zero. This is not expected
but it has the same meaning (it is still a small bug, since FALSE is a valid
argument)

In 3.4.4 (and 3.5.0) typing FALSE is accepted but the function results in #NAME
(i.e. it's unusable)

-- 
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-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43701

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

   What|Removed |Added

 Depends on||43714

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-11 05:16:44 PST ---
Related: Bug 43714 - VIEWING Context Menu: Checkmarks and radio button dots
misaligned

-- 
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 40391] autogen.sh does not notice, that files in external/msvcp80 are missing

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

--- Comment #4 from Regina Henschel rb.hensc...@t-online.de 2011-12-11 
05:49:34 PST ---
This issue is about msvcp80 not about msvcp90.

-- 
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 43715] New: : No compression with presentation minimizer

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

 Bug #: 43715
   Summary: : No compression with presentation minimizer
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Presentation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: mr.magicvi...@gmail.com


When I try to minimize a presentation, I could change each options, there's no
reduction of the siez.
The presentation wizard tell me that my presentation 3,5Mo will be reduce to
1,1 Mo but at the end it still 3,5 Mo.


Browser: Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/20100101 Firefox/5.0
Iceweasel/5.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 40391] autogen.sh does not notice, that files in external/msvcp80 are missing

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

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |
 Ever Confirmed|0   |1

--- Comment #5 from Korrawit Pruegsanusak detective.conan.1...@gmail.com 
2011-12-11 06:20:03 PST ---
Sorry :( Reopening this.

-- 
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 43717] New: FILESAFE: CSV file note put () around string

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

 Bug #: 43717
   Summary: FILESAFE: CSV file note put () around string
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: mesrabah...@yahoo.fr


Exporting data as a csv file not wrking correctly: save data as csv file and
select utf-8 with , as delimiter and () around data not work

ex: row1,data1,data2 when exported should be: row1,data1,data2 but the
résulte is: row1,data1,data2

the csv save worked in openoffice 3.2 but not in libreoffice!

Cheers

-- 
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 43718] New: Crahsed

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

 Bug #: 43718
   Summary: Crahsed
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: ando...@mail.ru


Created attachment 54323
  -- https://bugs.freedesktop.org/attachment.cgi?id=54323
try to open

When i open the document RazdelTWO.odt

-- 
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 43640] Install Error 1606

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

--- Comment #6 from Scott M. Sanders scottmitchellsand...@gmail.com 
2011-12-11 07:52:04 PST ---
It does seem like a duplicate of bug 43454, or at least similar if you are just
considering these as ambiguous 3.4.4 installation bugs.

It is not quite a dupe of 36677 though, because I was installing and
uninstalling with admin rights.

-- 
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 43640] Install Error 1606

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

--- Comment #7 from Scott M. Sanders scottmitchellsand...@gmail.com 
2011-12-11 07:52:22 PST ---


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

-- 
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 43454] Break-off with message Terminate Quick Starter

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

Scott M. Sanders scottmitchellsand...@gmail.com changed:

   What|Removed |Added

 CC||scottmitchellsanders@gmail.
   ||com

--- Comment #4 from Scott M. Sanders scottmitchellsand...@gmail.com 
2011-12-11 07:52:22 PST ---
*** Bug 43640 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 39903] FORMATTING: Table number format not retained

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

--- Comment #5 from Russ Fineman upsc...@nwi.net 2011-12-11 09:42:36 PST ---
Note this bug has reappeared in both openSUSE version of 3.4.4 and Vanilla
version from LibreOffice website in the writer (Table--Number Format).

  LibreOffice 3.4.4 OOO340m1 (Build:402)
  openSUSE 12.1 (3.1.0-1.2-desktop #1)

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


[Libreoffice-bugs] [Bug 43720] New: Cells background color is printed even when the cell protection

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

 Bug #: 43720
   Summary: Cells background color is printed even when the cell
protection 
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: muddbu...@yahoo.com


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


[Libreoffice-bugs] [Bug 43720] Cells background color is printed even when the cell protection PRINTING FORMATTING

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

Phil Nichols muddbu...@yahoo.com changed:

   What|Removed |Added

Summary|Cells background color is   |Cells background color is
   |printed even when the cell  |printed even when the cell
   |protection |protection  PRINTING
   ||FORMATTING

--- Comment #1 from Phil Nichols muddbu...@yahoo.com 2011-12-11 10:14:16 PST 
---
When printing a sheet that has cells formatted with the property to hide with
printing, the cell contents and borders are not printed, but the background
color is printed. I believe this is incorrect behavior.

This is true regardless of the setting of the
tools\options\calc\print\suppress output of empty pages item.

I believe the background color of a cell should be a property of the cell and
it should be printed or not printed when the cell is printed or not printed.
The cell may be printed or not, but it is not correct to print some parts of
the cell and not others.

I believe the CELL should have properties of:
  content (text, for example)
  background color
  border
  etc.

If a CELL is protected from printing with hide when printing, no property of
that cell should be printed - including the background color.

If a CELL has background color but no text content and no border, then the cell
is not null and it should be printed unless the hide when printing property
is set.

If all of the cells on a printable page have no content, no background color
and no border, or were marked as hide when printing then that page would be
elgible to be print-suppressed depending up the suppress output of empty
pages setting.

I believe thinking about cell(s) this way would clear up all of these
inconsistencies when printing.

-- 
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 43720] Cells background color is printed even when cell protection is hide from printing. PRINTING FORMATTING

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

Phil Nichols muddbu...@yahoo.com changed:

   What|Removed |Added

Summary|Cells background color is   |Cells background color is
   |printed even when the cell  |printed even when cell
   |protection  PRINTING   |protection is hide from
   |FORMATTING  |printing. PRINTING
   ||FORMATTING

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


[Libreoffice-bugs] [Bug 40012] Incorrectly opened very simple rtf file in 3.4.2, regression compared to 3.3

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

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #10 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-12-11 
10:48:02 PST ---
(In reply to comment #9)
 All three files open correctly in libreoffice-3-5 branch (next release 3.5.0
 which contains the new RTF filter) under Ubuntu 10.04 x86_64 with FR langpack.
 Will make same tests under MS-Windows before to mark this bug fixed.
 
 Best regards. JBF

Ok in MS-Windows-XP too (LOdev 3.5.0 Build ID: f923851-95bcc5e-4c1bcb5)

I suggest you to test with the next 3.5.0 beta-1 which would be available next
week.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 43718] CRASH when FILEOPEN particular document

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

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

   What|Removed |Added

 OS/Version|Linux (All) |All
 Status|UNCONFIRMED |RESOLVED
  Status Whiteboard||target:3.5.0
 Resolution||WORKSFORME
   Severity|blocker |major
 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|Crahsed |CRASH when FILEOPEN
   ||particular document
   Keywords||regression

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-11 11:03:14 PST ---
[Reproducible] with LibreOffice 3.4.4  - WIN7 Home Premium (64bit) German UI
[Build ID: OOO340m1 (Build:402)].

Worked fine with LibreOffice Portable 3.3.3  - WIN7  Home Premium (64bit)
German UI [OOO330m19 (Build:301  Tag 3.3.3.1)], so REGRESSION.

Works fine with Server Installation of  LibreOffice 3.5.0 - WIN7 Home Premium
(64bit) English UI [Build ID: 35c8573-95bcc5e-4c1bcb] Win-x86@6-fast  pull time
2011-12-09 12:44:50, so WFM without further investigation what in the document
might cause the crash.

-- 
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 40937] FILEOPEN: rtf doc crashing libreoffice

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

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

   What|Removed |Added

 AssignedTo|libreoffice-b...@lists.free |vmik...@frugalware.org
   |desktop.org |

--- Comment #5 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-12-11 
12:38:20 PST ---
No crash with libreoffice-3-5 branch (LibreOffice 3.5.0 
Version ID : 7b96bd7-7f15fca-1f1fd1a-ca8e46d-5bcbce4) under Ubuntu 10.04 x86_64
with FR langpack.

However, I get this error message in the terminal when I open the bugdoc:
../writerfilter/source/dmapper/GraphicImport.cxx:1505 failed. Message
:GraphicCrop

There is two pictures in this file, one on them (the photo of this CV) is
reduced to one pixel image like a webbug.

Miklos: I don't know if you are aware of this bug report which can interest you
:-) Feel free to reassign if you can't handle it.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 40977] Errors in opening RTF documents

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

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #8 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-12-11 
12:45:53 PST ---
Confirmation that the bug does not appear anymore in libreoffice-3-5 branch
under:
- Ubuntu 10.04 x86_64 with FR langpack (LibreOffice 3.5.0 Version ID :
7b96bd7-7f15fca-1f1fd1a-ca8e46d-5bcbce4)
- MS-Windows-XP (LOdev 3.5.0 Build ID: f923851-95bcc5e-4c1bcb5)

Best regards. JBF

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


[Libreoffice-bugs] [Bug 43724] New: CONFIGURATION: Wrong prequalification language on Arch Linux

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

 Bug #: 43724
   Summary: CONFIGURATION: Wrong prequalification language on Arch
Linux
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.1 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Installation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: confirmsi...@hotmail.com


Problem description: The default language when install the libreoffice is the
libreoffice-af. When you type pacman -S libreoffice on libreoffice-langpack
selection the default is the libreoffice-af and by enter (enter with out
selection is the default) this language is going to be installed.

Current behavior: An unknow (for me) language is installed, so i have to
translate some words to find the preferences to change into  English. (Also the
english pack must be installed)

Expected behavior: The default language must be the English one which is
International.

Platform (if different from the browser): Arch Linux 32bit

Browser: Chromium

-- 
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 43724] CONFIGURATION: Wrong prequalification language on Arch Linux

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

confirmsi...@hotmail.com changed:

   What|Removed |Added

   Platform|Other   |x86 (IA32)
 OS/Version|All |other
 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1
   Keywords||have-backtrace

-- 
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 41996] EDITING Can't move slides in slide sorter

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

Mihkel Tõnnov mihh...@gmail.com changed:

   What|Removed |Added

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

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

Mihkel Tõnnov mihh...@gmail.com changed:

   What|Removed |Added

 Depends on||41996

--- Comment #237 from Mihkel Tõnnov mihh...@gmail.com 2011-12-11 13:14:33 PST 
---
Nominating Bug 41996 - Can't move slides in slide sorter.
Quite annoying.
(Seems to not affect everyone, though.)

-- 
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 43725] New: FILESAVE: Crahes on saving a file

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

 Bug #: 43725
   Summary: FILESAVE: Crahes on saving a file
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: o...@foveon.de


Created attachment 54328
  -- https://bugs.freedesktop.org/attachment.cgi?id=54328
the file which produces the error, if you do what's discribed above

Problem description: 

Steps to reproduce:
0. Open the attached document.
1. Go the the sheet named '2011' in the document. Mark everything (Ctrl + A)
and copy it to the clipboard (Ctrl + C). 
2. Insert a new sheet into the document and insert the clipboard content to
that sheet (Ctrl + V).
3) Save the file and watch LibreOffice crushing.


Current behavior:
Crashes while saving file
Expected behavior:
Saving the file without crashing

Platform (if different from the browser): 

Browser: Opera/9.80 (Windows NT 6.1; U; en) Presto/2.10.229 Version/11.60
Windows 7 32 Bit Professional - 2,75 GB memory

-- 
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 43725] FILESAVE: Crahes on saving a file

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

--- Comment #1 from Julien Nabet serval2...@yahoo.fr 2011-12-11 13:23:15 PST 
---
Created attachment 54329
  -- https://bugs.freedesktop.org/attachment.cgi?id=54329
bt with symbols on master

I reproduce the pb on pc Debian testing x86-32. I'm on master (future 3.6)
updated today.

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


[Libreoffice-bugs] [Bug 43725] FILESAVE: Crahes on saving a file

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1

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


[Libreoffice-bugs] [Bug 43725] FILESAVE: Crahes on saving a file

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

--- Comment #2 from Julien Nabet serval2...@yahoo.fr 2011-12-11 14:05:00 PST 
---
Here some traces on console during the crash :
/usr/include/c++/4.6/debug/vector:320:error: attempt to subscript container 
with out-of-bounds index 107, but container only holds 98 elements.

Objects involved in the operation:
sequence this @ 0x0x9ed5e30 {
  type = NSt7__debug6vectorI16ScMyDefaultStyleSaIS1_EEE;
}

-- 
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 41692] CRASH while EDITING specific document

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

--- Comment #5 from Ian iancbosw...@gmail.com 2011-12-11 15:42:58 PST ---
Created attachment 54330
  -- https://bugs.freedesktop.org/attachment.cgi?id=54330
Final paper for a musicology class which causes crash when opened.

I'm experiencing the same sort of problem: LibreOffice crashes whenever I open
this file, a final paper for a musicology class which uses images in frames
with captions. I suspect it might have something to do with the larger image
(the Wet Hands Minecraft score). Using LibreOffice 3.4.4 on Xubuntu 11.10.

-- 
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 43727] New: Will not open .odt documents

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

 Bug #: 43727
   Summary: Will not open .odt documents
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: NEW
  Severity: blocker
  Priority: highest
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: pcfixn...@gmail.com


I uninstalled Open Office and installed Libre Office. Tried to open a write
(.ODT) document. 
First message:  
Verifying application requirements.  This may take a few minutes.
Second message:
Cannot continue.  The application is improperly formatted.  Contact the
application vendor for assistance.
If I click details, I get:

PLATFORM VERSION INFO
Windows : 5.1.2600.196608 (Win32NT)
Common Language Runtime : 4.0.30319.1
System.Deployment.dll : 4.0.30319.1 (RTMRel.030319-0100)
clr.dll : 4.0.30319.1 (RTMRel.030319-0100)
dfdll.dll : 4.0.30319.1 (RTMRel.030319-0100)
dfshim.dll : 4.0.31106.0 (Main.031106-)

SOURCES
Deployment url:
file:///C:/Documents%20and%20Settings/Frank/My%20Documents/'%20Phone%20list.ods

ERROR SUMMARY
Below is a summary of the errors, details of these errors are listed later
in the log.
* Activation of C:\Documents and Settings\Frank\My Documents\' Phone
list.ods resulted in exception. Following failure messages were detected:
+ Exception reading manifest from
file:///C:/Documents%20and%20Settings/Frank/My%20Documents/'%20Phone%20list.ods:
the manifest may not be valid or the file could not be opened.
+ Data at the root level is invalid. Line 1, position 1.

COMPONENT STORE TRANSACTION FAILURE SUMMARY
No transaction error was detected.

WARNINGS
There were no warnings during this operation.

OPERATION PROGRESS STATUS
* [12/11/2011 6:43:13 PM] : Activation of C:\Documents and
Settings\Frank\My Documents\' Phone list.ods has started.

ERROR DETAILS
Following errors were detected during this operation.
* [12/11/2011 6:43:13 PM]
System.Deployment.Application.InvalidDeploymentException (ManifestParse)
- Exception reading manifest from
file:///C:/Documents%20and%20Settings/Frank/My%20Documents/'%20Phone%20list.ods:
the manifest may not be valid or the file could not be opened.
- Source: System.Deployment
- Stack trace:
at System.Deployment.Application.ManifestReader.FromDocument(String
localPath, ManifestType manifestType, Uri sourceUri)
at
System.Deployment.Application.DownloadManager.DownloadDeploymentManifestDirectBypass(SubscriptionStore
subStore, Uri sourceUri, TempFile tempFile, SubscriptionState subState,
IDownloadNotification notification, DownloadOptions options, ServerInformation
serverInformation)
at
System.Deployment.Application.DownloadManager.DownloadDeploymentManifestBypass(SubscriptionStore
subStore, Uri sourceUri, TempFile tempFile, SubscriptionState subState,
IDownloadNotification notification, DownloadOptions options)
at
System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri
activationUri, Boolean isShortcut, String textualSubId, String
deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String
errorPageUrl)
at
System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object
state)
--- Inner Exception ---
System.Xml.XmlException
- Data at the root level is invalid. Line 1, position 1.
- Source: System.Xml
- Stack trace:
at System.Xml.XmlTextReaderImpl.Throw(Exception e)
at System.Xml.XmlTextReaderImpl.Throw(String res, String arg)
at System.Xml.XmlTextReaderImpl.ParseRootLevelWhitespace()
at System.Xml.XmlTextReaderImpl.ParseDocumentContent()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.XmlTextReader.Read()
at
System.Deployment.Application.ManifestValidatingReader.XmlFilteredReader.Read()
at System.Xml.XmlCharCheckingReader.Read()
at System.Xml.XsdValidatingReader.Read()
at System.Deployment.Application.ManifestReader.FromDocument(String
localPath, ManifestType manifestType, Uri sourceUri)

COMPONENT STORE TRANSACTION DETAILS
No transaction information is available.


After that error, I noticed the application had not taken ownership of .odt,
.ods, etcetera files. 
I changed the file association for .ODT documents to write.exe It will still
not open .odt documents by double clicking on the document, unless I open it
directly from the menu within Libre office.  If I double click, it goes thru a
series of  bizarre errors with the first one being c:\documents does not
exist the rest of the errors are similar except it adds 

[Libreoffice-bugs] [Bug 41394] EDITING / FORMATTING: cannot format data range of chart loose of data

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

Colin colnt...@bigpond.com changed:

   What|Removed |Added

 AssignedTo|libreoffice-b...@lists.free |colnt...@bigpond.com
   |desktop.org |

--- Comment #14 from Colin colnt...@bigpond.com 2011-12-11 16:54:58 PST ---
Created attachment 54332
  -- https://bugs.freedesktop.org/attachment.cgi?id=54332
Spread sheet of purchases by month

This bug was first reported via launchpad at the beginning of october together
with the file and screen print of the problem. I am amazed it has taken so long
to fix.
1).Double clicking a chart to modify the data series does not allow access to
the format/ data range menu--it is greyed out.
2) The chart is not automatically updated with data changes,
3) f9 does not update chart.
4) Because of all the above, attempts to create a replacement chart,
recognising this is a new version of Calc, is also not possible when the data
is not in adjacent cells, using the traditional process

-- 
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 43729] New: EDITING: Cannot write accented characters after entering full screen

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

 Bug #: 43729
   Summary: EDITING: Cannot write accented characters after
entering full screen
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.3 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: eseeseha...@yahoo.es


Problem description: 

When I go to full-screen (Ctrl + Shift + j) and try to write some accented
character like 'á' or 'í' i only get its un-accented version, as 'a' or 'i'.

If i exit full screen mode, this behavior still persists, and I must restart
writer to make it work again.

I can write accented characters if I don't go to full screen.

This is *alaways* reproducible in my netbook, and not having full screen
posibbility is very annoying since i have a tiny screen.

Steps to reproduce:
1. Open Writer, it shows a blank document
2. Switch to full screen
3. Try to write an accented character (eg. 'á').

Current behavior:

It doesn't write an accented character ('a' is shown instead of 'á')

Expected behavior:

It should write the accented version.

Platform: 

- LibreOffice from upstream Debs
- Spanish keyboard
- Debian Squeeze, GNOME Desktop, Two monitors (internal LVDS 1024*600, external
1024*768)
- System and keyboard both configured as spanish from Spain

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 43730] New: Chart does not update; disappears upon interaction

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

 Bug #: 43730
   Summary: Chart does not update; disappears upon interaction
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: thomas_higg...@live.com.au


Created attachment 54333
  -- https://bugs.freedesktop.org/attachment.cgi?id=54333
Spreadsheet with issue

I have attached a ods file that causes the issue. Upon trying to interact with
the chart, the chart will disappear.

The file was created in LibreOffice 3.4.3 on Windows Server 2008 R2, and opened
in LibreOffice 3.4.4 on Windows Server 2008 R2.

I have tried opening the same file on 3.4.4 on Arch Linux, and I have found,
instead of blanking the chart, the chart becomes massive.

I have come to the conclusion that it is to do with the LibreOffice settings in
some way as vanilla LibreOffice 3.4.3 does not cause the problematic
spreadsheet. 

It seems that a similar bug has been mentioned within the comments of this bug:
https://bugs.freedesktop.org/show_bug.cgi?id=41394.

My apologies if this bug has been submitted in the past. If you require any
more info, I will provide as much as I can. However I am no LibreOffice expert.

-- 
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 43679] FILEOPEN: LibO crash without warning opening files with Text Frames

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

--- Comment #1 from omvsj om...@yahoo.com 2011-12-11 19:08:19 UTC ---
I've just removed LibreOffice 3.4.4 Final (2011-11-09) from XP SP3 and
installed LibreOffice 3.3.4 Final (2011-08-17).

I could open and edit the file without problems.

-- 
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 41896] FILEOPEN: text boxes alignment lost when openning rtf documents

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

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||FIXED

--- Comment #2 from Jean-Baptiste Faure jbf.fa...@orange.fr 2011-12-11 
21:48:10 PST ---
Works as expected in libreoffice-3-5 branch (LibreOffice 3.5.0 Version ID :
7b96bd7-7f15fca-1f1fd1a-ca8e46d-5bcbce4) under Ubuntu 10.04 x86_64 with FR
langpack.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 42332] wrong formatting of the autocorrect results

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

--- Comment #1 from Yury yury.tarasiev...@gmail.com 2011-12-11 22:32:21 PST 
---
After some prodding, I'm confused even more. My guess is there's a possibility
of corrupted/nonstandard auto-correct entry being retained by LibO somewhere in
configuraton files.

I was able to remedy the problem by deleting and re-creating the `--- for [All]
languages' entry, but I believe the potential for erroneous behaviour remains
there.

***

As far as grep could tell, before the entry deletion and re-creation there was
no specific mention of 'Gentium Plus' anywhere in my config files (excepting
the pspcache, of course), or in system-wide config files. However, at least
*some* auto-correct entries still were being formatted with 'Gentium Plus',
specifically, the '---' to emdash conversion. Incidentally, said '---' entry
was being shown in dialog with blank char as a replacement but emdash (in
'Gentium Plus') was actually being substituted?..

Here's what wordbook/standard.dic looked like, and still looks like (the 5th
line was and is empty):
OOoUserDict1
lang: none
type: positive
---

There was no mention of '---' anywhere else.

-- 
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 38298] Autocorrect does not respect specified font

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

--- Comment #1 from Yury yury.tarasiev...@gmail.com 2011-12-11 22:55:58 PST 
---
This might be connected with what I experience on my system*s* for years. If I
attempt to insert a special character in findreplace or in autocorrect, I
don't get a font face selection, only the 1st (?) font in the alphabetical list
(?). Screenshots attached. I can't recognise the font on those. Might be 'adobe
pi std' (1st alphabetically in my fonts list; but it doesn't have glyphs in
U+F000 range), might be 'open symbol'.

-- 
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 38298] Autocorrect does not respect specified font

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

--- Comment #2 from Yury yury.tarasiev...@gmail.com 2011-12-11 22:56:46 PST 
---
Created attachment 54341
  -- https://bugs.freedesktop.org/attachment.cgi?id=54341
'special character' dialog called from findreplace

-- 
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 38298] Autocorrect does not respect specified font

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

--- Comment #3 from Yury yury.tarasiev...@gmail.com 2011-12-11 22:57:20 UTC 
---
Created attachment 54342
  -- https://bugs.freedesktop.org/attachment.cgi?id=54342
'special character' dialog called from findreplace

-- 
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 38298] Autocorrect does not respect specified font

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

Yury yury.tarasiev...@gmail.com changed:

   What|Removed |Added

  Attachment #54341|'special character' dialog  |'special character' dialog
description|called from findreplace|called from autocorrect

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